vercel-api-js 0.24.1 → 0.24.3
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +23 -0
- package/dist/index.cjs +9 -1
- package/dist/index.d.cts +2241 -291
- package/dist/index.d.mts +2241 -291
- package/dist/index.d.ts +2241 -291
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -106,21 +106,56 @@ type UserEvent = {
|
|
|
106
106
|
*/
|
|
107
107
|
createdAt: number;
|
|
108
108
|
/**
|
|
109
|
-
* Metadata for
|
|
109
|
+
* Metadata for {@link userId}.
|
|
110
110
|
*/
|
|
111
111
|
user?: {
|
|
112
|
+
avatar: string;
|
|
113
|
+
email: string;
|
|
114
|
+
username: string;
|
|
115
|
+
slug?: string;
|
|
116
|
+
uid: string;
|
|
117
|
+
};
|
|
118
|
+
principal?: {
|
|
119
|
+
type?: 'user';
|
|
112
120
|
avatar: string;
|
|
113
121
|
email: string;
|
|
114
122
|
slug?: string;
|
|
115
123
|
uid: string;
|
|
116
124
|
username: string;
|
|
125
|
+
} | {
|
|
126
|
+
type: 'app';
|
|
127
|
+
clientId: string;
|
|
128
|
+
name: string;
|
|
117
129
|
};
|
|
118
130
|
/**
|
|
119
|
-
*
|
|
131
|
+
* Metadata for {@link viaIds}.
|
|
132
|
+
*/
|
|
133
|
+
via?: ({
|
|
134
|
+
type?: 'user';
|
|
135
|
+
avatar: string;
|
|
136
|
+
email: string;
|
|
137
|
+
slug?: string;
|
|
138
|
+
uid: string;
|
|
139
|
+
username: string;
|
|
140
|
+
} | {
|
|
141
|
+
type: 'app';
|
|
142
|
+
clientId: string;
|
|
143
|
+
name: string;
|
|
144
|
+
})[];
|
|
145
|
+
/**
|
|
146
|
+
* When the principal who generated the event is a user, this is their ID; otherwise, it is empty.
|
|
120
147
|
*
|
|
121
148
|
* @example zTuNVUXEAvvnNN3IaqinkyMw
|
|
122
149
|
*/
|
|
123
150
|
userId: string;
|
|
151
|
+
/**
|
|
152
|
+
* The ID of the principal who generated the event. The principal is typically a user, but it could also be an app, an integration, etc. The principal may have delegated its authority to an acting party, and so {@link viaIds} should be checked as well.
|
|
153
|
+
*/
|
|
154
|
+
principalId: string;
|
|
155
|
+
/**
|
|
156
|
+
* If the principal delegated its authority (for example, a user delegating to an app), then this array contains the ID of the current actor. For example, if `principalId` is "user123" and `viaIds` is `["app456"]`, we can say the event was triggered by - "app456 on behalf of user123", or - "user123 via app4556". Both are equivalent. Arbitrarily long chains of delegation can be represented. For example, if `principalId` is "user123" and `viaIds` is `["service1", "service2"]`, we can say the event was triggered by "user123 via service1 via service2".
|
|
157
|
+
*/
|
|
158
|
+
viaIds?: string[];
|
|
124
159
|
payload?: Record<string, any> | {
|
|
125
160
|
action: 'created' | 'updated' | 'deleted' | 'archived' | 'unarchived';
|
|
126
161
|
id: string;
|
|
@@ -562,13 +597,13 @@ type UserEvent = {
|
|
|
562
597
|
* @format date-time
|
|
563
598
|
* @example 2021-02-10T13:11:49.180Z
|
|
564
599
|
*/
|
|
565
|
-
created
|
|
600
|
+
created?: string;
|
|
566
601
|
/**
|
|
567
602
|
* The name of the Shared Env Var.
|
|
568
603
|
*
|
|
569
604
|
* @example my-api-key
|
|
570
605
|
*/
|
|
571
|
-
key
|
|
606
|
+
key?: string;
|
|
572
607
|
/**
|
|
573
608
|
* The unique identifier of the owner (team) the Shared Env Var was created for.
|
|
574
609
|
*
|
|
@@ -580,7 +615,7 @@ type UserEvent = {
|
|
|
580
615
|
*
|
|
581
616
|
* @example env_XCG7t7AIHuO2SBA8667zNUiM
|
|
582
617
|
*/
|
|
583
|
-
id
|
|
618
|
+
id?: string;
|
|
584
619
|
/**
|
|
585
620
|
* The unique identifier of the user who created the Shared Env Var.
|
|
586
621
|
*
|
|
@@ -647,7 +682,7 @@ type UserEvent = {
|
|
|
647
682
|
/**
|
|
648
683
|
* whether or not this env variable is decrypted
|
|
649
684
|
*/
|
|
650
|
-
decrypted
|
|
685
|
+
decrypted?: boolean;
|
|
651
686
|
/**
|
|
652
687
|
* A user provided comment that describes what this Shared Env Var is for.
|
|
653
688
|
*/
|
|
@@ -664,13 +699,13 @@ type UserEvent = {
|
|
|
664
699
|
* @format date-time
|
|
665
700
|
* @example 2021-02-10T13:11:49.180Z
|
|
666
701
|
*/
|
|
667
|
-
created
|
|
702
|
+
created?: string;
|
|
668
703
|
/**
|
|
669
704
|
* The name of the Shared Env Var.
|
|
670
705
|
*
|
|
671
706
|
* @example my-api-key
|
|
672
707
|
*/
|
|
673
|
-
key
|
|
708
|
+
key?: string;
|
|
674
709
|
/**
|
|
675
710
|
* The unique identifier of the owner (team) the Shared Env Var was created for.
|
|
676
711
|
*
|
|
@@ -682,7 +717,7 @@ type UserEvent = {
|
|
|
682
717
|
*
|
|
683
718
|
* @example env_XCG7t7AIHuO2SBA8667zNUiM
|
|
684
719
|
*/
|
|
685
|
-
id
|
|
720
|
+
id?: string;
|
|
686
721
|
/**
|
|
687
722
|
* The unique identifier of the user who created the Shared Env Var.
|
|
688
723
|
*
|
|
@@ -749,7 +784,7 @@ type UserEvent = {
|
|
|
749
784
|
/**
|
|
750
785
|
* whether or not this env variable is decrypted
|
|
751
786
|
*/
|
|
752
|
-
decrypted
|
|
787
|
+
decrypted?: boolean;
|
|
753
788
|
/**
|
|
754
789
|
* A user provided comment that describes what this Shared Env Var is for.
|
|
755
790
|
*/
|
|
@@ -946,8 +981,8 @@ type UserEvent = {
|
|
|
946
981
|
flagsExplorerUnlimitedOverrides?: boolean;
|
|
947
982
|
customEnvironmentsPerProject?: number;
|
|
948
983
|
buildMachine?: {
|
|
949
|
-
purchaseType?: 'enhanced';
|
|
950
|
-
|
|
984
|
+
purchaseType?: 'enhanced' | 'ultra';
|
|
985
|
+
isDefaultBuildMachine?: boolean;
|
|
951
986
|
cores?: number;
|
|
952
987
|
memory?: number;
|
|
953
988
|
};
|
|
@@ -995,7 +1030,7 @@ type UserEvent = {
|
|
|
995
1030
|
softBlock?: {
|
|
996
1031
|
blockedAt: number;
|
|
997
1032
|
reason: 'SUBSCRIPTION_CANCELED' | 'SUBSCRIPTION_EXPIRED' | 'UNPAID_INVOICE' | 'ENTERPRISE_TRIAL_ENDED' | 'FAIR_USE_LIMITS_EXCEEDED' | 'BLOCKED_FOR_PLATFORM_ABUSE';
|
|
998
|
-
blockedDueToOverageType?: '
|
|
1033
|
+
blockedDueToOverageType?: 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'dataCacheRead' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequestAdditionalCpuDuration' | 'edgeRequest' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'blobDataTransfer' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
|
|
999
1034
|
} | null;
|
|
1000
1035
|
stagingPrefix: string;
|
|
1001
1036
|
sysToken: string;
|
|
@@ -1013,7 +1048,7 @@ type UserEvent = {
|
|
|
1013
1048
|
teamRoles?: ('OWNER' | 'MEMBER' | 'DEVELOPER' | 'SECURITY' | 'BILLING' | 'VIEWER' | 'CONTRIBUTOR')[];
|
|
1014
1049
|
teamPermissions?: ('CreateProject' | 'FullProductionDeployment' | 'UsageViewer' | 'EnvVariableManager' | 'EnvironmentManager')[];
|
|
1015
1050
|
joinedFrom?: {
|
|
1016
|
-
origin: 'teams' | 'saml' | '
|
|
1051
|
+
origin: 'teams' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'mail' | 'link' | 'import' | 'dsync' | 'feedback' | 'organization-teams';
|
|
1017
1052
|
commitId?: string;
|
|
1018
1053
|
repoId?: string;
|
|
1019
1054
|
repoPath?: string;
|
|
@@ -1047,11 +1082,6 @@ type UserEvent = {
|
|
|
1047
1082
|
blockingAt?: number | null;
|
|
1048
1083
|
} | null;
|
|
1049
1084
|
overageUsageAlerts?: {
|
|
1050
|
-
aiCredits?: {
|
|
1051
|
-
currentThreshold: number;
|
|
1052
|
-
warningAt?: number | null;
|
|
1053
|
-
blockedAt?: number | null;
|
|
1054
|
-
};
|
|
1055
1085
|
analyticsUsage?: {
|
|
1056
1086
|
currentThreshold: number;
|
|
1057
1087
|
warningAt?: number | null;
|
|
@@ -1263,6 +1293,19 @@ type UserEvent = {
|
|
|
1263
1293
|
blockedAt?: number | null;
|
|
1264
1294
|
};
|
|
1265
1295
|
};
|
|
1296
|
+
/**
|
|
1297
|
+
* Contains the timestamps for usage summary emails.
|
|
1298
|
+
*/
|
|
1299
|
+
overageMetadata?: {
|
|
1300
|
+
/**
|
|
1301
|
+
* Tracks if the first time on-demand overage email has been sent.
|
|
1302
|
+
*/
|
|
1303
|
+
firstTimeOnDemandNotificationSentAt?: number;
|
|
1304
|
+
/**
|
|
1305
|
+
* Tracks the last time we sent a summary email.
|
|
1306
|
+
*/
|
|
1307
|
+
overageSummaryEmailSentAt?: number;
|
|
1308
|
+
};
|
|
1266
1309
|
username: string;
|
|
1267
1310
|
updatedAt: number;
|
|
1268
1311
|
/**
|
|
@@ -1320,21 +1363,21 @@ type UserEvent = {
|
|
|
1320
1363
|
blockedFrom?: number;
|
|
1321
1364
|
blockedUntil?: number;
|
|
1322
1365
|
blockReason?: 'admin_override' | 'limits_exceeded';
|
|
1323
|
-
overageReason: '
|
|
1366
|
+
overageReason: 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'dataCacheRead' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequestAdditionalCpuDuration' | 'edgeRequest' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'blobDataTransfer' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
|
|
1324
1367
|
};
|
|
1325
1368
|
postgres?: {
|
|
1326
1369
|
updatedAt?: number;
|
|
1327
1370
|
blockedFrom?: number;
|
|
1328
1371
|
blockedUntil?: number;
|
|
1329
1372
|
blockReason?: 'admin_override' | 'limits_exceeded';
|
|
1330
|
-
overageReason: '
|
|
1373
|
+
overageReason: 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'dataCacheRead' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequestAdditionalCpuDuration' | 'edgeRequest' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'blobDataTransfer' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
|
|
1331
1374
|
};
|
|
1332
1375
|
redis?: {
|
|
1333
1376
|
updatedAt?: number;
|
|
1334
1377
|
blockedFrom?: number;
|
|
1335
1378
|
blockedUntil?: number;
|
|
1336
1379
|
blockReason?: 'admin_override' | 'limits_exceeded';
|
|
1337
|
-
overageReason: '
|
|
1380
|
+
overageReason: 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'dataCacheRead' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequestAdditionalCpuDuration' | 'edgeRequest' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'blobDataTransfer' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
|
|
1338
1381
|
};
|
|
1339
1382
|
};
|
|
1340
1383
|
defaultTeamId?: string;
|
|
@@ -1486,7 +1529,7 @@ type UserEvent = {
|
|
|
1486
1529
|
confirmed: boolean;
|
|
1487
1530
|
confirmedAt?: number;
|
|
1488
1531
|
joinedFrom?: {
|
|
1489
|
-
origin: 'teams' | 'saml' | '
|
|
1532
|
+
origin: 'teams' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'mail' | 'link' | 'import' | 'dsync' | 'feedback' | 'organization-teams';
|
|
1490
1533
|
commitId?: string;
|
|
1491
1534
|
repoId?: string;
|
|
1492
1535
|
repoPath?: string;
|
|
@@ -1586,8 +1629,22 @@ type UserEvent = {
|
|
|
1586
1629
|
project: {
|
|
1587
1630
|
id: string;
|
|
1588
1631
|
name?: string;
|
|
1589
|
-
oldConnectConfigurations:
|
|
1590
|
-
|
|
1632
|
+
oldConnectConfigurations: {
|
|
1633
|
+
envId: string | ('preview' | 'production');
|
|
1634
|
+
connectConfigurationId: string;
|
|
1635
|
+
passive: boolean;
|
|
1636
|
+
buildsEnabled: boolean;
|
|
1637
|
+
createdAt: number;
|
|
1638
|
+
updatedAt: number;
|
|
1639
|
+
}[] | null;
|
|
1640
|
+
newConnectConfigurations: {
|
|
1641
|
+
envId: string | ('preview' | 'production');
|
|
1642
|
+
connectConfigurationId: string;
|
|
1643
|
+
passive: boolean;
|
|
1644
|
+
buildsEnabled: boolean;
|
|
1645
|
+
createdAt: number;
|
|
1646
|
+
updatedAt: number;
|
|
1647
|
+
}[] | null;
|
|
1591
1648
|
};
|
|
1592
1649
|
} | {
|
|
1593
1650
|
projectId: string;
|
|
@@ -1769,7 +1826,7 @@ type UserEvent = {
|
|
|
1769
1826
|
computeUnitsMax?: number;
|
|
1770
1827
|
computeUnitsMin?: number;
|
|
1771
1828
|
suspendTimeoutSeconds?: number;
|
|
1772
|
-
type: '
|
|
1829
|
+
type: 'redis' | 'postgres' | 'edge-config' | 'blob' | 'integration';
|
|
1773
1830
|
} | {
|
|
1774
1831
|
storeType: 'redis' | 'postgres';
|
|
1775
1832
|
} | {
|
|
@@ -2179,15 +2236,32 @@ type UserEvent = {
|
|
|
2179
2236
|
/**
|
|
2180
2237
|
* Data representing a Team.
|
|
2181
2238
|
*/
|
|
2182
|
-
type Team =
|
|
2239
|
+
type Team = {
|
|
2240
|
+
/**
|
|
2241
|
+
* The Preset's unique identifier.
|
|
2242
|
+
*
|
|
2243
|
+
* @example ABCDEFG000011111
|
|
2244
|
+
*/
|
|
2245
|
+
id: string;
|
|
2246
|
+
data: {
|
|
2247
|
+
query: string;
|
|
2248
|
+
creatorId: string;
|
|
2249
|
+
title: string;
|
|
2250
|
+
groupId: string;
|
|
2251
|
+
ownerId: string;
|
|
2252
|
+
projectId: string;
|
|
2253
|
+
createdAt: number;
|
|
2254
|
+
};
|
|
2255
|
+
};
|
|
2183
2256
|
/**
|
|
2184
2257
|
* A limited form of data representing a Team, due to the authentication token missing privileges to read the full Team data.
|
|
2185
2258
|
*/
|
|
2186
2259
|
type TeamLimited = {
|
|
2187
2260
|
/**
|
|
2188
|
-
* Property indicating that this Team data contains only limited information, due to the authentication token missing privileges to read the full Team data. Re-login with the Team's configured SAML Single Sign-On provider in order to upgrade the authentication token with the necessary privileges.
|
|
2261
|
+
* Property indicating that this Team data contains only limited information, due to the authentication token missing privileges to read the full Team data or due to team having MFA enforced and the user not having MFA enabled. Re-login with the Team's configured SAML Single Sign-On provider in order to upgrade the authentication token with the necessary privileges.
|
|
2189
2262
|
*/
|
|
2190
2263
|
limited: boolean;
|
|
2264
|
+
limitedBy: ('mfa' | 'scope')[];
|
|
2191
2265
|
/**
|
|
2192
2266
|
* When "Single Sign-On (SAML)" is configured, this object contains information that allows the client-side to identify whether or not this Team has SAML enforced.
|
|
2193
2267
|
*/
|
|
@@ -2261,6 +2335,7 @@ type TeamLimited = {
|
|
|
2261
2335
|
*/
|
|
2262
2336
|
enforced: boolean;
|
|
2263
2337
|
};
|
|
2338
|
+
mfaEnforced?: boolean;
|
|
2264
2339
|
/**
|
|
2265
2340
|
* The Team's unique identifier.
|
|
2266
2341
|
*
|
|
@@ -2293,13 +2368,13 @@ type TeamLimited = {
|
|
|
2293
2368
|
entitlements?: {
|
|
2294
2369
|
entitlement: string;
|
|
2295
2370
|
}[];
|
|
2371
|
+
teamId?: string;
|
|
2296
2372
|
confirmed: boolean;
|
|
2297
2373
|
confirmedAt: number;
|
|
2298
2374
|
accessRequestedAt?: number;
|
|
2299
2375
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
|
|
2300
2376
|
teamRoles?: ('BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER')[];
|
|
2301
2377
|
teamPermissions?: ('CreateProject' | 'EnvVariableManager' | 'EnvironmentManager' | 'FullProductionDeployment' | 'UsageViewer')[];
|
|
2302
|
-
teamId?: string;
|
|
2303
2378
|
createdAt: number;
|
|
2304
2379
|
created: number;
|
|
2305
2380
|
joinedFrom?: {
|
|
@@ -2410,7 +2485,7 @@ type AuthUser = {
|
|
|
2410
2485
|
softBlock: {
|
|
2411
2486
|
blockedAt: number;
|
|
2412
2487
|
reason: 'BLOCKED_FOR_PLATFORM_ABUSE' | 'ENTERPRISE_TRIAL_ENDED' | 'FAIR_USE_LIMITS_EXCEEDED' | 'SUBSCRIPTION_CANCELED' | 'SUBSCRIPTION_EXPIRED' | 'UNPAID_INVOICE';
|
|
2413
|
-
blockedDueToOverageType?: '
|
|
2488
|
+
blockedDueToOverageType?: 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobDataTransfer' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'dataCacheRead' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequest' | 'edgeRequestAdditionalCpuDuration' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
|
|
2414
2489
|
} | null;
|
|
2415
2490
|
/**
|
|
2416
2491
|
* An object containing billing infomation associated with the User account.
|
|
@@ -2528,11 +2603,11 @@ type AuthUser = {
|
|
|
2528
2603
|
/**
|
|
2529
2604
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2530
2605
|
*/
|
|
2531
|
-
purchaseType?: 'enhanced';
|
|
2606
|
+
purchaseType?: 'enhanced' | 'ultra';
|
|
2532
2607
|
/**
|
|
2533
2608
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2534
2609
|
*/
|
|
2535
|
-
|
|
2610
|
+
isDefaultBuildMachine?: boolean;
|
|
2536
2611
|
/**
|
|
2537
2612
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2538
2613
|
*/
|
|
@@ -4441,7 +4516,76 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4441
4516
|
comment?: string;
|
|
4442
4517
|
customEnvironmentIds?: string[];
|
|
4443
4518
|
}[];
|
|
4444
|
-
customEnvironments?:
|
|
4519
|
+
customEnvironments?: {
|
|
4520
|
+
/**
|
|
4521
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
4522
|
+
*/
|
|
4523
|
+
id: string;
|
|
4524
|
+
/**
|
|
4525
|
+
* URL-friendly name of the environment
|
|
4526
|
+
*/
|
|
4527
|
+
slug: string;
|
|
4528
|
+
/**
|
|
4529
|
+
* The type of environment (production, preview, or development)
|
|
4530
|
+
*/
|
|
4531
|
+
type: 'development' | 'preview' | 'production';
|
|
4532
|
+
/**
|
|
4533
|
+
* Optional description of the environment's purpose
|
|
4534
|
+
*/
|
|
4535
|
+
description?: string;
|
|
4536
|
+
/**
|
|
4537
|
+
* Configuration for matching git branches to this environment
|
|
4538
|
+
*/
|
|
4539
|
+
branchMatcher?: {
|
|
4540
|
+
/**
|
|
4541
|
+
* The type of matching to perform
|
|
4542
|
+
*/
|
|
4543
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
4544
|
+
/**
|
|
4545
|
+
* The pattern to match against branch names
|
|
4546
|
+
*/
|
|
4547
|
+
pattern: string;
|
|
4548
|
+
};
|
|
4549
|
+
/**
|
|
4550
|
+
* List of domains associated with this environment
|
|
4551
|
+
*/
|
|
4552
|
+
domains?: {
|
|
4553
|
+
name: string;
|
|
4554
|
+
apexName: string;
|
|
4555
|
+
projectId: string;
|
|
4556
|
+
redirect?: string | null;
|
|
4557
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
4558
|
+
gitBranch?: string | null;
|
|
4559
|
+
customEnvironmentId?: string | null;
|
|
4560
|
+
updatedAt?: number;
|
|
4561
|
+
createdAt?: number;
|
|
4562
|
+
/**
|
|
4563
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
4564
|
+
*/
|
|
4565
|
+
verified: boolean;
|
|
4566
|
+
/**
|
|
4567
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
4568
|
+
*/
|
|
4569
|
+
verification?: {
|
|
4570
|
+
type: string;
|
|
4571
|
+
domain: string;
|
|
4572
|
+
value: string;
|
|
4573
|
+
reason: string;
|
|
4574
|
+
}[];
|
|
4575
|
+
}[];
|
|
4576
|
+
/**
|
|
4577
|
+
* List of aliases for the current deployment
|
|
4578
|
+
*/
|
|
4579
|
+
currentDeploymentAliases?: string[];
|
|
4580
|
+
/**
|
|
4581
|
+
* Timestamp when the environment was created
|
|
4582
|
+
*/
|
|
4583
|
+
createdAt: number;
|
|
4584
|
+
/**
|
|
4585
|
+
* Timestamp when the environment was last updated
|
|
4586
|
+
*/
|
|
4587
|
+
updatedAt: number;
|
|
4588
|
+
}[];
|
|
4445
4589
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
4446
4590
|
gitForkProtection?: boolean;
|
|
4447
4591
|
gitLFS?: boolean;
|
|
@@ -4669,7 +4813,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4669
4813
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4670
4814
|
functionZeroConfigFailover?: boolean;
|
|
4671
4815
|
elasticConcurrencyEnabled?: boolean;
|
|
4672
|
-
buildMachineType?: 'enhanced';
|
|
4816
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
4673
4817
|
};
|
|
4674
4818
|
rollingRelease?: {
|
|
4675
4819
|
/**
|
|
@@ -4696,6 +4840,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4696
4840
|
* Whether or not this stage requires approval to proceed.
|
|
4697
4841
|
*/
|
|
4698
4842
|
requireApproval?: boolean;
|
|
4843
|
+
/**
|
|
4844
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
4845
|
+
*/
|
|
4846
|
+
duration?: number;
|
|
4699
4847
|
}[] | null;
|
|
4700
4848
|
} | null;
|
|
4701
4849
|
defaultResourceConfig: {
|
|
@@ -4705,7 +4853,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4705
4853
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4706
4854
|
functionZeroConfigFailover?: boolean;
|
|
4707
4855
|
elasticConcurrencyEnabled?: boolean;
|
|
4708
|
-
buildMachineType?: 'enhanced';
|
|
4856
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
4709
4857
|
};
|
|
4710
4858
|
rootDirectory?: string | null;
|
|
4711
4859
|
serverlessFunctionRegion?: string | null;
|
|
@@ -4890,6 +5038,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4890
5038
|
observabilityConfiguration?: ACLAction[];
|
|
4891
5039
|
observabilityNotebook?: ACLAction[];
|
|
4892
5040
|
openTelemetryEndpoint?: ACLAction[];
|
|
5041
|
+
vercelAppInstallation?: ACLAction[];
|
|
4893
5042
|
paymentMethod?: ACLAction[];
|
|
4894
5043
|
permissions?: ACLAction[];
|
|
4895
5044
|
postgres?: ACLAction[];
|
|
@@ -5005,12 +5154,21 @@ type UpdateProjectDataCacheResponse = {
|
|
|
5005
5154
|
lastAliasRequest?: {
|
|
5006
5155
|
fromDeploymentId: string;
|
|
5007
5156
|
toDeploymentId: string;
|
|
5157
|
+
/**
|
|
5158
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
5159
|
+
*/
|
|
5160
|
+
fromRollingReleaseId?: string;
|
|
5008
5161
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
5009
5162
|
requestedAt: number;
|
|
5010
5163
|
type: 'promote' | 'rollback';
|
|
5011
5164
|
} | null;
|
|
5012
5165
|
protectionBypass?: {
|
|
5013
5166
|
[key: string]: {
|
|
5167
|
+
createdAt: number;
|
|
5168
|
+
createdBy: string;
|
|
5169
|
+
scope: 'integration-automation-bypass';
|
|
5170
|
+
integrationId: string;
|
|
5171
|
+
} | {
|
|
5014
5172
|
createdAt: number;
|
|
5015
5173
|
createdBy: string;
|
|
5016
5174
|
scope: 'automation-bypass';
|
|
@@ -5018,14 +5176,14 @@ type UpdateProjectDataCacheResponse = {
|
|
|
5018
5176
|
};
|
|
5019
5177
|
hasActiveBranches?: boolean;
|
|
5020
5178
|
trustedIps?: {
|
|
5021
|
-
deploymentType: '
|
|
5179
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
5022
5180
|
addresses: {
|
|
5023
5181
|
value: string;
|
|
5024
5182
|
note?: string;
|
|
5025
5183
|
}[];
|
|
5026
5184
|
protectionMode: 'additional' | 'exclusive';
|
|
5027
5185
|
} | {
|
|
5028
|
-
deploymentType: '
|
|
5186
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
5029
5187
|
} | null;
|
|
5030
5188
|
gitComments?: {
|
|
5031
5189
|
/**
|
|
@@ -5236,7 +5394,66 @@ type GetDeploymentEventsVariables = {
|
|
|
5236
5394
|
/**
|
|
5237
5395
|
* Get the build logs of a deployment by deployment ID and build ID. It can work as an infinite stream of logs or as a JSON endpoint depending on the input parameters.
|
|
5238
5396
|
*/
|
|
5239
|
-
declare const getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<
|
|
5397
|
+
declare const getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<({
|
|
5398
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
5399
|
+
created: number;
|
|
5400
|
+
payload: {
|
|
5401
|
+
deploymentId: string;
|
|
5402
|
+
info?: {
|
|
5403
|
+
type: string;
|
|
5404
|
+
name: string;
|
|
5405
|
+
entrypoint?: string;
|
|
5406
|
+
path?: string;
|
|
5407
|
+
step?: string;
|
|
5408
|
+
readyState?: string;
|
|
5409
|
+
};
|
|
5410
|
+
text?: string;
|
|
5411
|
+
id: string;
|
|
5412
|
+
date: number;
|
|
5413
|
+
serial: string;
|
|
5414
|
+
created?: number;
|
|
5415
|
+
statusCode?: number;
|
|
5416
|
+
requestId?: string;
|
|
5417
|
+
proxy?: {
|
|
5418
|
+
timestamp: number;
|
|
5419
|
+
method: string;
|
|
5420
|
+
host: string;
|
|
5421
|
+
path: string;
|
|
5422
|
+
statusCode?: number;
|
|
5423
|
+
userAgent: string[];
|
|
5424
|
+
referer: string;
|
|
5425
|
+
clientIp?: string;
|
|
5426
|
+
region: string;
|
|
5427
|
+
scheme?: string;
|
|
5428
|
+
responseByteSize?: number;
|
|
5429
|
+
cacheId?: string;
|
|
5430
|
+
pathType?: string;
|
|
5431
|
+
pathTypeVariant?: string;
|
|
5432
|
+
vercelId?: string;
|
|
5433
|
+
vercelCache?: "MISS" | "HIT" | "STALE" | "BYPASS" | "PRERENDER" | "REVALIDATED";
|
|
5434
|
+
lambdaRegion?: string;
|
|
5435
|
+
wafAction?: "log" | "challenge" | "deny" | "bypass" | "rate_limit";
|
|
5436
|
+
wafRuleId?: string;
|
|
5437
|
+
};
|
|
5438
|
+
};
|
|
5439
|
+
} | {
|
|
5440
|
+
created: number;
|
|
5441
|
+
date: number;
|
|
5442
|
+
deploymentId: string;
|
|
5443
|
+
id: string;
|
|
5444
|
+
info: {
|
|
5445
|
+
type: string;
|
|
5446
|
+
name: string;
|
|
5447
|
+
entrypoint?: string;
|
|
5448
|
+
path?: string;
|
|
5449
|
+
step?: string;
|
|
5450
|
+
readyState?: string;
|
|
5451
|
+
};
|
|
5452
|
+
serial: string;
|
|
5453
|
+
text?: string;
|
|
5454
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
5455
|
+
level?: "error" | "warning";
|
|
5456
|
+
} | null)[] | null>;
|
|
5240
5457
|
type UpdateIntegrationDeploymentActionPathParams = {
|
|
5241
5458
|
deploymentId: string;
|
|
5242
5459
|
integrationConfigurationId: string;
|
|
@@ -5425,7 +5642,76 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5425
5642
|
userAliases?: string[];
|
|
5426
5643
|
previewCommentsEnabled?: boolean;
|
|
5427
5644
|
ttyBuildLogs?: boolean;
|
|
5428
|
-
customEnvironment?:
|
|
5645
|
+
customEnvironment?: {
|
|
5646
|
+
/**
|
|
5647
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
5648
|
+
*/
|
|
5649
|
+
id: string;
|
|
5650
|
+
/**
|
|
5651
|
+
* URL-friendly name of the environment
|
|
5652
|
+
*/
|
|
5653
|
+
slug: string;
|
|
5654
|
+
/**
|
|
5655
|
+
* The type of environment (production, preview, or development)
|
|
5656
|
+
*/
|
|
5657
|
+
type: "production" | "preview" | "development";
|
|
5658
|
+
/**
|
|
5659
|
+
* Optional description of the environment's purpose
|
|
5660
|
+
*/
|
|
5661
|
+
description?: string;
|
|
5662
|
+
/**
|
|
5663
|
+
* Configuration for matching git branches to this environment
|
|
5664
|
+
*/
|
|
5665
|
+
branchMatcher?: {
|
|
5666
|
+
/**
|
|
5667
|
+
* The type of matching to perform
|
|
5668
|
+
*/
|
|
5669
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
5670
|
+
/**
|
|
5671
|
+
* The pattern to match against branch names
|
|
5672
|
+
*/
|
|
5673
|
+
pattern: string;
|
|
5674
|
+
};
|
|
5675
|
+
/**
|
|
5676
|
+
* List of domains associated with this environment
|
|
5677
|
+
*/
|
|
5678
|
+
domains?: {
|
|
5679
|
+
name: string;
|
|
5680
|
+
apexName: string;
|
|
5681
|
+
projectId: string;
|
|
5682
|
+
redirect?: string | null;
|
|
5683
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
5684
|
+
gitBranch?: string | null;
|
|
5685
|
+
customEnvironmentId?: string | null;
|
|
5686
|
+
updatedAt?: number;
|
|
5687
|
+
createdAt?: number;
|
|
5688
|
+
/**
|
|
5689
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
5690
|
+
*/
|
|
5691
|
+
verified: boolean;
|
|
5692
|
+
/**
|
|
5693
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
5694
|
+
*/
|
|
5695
|
+
verification?: {
|
|
5696
|
+
type: string;
|
|
5697
|
+
domain: string;
|
|
5698
|
+
value: string;
|
|
5699
|
+
reason: string;
|
|
5700
|
+
}[];
|
|
5701
|
+
}[];
|
|
5702
|
+
/**
|
|
5703
|
+
* List of aliases for the current deployment
|
|
5704
|
+
*/
|
|
5705
|
+
currentDeploymentAliases?: string[];
|
|
5706
|
+
/**
|
|
5707
|
+
* Timestamp when the environment was created
|
|
5708
|
+
*/
|
|
5709
|
+
createdAt: number;
|
|
5710
|
+
/**
|
|
5711
|
+
* Timestamp when the environment was last updated
|
|
5712
|
+
*/
|
|
5713
|
+
updatedAt: number;
|
|
5714
|
+
} | {
|
|
5429
5715
|
id: string;
|
|
5430
5716
|
};
|
|
5431
5717
|
aliasWarning?: {
|
|
@@ -5527,7 +5813,7 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5527
5813
|
org?: string;
|
|
5528
5814
|
repo?: string;
|
|
5529
5815
|
} | {
|
|
5530
|
-
type: "github";
|
|
5816
|
+
type: "github-custom-host";
|
|
5531
5817
|
host: string;
|
|
5532
5818
|
ref: string;
|
|
5533
5819
|
sha: string;
|
|
@@ -5802,59 +6088,128 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5802
6088
|
userAliases?: string[];
|
|
5803
6089
|
previewCommentsEnabled?: boolean;
|
|
5804
6090
|
ttyBuildLogs?: boolean;
|
|
5805
|
-
customEnvironment?:
|
|
6091
|
+
customEnvironment?: {
|
|
6092
|
+
/**
|
|
6093
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
6094
|
+
*/
|
|
5806
6095
|
id: string;
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5815
|
-
|
|
5816
|
-
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
|
|
5829
|
-
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
|
|
5838
|
-
|
|
5839
|
-
|
|
5840
|
-
|
|
5841
|
-
|
|
5842
|
-
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
|
|
5852
|
-
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
|
|
6096
|
+
/**
|
|
6097
|
+
* URL-friendly name of the environment
|
|
6098
|
+
*/
|
|
6099
|
+
slug: string;
|
|
6100
|
+
/**
|
|
6101
|
+
* The type of environment (production, preview, or development)
|
|
6102
|
+
*/
|
|
6103
|
+
type: "production" | "preview" | "development";
|
|
6104
|
+
/**
|
|
6105
|
+
* Optional description of the environment's purpose
|
|
6106
|
+
*/
|
|
6107
|
+
description?: string;
|
|
6108
|
+
/**
|
|
6109
|
+
* Configuration for matching git branches to this environment
|
|
6110
|
+
*/
|
|
6111
|
+
branchMatcher?: {
|
|
6112
|
+
/**
|
|
6113
|
+
* The type of matching to perform
|
|
6114
|
+
*/
|
|
6115
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
6116
|
+
/**
|
|
6117
|
+
* The pattern to match against branch names
|
|
6118
|
+
*/
|
|
6119
|
+
pattern: string;
|
|
6120
|
+
};
|
|
6121
|
+
/**
|
|
6122
|
+
* List of domains associated with this environment
|
|
6123
|
+
*/
|
|
6124
|
+
domains?: {
|
|
6125
|
+
name: string;
|
|
6126
|
+
apexName: string;
|
|
6127
|
+
projectId: string;
|
|
6128
|
+
redirect?: string | null;
|
|
6129
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
6130
|
+
gitBranch?: string | null;
|
|
6131
|
+
customEnvironmentId?: string | null;
|
|
6132
|
+
updatedAt?: number;
|
|
6133
|
+
createdAt?: number;
|
|
6134
|
+
/**
|
|
6135
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
6136
|
+
*/
|
|
6137
|
+
verified: boolean;
|
|
6138
|
+
/**
|
|
6139
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
6140
|
+
*/
|
|
6141
|
+
verification?: {
|
|
6142
|
+
type: string;
|
|
6143
|
+
domain: string;
|
|
6144
|
+
value: string;
|
|
6145
|
+
reason: string;
|
|
6146
|
+
}[];
|
|
6147
|
+
}[];
|
|
6148
|
+
/**
|
|
6149
|
+
* List of aliases for the current deployment
|
|
6150
|
+
*/
|
|
6151
|
+
currentDeploymentAliases?: string[];
|
|
6152
|
+
/**
|
|
6153
|
+
* Timestamp when the environment was created
|
|
6154
|
+
*/
|
|
6155
|
+
createdAt: number;
|
|
6156
|
+
/**
|
|
6157
|
+
* Timestamp when the environment was last updated
|
|
6158
|
+
*/
|
|
6159
|
+
updatedAt: number;
|
|
6160
|
+
} | {
|
|
6161
|
+
id: string;
|
|
6162
|
+
};
|
|
6163
|
+
aliasWarning?: {
|
|
6164
|
+
code: string;
|
|
6165
|
+
message: string;
|
|
6166
|
+
link?: string;
|
|
6167
|
+
action?: string;
|
|
6168
|
+
} | null;
|
|
6169
|
+
id: string;
|
|
6170
|
+
name: string;
|
|
6171
|
+
type: "LAMBDAS";
|
|
6172
|
+
createdAt: number;
|
|
6173
|
+
readyState: "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED";
|
|
6174
|
+
aliasError?: {
|
|
6175
|
+
code: string;
|
|
6176
|
+
message: string;
|
|
6177
|
+
} | null;
|
|
6178
|
+
aliasFinal?: string | null;
|
|
6179
|
+
/**
|
|
6180
|
+
* applies to custom domains only, defaults to `true`
|
|
6181
|
+
*/
|
|
6182
|
+
autoAssignCustomDomains?: boolean;
|
|
6183
|
+
automaticAliases?: string[];
|
|
6184
|
+
buildErrorAt?: number;
|
|
6185
|
+
checksState?: "registered" | "running" | "completed";
|
|
6186
|
+
checksConclusion?: "succeeded" | "failed" | "skipped" | "canceled";
|
|
6187
|
+
deletedAt?: number | null;
|
|
6188
|
+
/**
|
|
6189
|
+
* Computed field that is only available for deployments with a microfrontend configuration.
|
|
6190
|
+
*/
|
|
6191
|
+
defaultRoute?: string;
|
|
6192
|
+
canceledAt?: number;
|
|
6193
|
+
errorCode?: string;
|
|
6194
|
+
errorLink?: string;
|
|
6195
|
+
errorMessage?: string | null;
|
|
6196
|
+
errorStep?: string;
|
|
6197
|
+
/**
|
|
6198
|
+
* Since November 2023 this field defines a set of regions that we will deploy the lambda to passively Lambdas will be deployed to these regions but only invoked if all of the primary `regions` are marked as out of service
|
|
6199
|
+
*/
|
|
6200
|
+
passiveRegions?: string[];
|
|
6201
|
+
gitSource?: {
|
|
6202
|
+
type: "github";
|
|
6203
|
+
repoId: string | number;
|
|
6204
|
+
ref?: string | null;
|
|
6205
|
+
sha?: string;
|
|
6206
|
+
prId?: number | null;
|
|
6207
|
+
} | {
|
|
6208
|
+
type: "github";
|
|
6209
|
+
org: string;
|
|
6210
|
+
repo: string;
|
|
6211
|
+
ref?: string | null;
|
|
6212
|
+
sha?: string;
|
|
5858
6213
|
prId?: number | null;
|
|
5859
6214
|
} | {
|
|
5860
6215
|
type: "github-custom-host";
|
|
@@ -5904,7 +6259,7 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5904
6259
|
org?: string;
|
|
5905
6260
|
repo?: string;
|
|
5906
6261
|
} | {
|
|
5907
|
-
type: "github";
|
|
6262
|
+
type: "github-custom-host";
|
|
5908
6263
|
host: string;
|
|
5909
6264
|
ref: string;
|
|
5910
6265
|
sha: string;
|
|
@@ -6106,7 +6461,76 @@ type CreateDeploymentResponse = {
|
|
|
6106
6461
|
userAliases?: string[];
|
|
6107
6462
|
previewCommentsEnabled?: boolean;
|
|
6108
6463
|
ttyBuildLogs?: boolean;
|
|
6109
|
-
customEnvironment?:
|
|
6464
|
+
customEnvironment?: {
|
|
6465
|
+
/**
|
|
6466
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
6467
|
+
*/
|
|
6468
|
+
id: string;
|
|
6469
|
+
/**
|
|
6470
|
+
* URL-friendly name of the environment
|
|
6471
|
+
*/
|
|
6472
|
+
slug: string;
|
|
6473
|
+
/**
|
|
6474
|
+
* The type of environment (production, preview, or development)
|
|
6475
|
+
*/
|
|
6476
|
+
type: 'production' | 'preview' | 'development';
|
|
6477
|
+
/**
|
|
6478
|
+
* Optional description of the environment's purpose
|
|
6479
|
+
*/
|
|
6480
|
+
description?: string;
|
|
6481
|
+
/**
|
|
6482
|
+
* Configuration for matching git branches to this environment
|
|
6483
|
+
*/
|
|
6484
|
+
branchMatcher?: {
|
|
6485
|
+
/**
|
|
6486
|
+
* The type of matching to perform
|
|
6487
|
+
*/
|
|
6488
|
+
type: 'startsWith' | 'equals' | 'endsWith';
|
|
6489
|
+
/**
|
|
6490
|
+
* The pattern to match against branch names
|
|
6491
|
+
*/
|
|
6492
|
+
pattern: string;
|
|
6493
|
+
};
|
|
6494
|
+
/**
|
|
6495
|
+
* List of domains associated with this environment
|
|
6496
|
+
*/
|
|
6497
|
+
domains?: {
|
|
6498
|
+
name: string;
|
|
6499
|
+
apexName: string;
|
|
6500
|
+
projectId: string;
|
|
6501
|
+
redirect?: string | null;
|
|
6502
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
6503
|
+
gitBranch?: string | null;
|
|
6504
|
+
customEnvironmentId?: string | null;
|
|
6505
|
+
updatedAt?: number;
|
|
6506
|
+
createdAt?: number;
|
|
6507
|
+
/**
|
|
6508
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
6509
|
+
*/
|
|
6510
|
+
verified: boolean;
|
|
6511
|
+
/**
|
|
6512
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
6513
|
+
*/
|
|
6514
|
+
verification?: {
|
|
6515
|
+
type: string;
|
|
6516
|
+
domain: string;
|
|
6517
|
+
value: string;
|
|
6518
|
+
reason: string;
|
|
6519
|
+
}[];
|
|
6520
|
+
}[];
|
|
6521
|
+
/**
|
|
6522
|
+
* List of aliases for the current deployment
|
|
6523
|
+
*/
|
|
6524
|
+
currentDeploymentAliases?: string[];
|
|
6525
|
+
/**
|
|
6526
|
+
* Timestamp when the environment was created
|
|
6527
|
+
*/
|
|
6528
|
+
createdAt: number;
|
|
6529
|
+
/**
|
|
6530
|
+
* Timestamp when the environment was last updated
|
|
6531
|
+
*/
|
|
6532
|
+
updatedAt: number;
|
|
6533
|
+
} | {
|
|
6110
6534
|
id: string;
|
|
6111
6535
|
};
|
|
6112
6536
|
type: 'LAMBDAS';
|
|
@@ -6180,7 +6604,7 @@ type CreateDeploymentResponse = {
|
|
|
6180
6604
|
org?: string;
|
|
6181
6605
|
repo?: string;
|
|
6182
6606
|
} | {
|
|
6183
|
-
type: 'github';
|
|
6607
|
+
type: 'github-custom-host';
|
|
6184
6608
|
host: string;
|
|
6185
6609
|
ref: string;
|
|
6186
6610
|
sha: string;
|
|
@@ -6542,6 +6966,13 @@ type CreateDeploymentRequestBody = {
|
|
|
6542
6966
|
repo: string;
|
|
6543
6967
|
sha?: string;
|
|
6544
6968
|
type: 'github';
|
|
6969
|
+
} | {
|
|
6970
|
+
org: string;
|
|
6971
|
+
ref: string;
|
|
6972
|
+
repo: string;
|
|
6973
|
+
sha?: string;
|
|
6974
|
+
host: string;
|
|
6975
|
+
type: 'github-custom-host';
|
|
6545
6976
|
} | {
|
|
6546
6977
|
projectId: number | string;
|
|
6547
6978
|
ref: string;
|
|
@@ -6816,7 +7247,76 @@ type CancelDeploymentResponse = {
|
|
|
6816
7247
|
userAliases?: string[];
|
|
6817
7248
|
previewCommentsEnabled?: boolean;
|
|
6818
7249
|
ttyBuildLogs?: boolean;
|
|
6819
|
-
customEnvironment?:
|
|
7250
|
+
customEnvironment?: {
|
|
7251
|
+
/**
|
|
7252
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
7253
|
+
*/
|
|
7254
|
+
id: string;
|
|
7255
|
+
/**
|
|
7256
|
+
* URL-friendly name of the environment
|
|
7257
|
+
*/
|
|
7258
|
+
slug: string;
|
|
7259
|
+
/**
|
|
7260
|
+
* The type of environment (production, preview, or development)
|
|
7261
|
+
*/
|
|
7262
|
+
type: 'production' | 'preview' | 'development';
|
|
7263
|
+
/**
|
|
7264
|
+
* Optional description of the environment's purpose
|
|
7265
|
+
*/
|
|
7266
|
+
description?: string;
|
|
7267
|
+
/**
|
|
7268
|
+
* Configuration for matching git branches to this environment
|
|
7269
|
+
*/
|
|
7270
|
+
branchMatcher?: {
|
|
7271
|
+
/**
|
|
7272
|
+
* The type of matching to perform
|
|
7273
|
+
*/
|
|
7274
|
+
type: 'startsWith' | 'equals' | 'endsWith';
|
|
7275
|
+
/**
|
|
7276
|
+
* The pattern to match against branch names
|
|
7277
|
+
*/
|
|
7278
|
+
pattern: string;
|
|
7279
|
+
};
|
|
7280
|
+
/**
|
|
7281
|
+
* List of domains associated with this environment
|
|
7282
|
+
*/
|
|
7283
|
+
domains?: {
|
|
7284
|
+
name: string;
|
|
7285
|
+
apexName: string;
|
|
7286
|
+
projectId: string;
|
|
7287
|
+
redirect?: string | null;
|
|
7288
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
7289
|
+
gitBranch?: string | null;
|
|
7290
|
+
customEnvironmentId?: string | null;
|
|
7291
|
+
updatedAt?: number;
|
|
7292
|
+
createdAt?: number;
|
|
7293
|
+
/**
|
|
7294
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
7295
|
+
*/
|
|
7296
|
+
verified: boolean;
|
|
7297
|
+
/**
|
|
7298
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
7299
|
+
*/
|
|
7300
|
+
verification?: {
|
|
7301
|
+
type: string;
|
|
7302
|
+
domain: string;
|
|
7303
|
+
value: string;
|
|
7304
|
+
reason: string;
|
|
7305
|
+
}[];
|
|
7306
|
+
}[];
|
|
7307
|
+
/**
|
|
7308
|
+
* List of aliases for the current deployment
|
|
7309
|
+
*/
|
|
7310
|
+
currentDeploymentAliases?: string[];
|
|
7311
|
+
/**
|
|
7312
|
+
* Timestamp when the environment was created
|
|
7313
|
+
*/
|
|
7314
|
+
createdAt: number;
|
|
7315
|
+
/**
|
|
7316
|
+
* Timestamp when the environment was last updated
|
|
7317
|
+
*/
|
|
7318
|
+
updatedAt: number;
|
|
7319
|
+
} | {
|
|
6820
7320
|
id: string;
|
|
6821
7321
|
};
|
|
6822
7322
|
id: string;
|
|
@@ -6915,7 +7415,7 @@ type CancelDeploymentResponse = {
|
|
|
6915
7415
|
org?: string;
|
|
6916
7416
|
repo?: string;
|
|
6917
7417
|
} | {
|
|
6918
|
-
type: 'github';
|
|
7418
|
+
type: 'github-custom-host';
|
|
6919
7419
|
host: string;
|
|
6920
7420
|
ref: string;
|
|
6921
7421
|
sha: string;
|
|
@@ -9233,11 +9733,23 @@ type ListUserEventsQueryParams = {
|
|
|
9233
9733
|
*/
|
|
9234
9734
|
types?: string;
|
|
9235
9735
|
/**
|
|
9236
|
-
*
|
|
9736
|
+
* Deprecated. Use `principalId` instead. If `principalId` and `userId` both exist, `principalId` will be used.
|
|
9237
9737
|
*
|
|
9238
9738
|
* @example aeIInYVk59zbFF2SxfyxxmuO
|
|
9239
9739
|
*/
|
|
9240
9740
|
userId?: string;
|
|
9741
|
+
/**
|
|
9742
|
+
* When retrieving events for a Team, the `principalId` parameter may be specified to filter events generated by a specific principal.
|
|
9743
|
+
*
|
|
9744
|
+
* @example aeIInYVk59zbFF2SxfyxxmuO
|
|
9745
|
+
*/
|
|
9746
|
+
principalId?: string;
|
|
9747
|
+
/**
|
|
9748
|
+
* Comma-delimited list of project IDs to filter the results by.
|
|
9749
|
+
*
|
|
9750
|
+
* @example aeIInYVk59zbFF2SxfyxxmuO
|
|
9751
|
+
*/
|
|
9752
|
+
projectIds?: string;
|
|
9241
9753
|
/**
|
|
9242
9754
|
* When set to `true`, the response will include the `payload` field for each event.
|
|
9243
9755
|
*
|
|
@@ -10861,31 +11373,132 @@ type DeleteIntegrationLogDrainVariables = {
|
|
|
10861
11373
|
* Deletes the Integration log drain with the provided `id`. When using an OAuth2 Token, the log drain can be deleted only if the integration owns it.
|
|
10862
11374
|
*/
|
|
10863
11375
|
declare const deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
10864
|
-
type
|
|
10865
|
-
|
|
10866
|
-
resourceId: string;
|
|
11376
|
+
type GetProjectsProjectIdLogsPresetsPathParams = {
|
|
11377
|
+
projectId: string;
|
|
10867
11378
|
};
|
|
10868
|
-
type
|
|
10869
|
-
type
|
|
11379
|
+
type GetProjectsProjectIdLogsPresetsError = ErrorWrapper<undefined>;
|
|
11380
|
+
type GetProjectsProjectIdLogsPresetsResponse = Team[];
|
|
11381
|
+
type GetProjectsProjectIdLogsPresetsVariables = {
|
|
11382
|
+
pathParams: GetProjectsProjectIdLogsPresetsPathParams;
|
|
11383
|
+
} & FetcherExtraProps;
|
|
11384
|
+
declare const getProjectsProjectIdLogsPresets: (variables: GetProjectsProjectIdLogsPresetsVariables, signal?: AbortSignal) => Promise<GetProjectsProjectIdLogsPresetsResponse>;
|
|
11385
|
+
type PostProjectsProjectIdLogsPresetsPathParams = {
|
|
10870
11386
|
/**
|
|
10871
|
-
*
|
|
11387
|
+
* projectId of the preset
|
|
10872
11388
|
*/
|
|
10873
|
-
|
|
10874
|
-
|
|
10875
|
-
|
|
10876
|
-
|
|
10877
|
-
|
|
10878
|
-
|
|
10879
|
-
|
|
10880
|
-
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10885
|
-
|
|
10886
|
-
|
|
10887
|
-
|
|
10888
|
-
|
|
11389
|
+
projectId: string;
|
|
11390
|
+
};
|
|
11391
|
+
type PostProjectsProjectIdLogsPresetsError = ErrorWrapper<undefined>;
|
|
11392
|
+
type PostProjectsProjectIdLogsPresetsRequestBody = {
|
|
11393
|
+
/**
|
|
11394
|
+
* query parameter for saved filter preset
|
|
11395
|
+
*
|
|
11396
|
+
* @example timeline=past30Minutes&startDate=1690446214407&endDate=1690448014407&levels=info&domains=vercel.com
|
|
11397
|
+
* @maxLength 1000
|
|
11398
|
+
*/
|
|
11399
|
+
query: string;
|
|
11400
|
+
/**
|
|
11401
|
+
* The title of the preset
|
|
11402
|
+
*
|
|
11403
|
+
* @example Request Path
|
|
11404
|
+
* @maxLength 70
|
|
11405
|
+
*/
|
|
11406
|
+
title: string;
|
|
11407
|
+
group: 'personal' | 'team';
|
|
11408
|
+
};
|
|
11409
|
+
type PostProjectsProjectIdLogsPresetsVariables = {
|
|
11410
|
+
body: PostProjectsProjectIdLogsPresetsRequestBody;
|
|
11411
|
+
pathParams: PostProjectsProjectIdLogsPresetsPathParams;
|
|
11412
|
+
} & FetcherExtraProps;
|
|
11413
|
+
declare const postProjectsProjectIdLogsPresets: (variables: PostProjectsProjectIdLogsPresetsVariables, signal?: AbortSignal) => Promise<Team>;
|
|
11414
|
+
type DeleteProjectsProjectIdLogsPresetsIdPathParams = {
|
|
11415
|
+
/**
|
|
11416
|
+
* projectId of the preset
|
|
11417
|
+
*/
|
|
11418
|
+
projectId: string;
|
|
11419
|
+
/**
|
|
11420
|
+
* id of the preset
|
|
11421
|
+
*/
|
|
11422
|
+
id: string;
|
|
11423
|
+
};
|
|
11424
|
+
type DeleteProjectsProjectIdLogsPresetsIdError = ErrorWrapper<undefined>;
|
|
11425
|
+
type DeleteProjectsProjectIdLogsPresetsIdVariables = {
|
|
11426
|
+
pathParams: DeleteProjectsProjectIdLogsPresetsIdPathParams;
|
|
11427
|
+
} & FetcherExtraProps;
|
|
11428
|
+
declare const deleteProjectsProjectIdLogsPresetsId: (variables: DeleteProjectsProjectIdLogsPresetsIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
11429
|
+
type PatchProjectsProjectIdLogsPresetsIdPathParams = {
|
|
11430
|
+
/**
|
|
11431
|
+
* projectId of the preset
|
|
11432
|
+
*/
|
|
11433
|
+
projectId: string;
|
|
11434
|
+
/**
|
|
11435
|
+
* Id of the preset
|
|
11436
|
+
*/
|
|
11437
|
+
id: string;
|
|
11438
|
+
};
|
|
11439
|
+
type PatchProjectsProjectIdLogsPresetsIdError = ErrorWrapper<undefined>;
|
|
11440
|
+
type PatchProjectsProjectIdLogsPresetsIdRequestBody = {
|
|
11441
|
+
/**
|
|
11442
|
+
* The title of the preset
|
|
11443
|
+
*
|
|
11444
|
+
* @example Request Path
|
|
11445
|
+
* @maxLength 70
|
|
11446
|
+
*/
|
|
11447
|
+
title: string;
|
|
11448
|
+
};
|
|
11449
|
+
type PatchProjectsProjectIdLogsPresetsIdVariables = {
|
|
11450
|
+
body: PatchProjectsProjectIdLogsPresetsIdRequestBody;
|
|
11451
|
+
pathParams: PatchProjectsProjectIdLogsPresetsIdPathParams;
|
|
11452
|
+
} & FetcherExtraProps;
|
|
11453
|
+
declare const patchProjectsProjectIdLogsPresetsId: (variables: PatchProjectsProjectIdLogsPresetsIdVariables, signal?: AbortSignal) => Promise<Team>;
|
|
11454
|
+
type GetRuntimeLogsPathParams = {
|
|
11455
|
+
projectId: string;
|
|
11456
|
+
deploymentId: string;
|
|
11457
|
+
};
|
|
11458
|
+
type GetRuntimeLogsQueryParams = {
|
|
11459
|
+
/**
|
|
11460
|
+
* The Team identifier to perform the request on behalf of.
|
|
11461
|
+
*/
|
|
11462
|
+
teamId?: string;
|
|
11463
|
+
/**
|
|
11464
|
+
* The Team slug to perform the request on behalf of.
|
|
11465
|
+
*/
|
|
11466
|
+
slug?: string;
|
|
11467
|
+
};
|
|
11468
|
+
type GetRuntimeLogsError = ErrorWrapper<undefined>;
|
|
11469
|
+
type GetRuntimeLogsVariables = {
|
|
11470
|
+
pathParams: GetRuntimeLogsPathParams;
|
|
11471
|
+
queryParams?: GetRuntimeLogsQueryParams;
|
|
11472
|
+
} & FetcherExtraProps;
|
|
11473
|
+
/**
|
|
11474
|
+
* Returns a stream of logs for a given deployment.
|
|
11475
|
+
*/
|
|
11476
|
+
declare const getRuntimeLogs: (variables: GetRuntimeLogsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
11477
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = {
|
|
11478
|
+
integrationConfigurationId: string;
|
|
11479
|
+
resourceId: string;
|
|
11480
|
+
};
|
|
11481
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError = ErrorWrapper<undefined>;
|
|
11482
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody = {
|
|
11483
|
+
/**
|
|
11484
|
+
* @maxItems 50
|
|
11485
|
+
*/
|
|
11486
|
+
items: {
|
|
11487
|
+
/**
|
|
11488
|
+
* @maxLength 1024
|
|
11489
|
+
*/
|
|
11490
|
+
id: string;
|
|
11491
|
+
/**
|
|
11492
|
+
* @maxLength 1024
|
|
11493
|
+
*/
|
|
11494
|
+
slug: string;
|
|
11495
|
+
/**
|
|
11496
|
+
* @maxLength 2048
|
|
11497
|
+
*/
|
|
11498
|
+
origin: string;
|
|
11499
|
+
category?: 'experiment' | 'flag';
|
|
11500
|
+
/**
|
|
11501
|
+
* @maxLength 1024
|
|
10889
11502
|
*/
|
|
10890
11503
|
name?: string;
|
|
10891
11504
|
/**
|
|
@@ -11276,6 +11889,8 @@ type GetProjectsQueryParams = {
|
|
|
11276
11889
|
limit?: string;
|
|
11277
11890
|
/**
|
|
11278
11891
|
* Search projects by the name field
|
|
11892
|
+
*
|
|
11893
|
+
* @maxLength 100
|
|
11279
11894
|
*/
|
|
11280
11895
|
search?: string;
|
|
11281
11896
|
/**
|
|
@@ -11476,7 +12091,76 @@ type GetProjectsResponse = {
|
|
|
11476
12091
|
comment?: string;
|
|
11477
12092
|
customEnvironmentIds?: string[];
|
|
11478
12093
|
}[];
|
|
11479
|
-
customEnvironments?:
|
|
12094
|
+
customEnvironments?: {
|
|
12095
|
+
/**
|
|
12096
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
12097
|
+
*/
|
|
12098
|
+
id: string;
|
|
12099
|
+
/**
|
|
12100
|
+
* URL-friendly name of the environment
|
|
12101
|
+
*/
|
|
12102
|
+
slug: string;
|
|
12103
|
+
/**
|
|
12104
|
+
* The type of environment (production, preview, or development)
|
|
12105
|
+
*/
|
|
12106
|
+
type: 'development' | 'preview' | 'production';
|
|
12107
|
+
/**
|
|
12108
|
+
* Optional description of the environment's purpose
|
|
12109
|
+
*/
|
|
12110
|
+
description?: string;
|
|
12111
|
+
/**
|
|
12112
|
+
* Configuration for matching git branches to this environment
|
|
12113
|
+
*/
|
|
12114
|
+
branchMatcher?: {
|
|
12115
|
+
/**
|
|
12116
|
+
* The type of matching to perform
|
|
12117
|
+
*/
|
|
12118
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
12119
|
+
/**
|
|
12120
|
+
* The pattern to match against branch names
|
|
12121
|
+
*/
|
|
12122
|
+
pattern: string;
|
|
12123
|
+
};
|
|
12124
|
+
/**
|
|
12125
|
+
* List of domains associated with this environment
|
|
12126
|
+
*/
|
|
12127
|
+
domains?: {
|
|
12128
|
+
name: string;
|
|
12129
|
+
apexName: string;
|
|
12130
|
+
projectId: string;
|
|
12131
|
+
redirect?: string | null;
|
|
12132
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
12133
|
+
gitBranch?: string | null;
|
|
12134
|
+
customEnvironmentId?: string | null;
|
|
12135
|
+
updatedAt?: number;
|
|
12136
|
+
createdAt?: number;
|
|
12137
|
+
/**
|
|
12138
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
12139
|
+
*/
|
|
12140
|
+
verified: boolean;
|
|
12141
|
+
/**
|
|
12142
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
12143
|
+
*/
|
|
12144
|
+
verification?: {
|
|
12145
|
+
type: string;
|
|
12146
|
+
domain: string;
|
|
12147
|
+
value: string;
|
|
12148
|
+
reason: string;
|
|
12149
|
+
}[];
|
|
12150
|
+
}[];
|
|
12151
|
+
/**
|
|
12152
|
+
* List of aliases for the current deployment
|
|
12153
|
+
*/
|
|
12154
|
+
currentDeploymentAliases?: string[];
|
|
12155
|
+
/**
|
|
12156
|
+
* Timestamp when the environment was created
|
|
12157
|
+
*/
|
|
12158
|
+
createdAt: number;
|
|
12159
|
+
/**
|
|
12160
|
+
* Timestamp when the environment was last updated
|
|
12161
|
+
*/
|
|
12162
|
+
updatedAt: number;
|
|
12163
|
+
}[];
|
|
11480
12164
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
11481
12165
|
gitForkProtection?: boolean;
|
|
11482
12166
|
gitLFS?: boolean;
|
|
@@ -11704,7 +12388,7 @@ type GetProjectsResponse = {
|
|
|
11704
12388
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11705
12389
|
functionZeroConfigFailover?: boolean;
|
|
11706
12390
|
elasticConcurrencyEnabled?: boolean;
|
|
11707
|
-
buildMachineType?: 'enhanced';
|
|
12391
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
11708
12392
|
};
|
|
11709
12393
|
rollingRelease?: {
|
|
11710
12394
|
/**
|
|
@@ -11731,6 +12415,10 @@ type GetProjectsResponse = {
|
|
|
11731
12415
|
* Whether or not this stage requires approval to proceed.
|
|
11732
12416
|
*/
|
|
11733
12417
|
requireApproval?: boolean;
|
|
12418
|
+
/**
|
|
12419
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
12420
|
+
*/
|
|
12421
|
+
duration?: number;
|
|
11734
12422
|
}[] | null;
|
|
11735
12423
|
} | null;
|
|
11736
12424
|
defaultResourceConfig: {
|
|
@@ -11740,7 +12428,7 @@ type GetProjectsResponse = {
|
|
|
11740
12428
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11741
12429
|
functionZeroConfigFailover?: boolean;
|
|
11742
12430
|
elasticConcurrencyEnabled?: boolean;
|
|
11743
|
-
buildMachineType?: 'enhanced';
|
|
12431
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
11744
12432
|
};
|
|
11745
12433
|
rootDirectory?: string | null;
|
|
11746
12434
|
serverlessFunctionRegion?: string | null;
|
|
@@ -11925,6 +12613,7 @@ type GetProjectsResponse = {
|
|
|
11925
12613
|
observabilityConfiguration?: ACLAction[];
|
|
11926
12614
|
observabilityNotebook?: ACLAction[];
|
|
11927
12615
|
openTelemetryEndpoint?: ACLAction[];
|
|
12616
|
+
vercelAppInstallation?: ACLAction[];
|
|
11928
12617
|
paymentMethod?: ACLAction[];
|
|
11929
12618
|
permissions?: ACLAction[];
|
|
11930
12619
|
postgres?: ACLAction[];
|
|
@@ -12040,12 +12729,21 @@ type GetProjectsResponse = {
|
|
|
12040
12729
|
lastAliasRequest?: {
|
|
12041
12730
|
fromDeploymentId: string;
|
|
12042
12731
|
toDeploymentId: string;
|
|
12732
|
+
/**
|
|
12733
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
12734
|
+
*/
|
|
12735
|
+
fromRollingReleaseId?: string;
|
|
12043
12736
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
12044
12737
|
requestedAt: number;
|
|
12045
12738
|
type: 'promote' | 'rollback';
|
|
12046
12739
|
} | null;
|
|
12047
12740
|
protectionBypass?: {
|
|
12048
12741
|
[key: string]: {
|
|
12742
|
+
createdAt: number;
|
|
12743
|
+
createdBy: string;
|
|
12744
|
+
scope: 'integration-automation-bypass';
|
|
12745
|
+
integrationId: string;
|
|
12746
|
+
} | {
|
|
12049
12747
|
createdAt: number;
|
|
12050
12748
|
createdBy: string;
|
|
12051
12749
|
scope: 'automation-bypass';
|
|
@@ -12053,14 +12751,14 @@ type GetProjectsResponse = {
|
|
|
12053
12751
|
};
|
|
12054
12752
|
hasActiveBranches?: boolean;
|
|
12055
12753
|
trustedIps?: {
|
|
12056
|
-
deploymentType: '
|
|
12754
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12057
12755
|
addresses: {
|
|
12058
12756
|
value: string;
|
|
12059
12757
|
note?: string;
|
|
12060
12758
|
}[];
|
|
12061
12759
|
protectionMode: 'additional' | 'exclusive';
|
|
12062
12760
|
} | {
|
|
12063
|
-
deploymentType: '
|
|
12761
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12064
12762
|
} | null;
|
|
12065
12763
|
gitComments?: {
|
|
12066
12764
|
/**
|
|
@@ -12357,7 +13055,76 @@ type CreateProjectResponse = {
|
|
|
12357
13055
|
comment?: string;
|
|
12358
13056
|
customEnvironmentIds?: string[];
|
|
12359
13057
|
}[];
|
|
12360
|
-
customEnvironments?:
|
|
13058
|
+
customEnvironments?: {
|
|
13059
|
+
/**
|
|
13060
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
13061
|
+
*/
|
|
13062
|
+
id: string;
|
|
13063
|
+
/**
|
|
13064
|
+
* URL-friendly name of the environment
|
|
13065
|
+
*/
|
|
13066
|
+
slug: string;
|
|
13067
|
+
/**
|
|
13068
|
+
* The type of environment (production, preview, or development)
|
|
13069
|
+
*/
|
|
13070
|
+
type: 'development' | 'preview' | 'production';
|
|
13071
|
+
/**
|
|
13072
|
+
* Optional description of the environment's purpose
|
|
13073
|
+
*/
|
|
13074
|
+
description?: string;
|
|
13075
|
+
/**
|
|
13076
|
+
* Configuration for matching git branches to this environment
|
|
13077
|
+
*/
|
|
13078
|
+
branchMatcher?: {
|
|
13079
|
+
/**
|
|
13080
|
+
* The type of matching to perform
|
|
13081
|
+
*/
|
|
13082
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
13083
|
+
/**
|
|
13084
|
+
* The pattern to match against branch names
|
|
13085
|
+
*/
|
|
13086
|
+
pattern: string;
|
|
13087
|
+
};
|
|
13088
|
+
/**
|
|
13089
|
+
* List of domains associated with this environment
|
|
13090
|
+
*/
|
|
13091
|
+
domains?: {
|
|
13092
|
+
name: string;
|
|
13093
|
+
apexName: string;
|
|
13094
|
+
projectId: string;
|
|
13095
|
+
redirect?: string | null;
|
|
13096
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
13097
|
+
gitBranch?: string | null;
|
|
13098
|
+
customEnvironmentId?: string | null;
|
|
13099
|
+
updatedAt?: number;
|
|
13100
|
+
createdAt?: number;
|
|
13101
|
+
/**
|
|
13102
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
13103
|
+
*/
|
|
13104
|
+
verified: boolean;
|
|
13105
|
+
/**
|
|
13106
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
13107
|
+
*/
|
|
13108
|
+
verification?: {
|
|
13109
|
+
type: string;
|
|
13110
|
+
domain: string;
|
|
13111
|
+
value: string;
|
|
13112
|
+
reason: string;
|
|
13113
|
+
}[];
|
|
13114
|
+
}[];
|
|
13115
|
+
/**
|
|
13116
|
+
* List of aliases for the current deployment
|
|
13117
|
+
*/
|
|
13118
|
+
currentDeploymentAliases?: string[];
|
|
13119
|
+
/**
|
|
13120
|
+
* Timestamp when the environment was created
|
|
13121
|
+
*/
|
|
13122
|
+
createdAt: number;
|
|
13123
|
+
/**
|
|
13124
|
+
* Timestamp when the environment was last updated
|
|
13125
|
+
*/
|
|
13126
|
+
updatedAt: number;
|
|
13127
|
+
}[];
|
|
12361
13128
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
12362
13129
|
gitForkProtection?: boolean;
|
|
12363
13130
|
gitLFS?: boolean;
|
|
@@ -12585,7 +13352,7 @@ type CreateProjectResponse = {
|
|
|
12585
13352
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12586
13353
|
functionZeroConfigFailover?: boolean;
|
|
12587
13354
|
elasticConcurrencyEnabled?: boolean;
|
|
12588
|
-
buildMachineType?: 'enhanced';
|
|
13355
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
12589
13356
|
};
|
|
12590
13357
|
rollingRelease?: {
|
|
12591
13358
|
/**
|
|
@@ -12612,6 +13379,10 @@ type CreateProjectResponse = {
|
|
|
12612
13379
|
* Whether or not this stage requires approval to proceed.
|
|
12613
13380
|
*/
|
|
12614
13381
|
requireApproval?: boolean;
|
|
13382
|
+
/**
|
|
13383
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
13384
|
+
*/
|
|
13385
|
+
duration?: number;
|
|
12615
13386
|
}[] | null;
|
|
12616
13387
|
} | null;
|
|
12617
13388
|
defaultResourceConfig: {
|
|
@@ -12621,7 +13392,7 @@ type CreateProjectResponse = {
|
|
|
12621
13392
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12622
13393
|
functionZeroConfigFailover?: boolean;
|
|
12623
13394
|
elasticConcurrencyEnabled?: boolean;
|
|
12624
|
-
buildMachineType?: 'enhanced';
|
|
13395
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
12625
13396
|
};
|
|
12626
13397
|
rootDirectory?: string | null;
|
|
12627
13398
|
serverlessFunctionRegion?: string | null;
|
|
@@ -12806,6 +13577,7 @@ type CreateProjectResponse = {
|
|
|
12806
13577
|
observabilityConfiguration?: ACLAction[];
|
|
12807
13578
|
observabilityNotebook?: ACLAction[];
|
|
12808
13579
|
openTelemetryEndpoint?: ACLAction[];
|
|
13580
|
+
vercelAppInstallation?: ACLAction[];
|
|
12809
13581
|
paymentMethod?: ACLAction[];
|
|
12810
13582
|
permissions?: ACLAction[];
|
|
12811
13583
|
postgres?: ACLAction[];
|
|
@@ -12921,12 +13693,21 @@ type CreateProjectResponse = {
|
|
|
12921
13693
|
lastAliasRequest?: {
|
|
12922
13694
|
fromDeploymentId: string;
|
|
12923
13695
|
toDeploymentId: string;
|
|
13696
|
+
/**
|
|
13697
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
13698
|
+
*/
|
|
13699
|
+
fromRollingReleaseId?: string;
|
|
12924
13700
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
12925
13701
|
requestedAt: number;
|
|
12926
13702
|
type: 'promote' | 'rollback';
|
|
12927
13703
|
} | null;
|
|
12928
13704
|
protectionBypass?: {
|
|
12929
13705
|
[key: string]: {
|
|
13706
|
+
createdAt: number;
|
|
13707
|
+
createdBy: string;
|
|
13708
|
+
scope: 'integration-automation-bypass';
|
|
13709
|
+
integrationId: string;
|
|
13710
|
+
} | {
|
|
12930
13711
|
createdAt: number;
|
|
12931
13712
|
createdBy: string;
|
|
12932
13713
|
scope: 'automation-bypass';
|
|
@@ -12934,14 +13715,14 @@ type CreateProjectResponse = {
|
|
|
12934
13715
|
};
|
|
12935
13716
|
hasActiveBranches?: boolean;
|
|
12936
13717
|
trustedIps?: {
|
|
12937
|
-
deploymentType: '
|
|
13718
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12938
13719
|
addresses: {
|
|
12939
13720
|
value: string;
|
|
12940
13721
|
note?: string;
|
|
12941
13722
|
}[];
|
|
12942
13723
|
protectionMode: 'additional' | 'exclusive';
|
|
12943
13724
|
} | {
|
|
12944
|
-
deploymentType: '
|
|
13725
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12945
13726
|
} | null;
|
|
12946
13727
|
gitComments?: {
|
|
12947
13728
|
/**
|
|
@@ -13059,6 +13840,14 @@ type CreateProjectResponse = {
|
|
|
13059
13840
|
tier?: 'advanced' | 'critical' | 'standard';
|
|
13060
13841
|
};
|
|
13061
13842
|
type CreateProjectRequestBody = {
|
|
13843
|
+
/**
|
|
13844
|
+
* Opt-in to preview toolbar on the project level
|
|
13845
|
+
*/
|
|
13846
|
+
enablePreviewFeedback?: boolean | null;
|
|
13847
|
+
/**
|
|
13848
|
+
* Opt-in to production toolbar on the project level
|
|
13849
|
+
*/
|
|
13850
|
+
enableProductionFeedback?: boolean | null;
|
|
13062
13851
|
/**
|
|
13063
13852
|
* The build command for this project. When `null` is used this value will be automatically detected
|
|
13064
13853
|
*
|
|
@@ -13185,6 +13974,31 @@ type CreateProjectRequestBody = {
|
|
|
13185
13974
|
* Opt-in to skip deployments when there are no changes to the root directory and its dependencies
|
|
13186
13975
|
*/
|
|
13187
13976
|
enableAffectedProjectsDeployments?: boolean;
|
|
13977
|
+
/**
|
|
13978
|
+
* Specifies resource override configuration for the project
|
|
13979
|
+
*/
|
|
13980
|
+
resourceConfig?: {
|
|
13981
|
+
fluid?: boolean;
|
|
13982
|
+
/**
|
|
13983
|
+
* The regions to deploy Vercel Functions to for this project
|
|
13984
|
+
*
|
|
13985
|
+
* @minItems 1
|
|
13986
|
+
* @uniqueItems true
|
|
13987
|
+
*/
|
|
13988
|
+
functionDefaultRegions?: string[];
|
|
13989
|
+
/**
|
|
13990
|
+
* @maximum 900
|
|
13991
|
+
* @minimum 1
|
|
13992
|
+
*/
|
|
13993
|
+
functionDefaultTimeout?: number;
|
|
13994
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13995
|
+
/**
|
|
13996
|
+
* Specifies whether Zero Config Failover is enabled for this project.
|
|
13997
|
+
*/
|
|
13998
|
+
functionZeroConfigFailover?: boolean;
|
|
13999
|
+
elasticConcurrencyEnabled?: boolean;
|
|
14000
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
14001
|
+
};
|
|
13188
14002
|
};
|
|
13189
14003
|
type CreateProjectVariables = {
|
|
13190
14004
|
body: CreateProjectRequestBody;
|
|
@@ -13371,25 +14185,26 @@ type GetProjectResponse = {
|
|
|
13371
14185
|
comment?: string;
|
|
13372
14186
|
customEnvironmentIds?: string[];
|
|
13373
14187
|
}[];
|
|
13374
|
-
customEnvironments?:
|
|
13375
|
-
|
|
13376
|
-
|
|
13377
|
-
|
|
13378
|
-
id: string;
|
|
13379
|
-
ipBuckets?: {
|
|
13380
|
-
bucket: string;
|
|
13381
|
-
supportUntil?: number;
|
|
13382
|
-
}[];
|
|
13383
|
-
latestDeployments?: {
|
|
14188
|
+
customEnvironments?: {
|
|
14189
|
+
/**
|
|
14190
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
14191
|
+
*/
|
|
13384
14192
|
id: string;
|
|
13385
|
-
|
|
13386
|
-
|
|
13387
|
-
|
|
13388
|
-
|
|
13389
|
-
|
|
13390
|
-
|
|
13391
|
-
|
|
13392
|
-
|
|
14193
|
+
/**
|
|
14194
|
+
* URL-friendly name of the environment
|
|
14195
|
+
*/
|
|
14196
|
+
slug: string;
|
|
14197
|
+
/**
|
|
14198
|
+
* The type of environment (production, preview, or development)
|
|
14199
|
+
*/
|
|
14200
|
+
type: 'development' | 'preview' | 'production';
|
|
14201
|
+
/**
|
|
14202
|
+
* Optional description of the environment's purpose
|
|
14203
|
+
*/
|
|
14204
|
+
description?: string;
|
|
14205
|
+
/**
|
|
14206
|
+
* Configuration for matching git branches to this environment
|
|
14207
|
+
*/
|
|
13393
14208
|
branchMatcher?: {
|
|
13394
14209
|
/**
|
|
13395
14210
|
* The type of matching to perform
|
|
@@ -13400,8 +14215,76 @@ type GetProjectResponse = {
|
|
|
13400
14215
|
*/
|
|
13401
14216
|
pattern: string;
|
|
13402
14217
|
};
|
|
13403
|
-
|
|
13404
|
-
|
|
14218
|
+
/**
|
|
14219
|
+
* List of domains associated with this environment
|
|
14220
|
+
*/
|
|
14221
|
+
domains?: {
|
|
14222
|
+
name: string;
|
|
14223
|
+
apexName: string;
|
|
14224
|
+
projectId: string;
|
|
14225
|
+
redirect?: string | null;
|
|
14226
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
14227
|
+
gitBranch?: string | null;
|
|
14228
|
+
customEnvironmentId?: string | null;
|
|
14229
|
+
updatedAt?: number;
|
|
14230
|
+
createdAt?: number;
|
|
14231
|
+
/**
|
|
14232
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
14233
|
+
*/
|
|
14234
|
+
verified: boolean;
|
|
14235
|
+
/**
|
|
14236
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
14237
|
+
*/
|
|
14238
|
+
verification?: {
|
|
14239
|
+
type: string;
|
|
14240
|
+
domain: string;
|
|
14241
|
+
value: string;
|
|
14242
|
+
reason: string;
|
|
14243
|
+
}[];
|
|
14244
|
+
}[];
|
|
14245
|
+
/**
|
|
14246
|
+
* List of aliases for the current deployment
|
|
14247
|
+
*/
|
|
14248
|
+
currentDeploymentAliases?: string[];
|
|
14249
|
+
/**
|
|
14250
|
+
* Timestamp when the environment was created
|
|
14251
|
+
*/
|
|
14252
|
+
createdAt: number;
|
|
14253
|
+
/**
|
|
14254
|
+
* Timestamp when the environment was last updated
|
|
14255
|
+
*/
|
|
14256
|
+
updatedAt: number;
|
|
14257
|
+
}[];
|
|
14258
|
+
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
14259
|
+
gitForkProtection?: boolean;
|
|
14260
|
+
gitLFS?: boolean;
|
|
14261
|
+
id: string;
|
|
14262
|
+
ipBuckets?: {
|
|
14263
|
+
bucket: string;
|
|
14264
|
+
supportUntil?: number;
|
|
14265
|
+
}[];
|
|
14266
|
+
latestDeployments?: {
|
|
14267
|
+
id: string;
|
|
14268
|
+
alias?: string[];
|
|
14269
|
+
aliasAssigned?: number | boolean | null;
|
|
14270
|
+
aliasError?: {
|
|
14271
|
+
code: string;
|
|
14272
|
+
message: string;
|
|
14273
|
+
} | null;
|
|
14274
|
+
aliasFinal?: string | null;
|
|
14275
|
+
automaticAliases?: string[];
|
|
14276
|
+
branchMatcher?: {
|
|
14277
|
+
/**
|
|
14278
|
+
* The type of matching to perform
|
|
14279
|
+
*/
|
|
14280
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
14281
|
+
/**
|
|
14282
|
+
* The pattern to match against branch names
|
|
14283
|
+
*/
|
|
14284
|
+
pattern: string;
|
|
14285
|
+
};
|
|
14286
|
+
buildingAt?: number;
|
|
14287
|
+
builds?: {
|
|
13405
14288
|
use: string;
|
|
13406
14289
|
src?: string;
|
|
13407
14290
|
dest?: string;
|
|
@@ -13599,7 +14482,7 @@ type GetProjectResponse = {
|
|
|
13599
14482
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13600
14483
|
functionZeroConfigFailover?: boolean;
|
|
13601
14484
|
elasticConcurrencyEnabled?: boolean;
|
|
13602
|
-
buildMachineType?: 'enhanced';
|
|
14485
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
13603
14486
|
};
|
|
13604
14487
|
rollingRelease?: {
|
|
13605
14488
|
/**
|
|
@@ -13626,6 +14509,10 @@ type GetProjectResponse = {
|
|
|
13626
14509
|
* Whether or not this stage requires approval to proceed.
|
|
13627
14510
|
*/
|
|
13628
14511
|
requireApproval?: boolean;
|
|
14512
|
+
/**
|
|
14513
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
14514
|
+
*/
|
|
14515
|
+
duration?: number;
|
|
13629
14516
|
}[] | null;
|
|
13630
14517
|
} | null;
|
|
13631
14518
|
defaultResourceConfig: {
|
|
@@ -13635,7 +14522,7 @@ type GetProjectResponse = {
|
|
|
13635
14522
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13636
14523
|
functionZeroConfigFailover?: boolean;
|
|
13637
14524
|
elasticConcurrencyEnabled?: boolean;
|
|
13638
|
-
buildMachineType?: 'enhanced';
|
|
14525
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
13639
14526
|
};
|
|
13640
14527
|
rootDirectory?: string | null;
|
|
13641
14528
|
serverlessFunctionRegion?: string | null;
|
|
@@ -13820,6 +14707,7 @@ type GetProjectResponse = {
|
|
|
13820
14707
|
observabilityConfiguration?: ACLAction[];
|
|
13821
14708
|
observabilityNotebook?: ACLAction[];
|
|
13822
14709
|
openTelemetryEndpoint?: ACLAction[];
|
|
14710
|
+
vercelAppInstallation?: ACLAction[];
|
|
13823
14711
|
paymentMethod?: ACLAction[];
|
|
13824
14712
|
permissions?: ACLAction[];
|
|
13825
14713
|
postgres?: ACLAction[];
|
|
@@ -13935,12 +14823,21 @@ type GetProjectResponse = {
|
|
|
13935
14823
|
lastAliasRequest?: {
|
|
13936
14824
|
fromDeploymentId: string;
|
|
13937
14825
|
toDeploymentId: string;
|
|
14826
|
+
/**
|
|
14827
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
14828
|
+
*/
|
|
14829
|
+
fromRollingReleaseId?: string;
|
|
13938
14830
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
13939
14831
|
requestedAt: number;
|
|
13940
14832
|
type: 'promote' | 'rollback';
|
|
13941
14833
|
} | null;
|
|
13942
14834
|
protectionBypass?: {
|
|
13943
14835
|
[key: string]: {
|
|
14836
|
+
createdAt: number;
|
|
14837
|
+
createdBy: string;
|
|
14838
|
+
scope: 'integration-automation-bypass';
|
|
14839
|
+
integrationId: string;
|
|
14840
|
+
} | {
|
|
13944
14841
|
createdAt: number;
|
|
13945
14842
|
createdBy: string;
|
|
13946
14843
|
scope: 'automation-bypass';
|
|
@@ -13948,14 +14845,14 @@ type GetProjectResponse = {
|
|
|
13948
14845
|
};
|
|
13949
14846
|
hasActiveBranches?: boolean;
|
|
13950
14847
|
trustedIps?: {
|
|
13951
|
-
deploymentType: '
|
|
14848
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
13952
14849
|
addresses: {
|
|
13953
14850
|
value: string;
|
|
13954
14851
|
note?: string;
|
|
13955
14852
|
}[];
|
|
13956
14853
|
protectionMode: 'additional' | 'exclusive';
|
|
13957
14854
|
} | {
|
|
13958
|
-
deploymentType: '
|
|
14855
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
13959
14856
|
} | null;
|
|
13960
14857
|
gitComments?: {
|
|
13961
14858
|
/**
|
|
@@ -14259,7 +15156,76 @@ type UpdateProjectResponse = {
|
|
|
14259
15156
|
comment?: string;
|
|
14260
15157
|
customEnvironmentIds?: string[];
|
|
14261
15158
|
}[];
|
|
14262
|
-
customEnvironments?:
|
|
15159
|
+
customEnvironments?: {
|
|
15160
|
+
/**
|
|
15161
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
15162
|
+
*/
|
|
15163
|
+
id: string;
|
|
15164
|
+
/**
|
|
15165
|
+
* URL-friendly name of the environment
|
|
15166
|
+
*/
|
|
15167
|
+
slug: string;
|
|
15168
|
+
/**
|
|
15169
|
+
* The type of environment (production, preview, or development)
|
|
15170
|
+
*/
|
|
15171
|
+
type: 'development' | 'preview' | 'production';
|
|
15172
|
+
/**
|
|
15173
|
+
* Optional description of the environment's purpose
|
|
15174
|
+
*/
|
|
15175
|
+
description?: string;
|
|
15176
|
+
/**
|
|
15177
|
+
* Configuration for matching git branches to this environment
|
|
15178
|
+
*/
|
|
15179
|
+
branchMatcher?: {
|
|
15180
|
+
/**
|
|
15181
|
+
* The type of matching to perform
|
|
15182
|
+
*/
|
|
15183
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
15184
|
+
/**
|
|
15185
|
+
* The pattern to match against branch names
|
|
15186
|
+
*/
|
|
15187
|
+
pattern: string;
|
|
15188
|
+
};
|
|
15189
|
+
/**
|
|
15190
|
+
* List of domains associated with this environment
|
|
15191
|
+
*/
|
|
15192
|
+
domains?: {
|
|
15193
|
+
name: string;
|
|
15194
|
+
apexName: string;
|
|
15195
|
+
projectId: string;
|
|
15196
|
+
redirect?: string | null;
|
|
15197
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
15198
|
+
gitBranch?: string | null;
|
|
15199
|
+
customEnvironmentId?: string | null;
|
|
15200
|
+
updatedAt?: number;
|
|
15201
|
+
createdAt?: number;
|
|
15202
|
+
/**
|
|
15203
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
15204
|
+
*/
|
|
15205
|
+
verified: boolean;
|
|
15206
|
+
/**
|
|
15207
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
15208
|
+
*/
|
|
15209
|
+
verification?: {
|
|
15210
|
+
type: string;
|
|
15211
|
+
domain: string;
|
|
15212
|
+
value: string;
|
|
15213
|
+
reason: string;
|
|
15214
|
+
}[];
|
|
15215
|
+
}[];
|
|
15216
|
+
/**
|
|
15217
|
+
* List of aliases for the current deployment
|
|
15218
|
+
*/
|
|
15219
|
+
currentDeploymentAliases?: string[];
|
|
15220
|
+
/**
|
|
15221
|
+
* Timestamp when the environment was created
|
|
15222
|
+
*/
|
|
15223
|
+
createdAt: number;
|
|
15224
|
+
/**
|
|
15225
|
+
* Timestamp when the environment was last updated
|
|
15226
|
+
*/
|
|
15227
|
+
updatedAt: number;
|
|
15228
|
+
}[];
|
|
14263
15229
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
14264
15230
|
gitForkProtection?: boolean;
|
|
14265
15231
|
gitLFS?: boolean;
|
|
@@ -14481,13 +15447,13 @@ type UpdateProjectResponse = {
|
|
|
14481
15447
|
productionDeploymentsFastLane?: boolean;
|
|
14482
15448
|
publicSource?: boolean | null;
|
|
14483
15449
|
resourceConfig: {
|
|
14484
|
-
buildMachineType?: 'enhanced';
|
|
14485
15450
|
fluid?: boolean;
|
|
14486
15451
|
functionDefaultRegions: string[];
|
|
14487
15452
|
functionDefaultTimeout?: number;
|
|
14488
15453
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14489
15454
|
functionZeroConfigFailover?: boolean;
|
|
14490
15455
|
elasticConcurrencyEnabled?: boolean;
|
|
15456
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
14491
15457
|
};
|
|
14492
15458
|
rollingRelease?: {
|
|
14493
15459
|
/**
|
|
@@ -14514,16 +15480,20 @@ type UpdateProjectResponse = {
|
|
|
14514
15480
|
* Whether or not this stage requires approval to proceed.
|
|
14515
15481
|
*/
|
|
14516
15482
|
requireApproval?: boolean;
|
|
15483
|
+
/**
|
|
15484
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
15485
|
+
*/
|
|
15486
|
+
duration?: number;
|
|
14517
15487
|
}[] | null;
|
|
14518
15488
|
} | null;
|
|
14519
15489
|
defaultResourceConfig: {
|
|
14520
|
-
buildMachineType?: 'enhanced';
|
|
14521
15490
|
fluid?: boolean;
|
|
14522
15491
|
functionDefaultRegions: string[];
|
|
14523
15492
|
functionDefaultTimeout?: number;
|
|
14524
15493
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14525
15494
|
functionZeroConfigFailover?: boolean;
|
|
14526
15495
|
elasticConcurrencyEnabled?: boolean;
|
|
15496
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
14527
15497
|
};
|
|
14528
15498
|
rootDirectory?: string | null;
|
|
14529
15499
|
serverlessFunctionRegion?: string | null;
|
|
@@ -14708,6 +15678,7 @@ type UpdateProjectResponse = {
|
|
|
14708
15678
|
observabilityConfiguration?: ACLAction[];
|
|
14709
15679
|
observabilityNotebook?: ACLAction[];
|
|
14710
15680
|
openTelemetryEndpoint?: ACLAction[];
|
|
15681
|
+
vercelAppInstallation?: ACLAction[];
|
|
14711
15682
|
paymentMethod?: ACLAction[];
|
|
14712
15683
|
permissions?: ACLAction[];
|
|
14713
15684
|
postgres?: ACLAction[];
|
|
@@ -14823,12 +15794,21 @@ type UpdateProjectResponse = {
|
|
|
14823
15794
|
lastAliasRequest?: {
|
|
14824
15795
|
fromDeploymentId: string;
|
|
14825
15796
|
toDeploymentId: string;
|
|
15797
|
+
/**
|
|
15798
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
15799
|
+
*/
|
|
15800
|
+
fromRollingReleaseId?: string;
|
|
14826
15801
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
14827
15802
|
requestedAt: number;
|
|
14828
15803
|
type: 'promote' | 'rollback';
|
|
14829
15804
|
} | null;
|
|
14830
15805
|
protectionBypass?: {
|
|
14831
15806
|
[key: string]: {
|
|
15807
|
+
createdAt: number;
|
|
15808
|
+
createdBy: string;
|
|
15809
|
+
scope: 'integration-automation-bypass';
|
|
15810
|
+
integrationId: string;
|
|
15811
|
+
} | {
|
|
14832
15812
|
createdAt: number;
|
|
14833
15813
|
createdBy: string;
|
|
14834
15814
|
scope: 'automation-bypass';
|
|
@@ -14836,14 +15816,14 @@ type UpdateProjectResponse = {
|
|
|
14836
15816
|
};
|
|
14837
15817
|
hasActiveBranches?: boolean;
|
|
14838
15818
|
trustedIps?: {
|
|
14839
|
-
deploymentType: '
|
|
15819
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
14840
15820
|
addresses: {
|
|
14841
15821
|
value: string;
|
|
14842
15822
|
note?: string;
|
|
14843
15823
|
}[];
|
|
14844
|
-
protectionMode: '
|
|
15824
|
+
protectionMode: 'additional' | 'exclusive';
|
|
14845
15825
|
} | {
|
|
14846
|
-
deploymentType: '
|
|
15826
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
14847
15827
|
} | null;
|
|
14848
15828
|
gitComments?: {
|
|
14849
15829
|
/**
|
|
@@ -15025,6 +16005,31 @@ type UpdateProjectRequestBody = {
|
|
|
15025
16005
|
* Specifies whether the source code and logs of the deployments for this project should be public or not
|
|
15026
16006
|
*/
|
|
15027
16007
|
publicSource?: boolean | null;
|
|
16008
|
+
/**
|
|
16009
|
+
* Specifies resource override configuration for the project
|
|
16010
|
+
*/
|
|
16011
|
+
resourceConfig?: {
|
|
16012
|
+
buildMachineType?: 'enhanced' | any | 'ultra';
|
|
16013
|
+
fluid?: boolean;
|
|
16014
|
+
/**
|
|
16015
|
+
* The regions to deploy Vercel Functions to for this project
|
|
16016
|
+
*
|
|
16017
|
+
* @minItems 1
|
|
16018
|
+
* @uniqueItems true
|
|
16019
|
+
*/
|
|
16020
|
+
functionDefaultRegions?: string[];
|
|
16021
|
+
/**
|
|
16022
|
+
* @maximum 900
|
|
16023
|
+
* @minimum 1
|
|
16024
|
+
*/
|
|
16025
|
+
functionDefaultTimeout?: number;
|
|
16026
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
16027
|
+
/**
|
|
16028
|
+
* Specifies whether Zero Config Failover is enabled for this project.
|
|
16029
|
+
*/
|
|
16030
|
+
functionZeroConfigFailover?: boolean;
|
|
16031
|
+
elasticConcurrencyEnabled?: boolean;
|
|
16032
|
+
};
|
|
15028
16033
|
/**
|
|
15029
16034
|
* The name of a directory or relative path to the source code of your project. When `null` is used it will default to the project root
|
|
15030
16035
|
*
|
|
@@ -15163,6 +16168,29 @@ type UpdateProjectRequestBody = {
|
|
|
15163
16168
|
value: string;
|
|
15164
16169
|
}[];
|
|
15165
16170
|
} | null;
|
|
16171
|
+
/**
|
|
16172
|
+
* The list of connections from project environment to Secure Compute network
|
|
16173
|
+
*
|
|
16174
|
+
* @minItems 1
|
|
16175
|
+
*/
|
|
16176
|
+
connectConfigurations?: {
|
|
16177
|
+
/**
|
|
16178
|
+
* The ID of the environment
|
|
16179
|
+
*/
|
|
16180
|
+
envId: string;
|
|
16181
|
+
/**
|
|
16182
|
+
* The ID of the Secure Compute network
|
|
16183
|
+
*/
|
|
16184
|
+
connectConfigurationId: string;
|
|
16185
|
+
/**
|
|
16186
|
+
* Whether the configuration should be passive, meaning builds will not run there and only passive Serverless Functions will be deployed
|
|
16187
|
+
*/
|
|
16188
|
+
passive: boolean;
|
|
16189
|
+
/**
|
|
16190
|
+
* Flag saying if project builds should use Secure Compute
|
|
16191
|
+
*/
|
|
16192
|
+
buildsEnabled: boolean;
|
|
16193
|
+
}[] | null;
|
|
15166
16194
|
};
|
|
15167
16195
|
type UpdateProjectVariables = {
|
|
15168
16196
|
body?: UpdateProjectRequestBody;
|
|
@@ -15217,6 +16245,76 @@ type CreateCustomEnvironmentQueryParams = {
|
|
|
15217
16245
|
slug?: string;
|
|
15218
16246
|
};
|
|
15219
16247
|
type CreateCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16248
|
+
type CreateCustomEnvironmentResponse = {
|
|
16249
|
+
/**
|
|
16250
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16251
|
+
*/
|
|
16252
|
+
id: string;
|
|
16253
|
+
/**
|
|
16254
|
+
* URL-friendly name of the environment
|
|
16255
|
+
*/
|
|
16256
|
+
slug: string;
|
|
16257
|
+
/**
|
|
16258
|
+
* The type of environment (production, preview, or development)
|
|
16259
|
+
*/
|
|
16260
|
+
type: 'development' | 'preview' | 'production';
|
|
16261
|
+
/**
|
|
16262
|
+
* Optional description of the environment's purpose
|
|
16263
|
+
*/
|
|
16264
|
+
description?: string;
|
|
16265
|
+
/**
|
|
16266
|
+
* Configuration for matching git branches to this environment
|
|
16267
|
+
*/
|
|
16268
|
+
branchMatcher?: {
|
|
16269
|
+
/**
|
|
16270
|
+
* The type of matching to perform
|
|
16271
|
+
*/
|
|
16272
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16273
|
+
/**
|
|
16274
|
+
* The pattern to match against branch names
|
|
16275
|
+
*/
|
|
16276
|
+
pattern: string;
|
|
16277
|
+
};
|
|
16278
|
+
/**
|
|
16279
|
+
* List of domains associated with this environment
|
|
16280
|
+
*/
|
|
16281
|
+
domains?: {
|
|
16282
|
+
name: string;
|
|
16283
|
+
apexName: string;
|
|
16284
|
+
projectId: string;
|
|
16285
|
+
redirect?: string | null;
|
|
16286
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16287
|
+
gitBranch?: string | null;
|
|
16288
|
+
customEnvironmentId?: string | null;
|
|
16289
|
+
updatedAt?: number;
|
|
16290
|
+
createdAt?: number;
|
|
16291
|
+
/**
|
|
16292
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
16293
|
+
*/
|
|
16294
|
+
verified: boolean;
|
|
16295
|
+
/**
|
|
16296
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
16297
|
+
*/
|
|
16298
|
+
verification?: {
|
|
16299
|
+
type: string;
|
|
16300
|
+
domain: string;
|
|
16301
|
+
value: string;
|
|
16302
|
+
reason: string;
|
|
16303
|
+
}[];
|
|
16304
|
+
}[];
|
|
16305
|
+
/**
|
|
16306
|
+
* List of aliases for the current deployment
|
|
16307
|
+
*/
|
|
16308
|
+
currentDeploymentAliases?: string[];
|
|
16309
|
+
/**
|
|
16310
|
+
* Timestamp when the environment was created
|
|
16311
|
+
*/
|
|
16312
|
+
createdAt: number;
|
|
16313
|
+
/**
|
|
16314
|
+
* Timestamp when the environment was last updated
|
|
16315
|
+
*/
|
|
16316
|
+
updatedAt: number;
|
|
16317
|
+
};
|
|
15220
16318
|
type CreateCustomEnvironmentRequestBody = {
|
|
15221
16319
|
/**
|
|
15222
16320
|
* The slug of the custom environment to create.
|
|
@@ -15258,7 +16356,7 @@ type CreateCustomEnvironmentVariables = {
|
|
|
15258
16356
|
/**
|
|
15259
16357
|
* Creates a custom environment for the current project. Cannot be named 'Production' or 'Preview'.
|
|
15260
16358
|
*/
|
|
15261
|
-
declare const createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16359
|
+
declare const createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
15262
16360
|
type GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = {
|
|
15263
16361
|
/**
|
|
15264
16362
|
* The unique project identifier or the project name
|
|
@@ -15287,7 +16385,76 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsResponse = {
|
|
|
15287
16385
|
accountLimit: {
|
|
15288
16386
|
total: number;
|
|
15289
16387
|
};
|
|
15290
|
-
environments:
|
|
16388
|
+
environments: {
|
|
16389
|
+
/**
|
|
16390
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16391
|
+
*/
|
|
16392
|
+
id: string;
|
|
16393
|
+
/**
|
|
16394
|
+
* URL-friendly name of the environment
|
|
16395
|
+
*/
|
|
16396
|
+
slug: string;
|
|
16397
|
+
/**
|
|
16398
|
+
* The type of environment (production, preview, or development)
|
|
16399
|
+
*/
|
|
16400
|
+
type: 'development' | 'preview' | 'production';
|
|
16401
|
+
/**
|
|
16402
|
+
* Optional description of the environment's purpose
|
|
16403
|
+
*/
|
|
16404
|
+
description?: string;
|
|
16405
|
+
/**
|
|
16406
|
+
* Configuration for matching git branches to this environment
|
|
16407
|
+
*/
|
|
16408
|
+
branchMatcher?: {
|
|
16409
|
+
/**
|
|
16410
|
+
* The type of matching to perform
|
|
16411
|
+
*/
|
|
16412
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16413
|
+
/**
|
|
16414
|
+
* The pattern to match against branch names
|
|
16415
|
+
*/
|
|
16416
|
+
pattern: string;
|
|
16417
|
+
};
|
|
16418
|
+
/**
|
|
16419
|
+
* List of domains associated with this environment
|
|
16420
|
+
*/
|
|
16421
|
+
domains?: {
|
|
16422
|
+
name: string;
|
|
16423
|
+
apexName: string;
|
|
16424
|
+
projectId: string;
|
|
16425
|
+
redirect?: string | null;
|
|
16426
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16427
|
+
gitBranch?: string | null;
|
|
16428
|
+
customEnvironmentId?: string | null;
|
|
16429
|
+
updatedAt?: number;
|
|
16430
|
+
createdAt?: number;
|
|
16431
|
+
/**
|
|
16432
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
16433
|
+
*/
|
|
16434
|
+
verified: boolean;
|
|
16435
|
+
/**
|
|
16436
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
16437
|
+
*/
|
|
16438
|
+
verification?: {
|
|
16439
|
+
type: string;
|
|
16440
|
+
domain: string;
|
|
16441
|
+
value: string;
|
|
16442
|
+
reason: string;
|
|
16443
|
+
}[];
|
|
16444
|
+
}[];
|
|
16445
|
+
/**
|
|
16446
|
+
* List of aliases for the current deployment
|
|
16447
|
+
*/
|
|
16448
|
+
currentDeploymentAliases?: string[];
|
|
16449
|
+
/**
|
|
16450
|
+
* Timestamp when the environment was created
|
|
16451
|
+
*/
|
|
16452
|
+
createdAt: number;
|
|
16453
|
+
/**
|
|
16454
|
+
* Timestamp when the environment was last updated
|
|
16455
|
+
*/
|
|
16456
|
+
updatedAt: number;
|
|
16457
|
+
}[];
|
|
15291
16458
|
};
|
|
15292
16459
|
type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
|
|
15293
16460
|
pathParams: GetV9ProjectsIdOrNameCustomEnvironmentsPathParams;
|
|
@@ -15303,21 +16470,91 @@ type GetCustomEnvironmentPathParams = {
|
|
|
15303
16470
|
*/
|
|
15304
16471
|
idOrName: string;
|
|
15305
16472
|
/**
|
|
15306
|
-
* The unique custom environment identifier within the project
|
|
16473
|
+
* The unique custom environment identifier within the project
|
|
16474
|
+
*/
|
|
16475
|
+
environmentSlugOrId: string;
|
|
16476
|
+
};
|
|
16477
|
+
type GetCustomEnvironmentQueryParams = {
|
|
16478
|
+
/**
|
|
16479
|
+
* The Team identifier to perform the request on behalf of.
|
|
16480
|
+
*/
|
|
16481
|
+
teamId?: string;
|
|
16482
|
+
/**
|
|
16483
|
+
* The Team slug to perform the request on behalf of.
|
|
16484
|
+
*/
|
|
16485
|
+
slug?: string;
|
|
16486
|
+
};
|
|
16487
|
+
type GetCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16488
|
+
type GetCustomEnvironmentResponse = {
|
|
16489
|
+
/**
|
|
16490
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16491
|
+
*/
|
|
16492
|
+
id: string;
|
|
16493
|
+
/**
|
|
16494
|
+
* URL-friendly name of the environment
|
|
16495
|
+
*/
|
|
16496
|
+
slug: string;
|
|
16497
|
+
/**
|
|
16498
|
+
* The type of environment (production, preview, or development)
|
|
16499
|
+
*/
|
|
16500
|
+
type: 'development' | 'preview' | 'production';
|
|
16501
|
+
/**
|
|
16502
|
+
* Optional description of the environment's purpose
|
|
16503
|
+
*/
|
|
16504
|
+
description?: string;
|
|
16505
|
+
/**
|
|
16506
|
+
* Configuration for matching git branches to this environment
|
|
16507
|
+
*/
|
|
16508
|
+
branchMatcher?: {
|
|
16509
|
+
/**
|
|
16510
|
+
* The type of matching to perform
|
|
16511
|
+
*/
|
|
16512
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16513
|
+
/**
|
|
16514
|
+
* The pattern to match against branch names
|
|
16515
|
+
*/
|
|
16516
|
+
pattern: string;
|
|
16517
|
+
};
|
|
16518
|
+
/**
|
|
16519
|
+
* List of domains associated with this environment
|
|
16520
|
+
*/
|
|
16521
|
+
domains?: {
|
|
16522
|
+
name: string;
|
|
16523
|
+
apexName: string;
|
|
16524
|
+
projectId: string;
|
|
16525
|
+
redirect?: string | null;
|
|
16526
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16527
|
+
gitBranch?: string | null;
|
|
16528
|
+
customEnvironmentId?: string | null;
|
|
16529
|
+
updatedAt?: number;
|
|
16530
|
+
createdAt?: number;
|
|
16531
|
+
/**
|
|
16532
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
16533
|
+
*/
|
|
16534
|
+
verified: boolean;
|
|
16535
|
+
/**
|
|
16536
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
16537
|
+
*/
|
|
16538
|
+
verification?: {
|
|
16539
|
+
type: string;
|
|
16540
|
+
domain: string;
|
|
16541
|
+
value: string;
|
|
16542
|
+
reason: string;
|
|
16543
|
+
}[];
|
|
16544
|
+
}[];
|
|
16545
|
+
/**
|
|
16546
|
+
* List of aliases for the current deployment
|
|
15307
16547
|
*/
|
|
15308
|
-
|
|
15309
|
-
};
|
|
15310
|
-
type GetCustomEnvironmentQueryParams = {
|
|
16548
|
+
currentDeploymentAliases?: string[];
|
|
15311
16549
|
/**
|
|
15312
|
-
*
|
|
16550
|
+
* Timestamp when the environment was created
|
|
15313
16551
|
*/
|
|
15314
|
-
|
|
16552
|
+
createdAt: number;
|
|
15315
16553
|
/**
|
|
15316
|
-
*
|
|
16554
|
+
* Timestamp when the environment was last updated
|
|
15317
16555
|
*/
|
|
15318
|
-
|
|
16556
|
+
updatedAt: number;
|
|
15319
16557
|
};
|
|
15320
|
-
type GetCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
15321
16558
|
type GetCustomEnvironmentVariables = {
|
|
15322
16559
|
pathParams: GetCustomEnvironmentPathParams;
|
|
15323
16560
|
queryParams?: GetCustomEnvironmentQueryParams;
|
|
@@ -15325,7 +16562,7 @@ type GetCustomEnvironmentVariables = {
|
|
|
15325
16562
|
/**
|
|
15326
16563
|
* Retrieve a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
15327
16564
|
*/
|
|
15328
|
-
declare const getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16565
|
+
declare const getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
15329
16566
|
type UpdateCustomEnvironmentPathParams = {
|
|
15330
16567
|
/**
|
|
15331
16568
|
* The unique project identifier or the project name
|
|
@@ -15347,6 +16584,76 @@ type UpdateCustomEnvironmentQueryParams = {
|
|
|
15347
16584
|
slug?: string;
|
|
15348
16585
|
};
|
|
15349
16586
|
type UpdateCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16587
|
+
type UpdateCustomEnvironmentResponse = {
|
|
16588
|
+
/**
|
|
16589
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16590
|
+
*/
|
|
16591
|
+
id: string;
|
|
16592
|
+
/**
|
|
16593
|
+
* URL-friendly name of the environment
|
|
16594
|
+
*/
|
|
16595
|
+
slug: string;
|
|
16596
|
+
/**
|
|
16597
|
+
* The type of environment (production, preview, or development)
|
|
16598
|
+
*/
|
|
16599
|
+
type: 'development' | 'preview' | 'production';
|
|
16600
|
+
/**
|
|
16601
|
+
* Optional description of the environment's purpose
|
|
16602
|
+
*/
|
|
16603
|
+
description?: string;
|
|
16604
|
+
/**
|
|
16605
|
+
* Configuration for matching git branches to this environment
|
|
16606
|
+
*/
|
|
16607
|
+
branchMatcher?: {
|
|
16608
|
+
/**
|
|
16609
|
+
* The type of matching to perform
|
|
16610
|
+
*/
|
|
16611
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16612
|
+
/**
|
|
16613
|
+
* The pattern to match against branch names
|
|
16614
|
+
*/
|
|
16615
|
+
pattern: string;
|
|
16616
|
+
};
|
|
16617
|
+
/**
|
|
16618
|
+
* List of domains associated with this environment
|
|
16619
|
+
*/
|
|
16620
|
+
domains?: {
|
|
16621
|
+
name: string;
|
|
16622
|
+
apexName: string;
|
|
16623
|
+
projectId: string;
|
|
16624
|
+
redirect?: string | null;
|
|
16625
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16626
|
+
gitBranch?: string | null;
|
|
16627
|
+
customEnvironmentId?: string | null;
|
|
16628
|
+
updatedAt?: number;
|
|
16629
|
+
createdAt?: number;
|
|
16630
|
+
/**
|
|
16631
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
16632
|
+
*/
|
|
16633
|
+
verified: boolean;
|
|
16634
|
+
/**
|
|
16635
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
16636
|
+
*/
|
|
16637
|
+
verification?: {
|
|
16638
|
+
type: string;
|
|
16639
|
+
domain: string;
|
|
16640
|
+
value: string;
|
|
16641
|
+
reason: string;
|
|
16642
|
+
}[];
|
|
16643
|
+
}[];
|
|
16644
|
+
/**
|
|
16645
|
+
* List of aliases for the current deployment
|
|
16646
|
+
*/
|
|
16647
|
+
currentDeploymentAliases?: string[];
|
|
16648
|
+
/**
|
|
16649
|
+
* Timestamp when the environment was created
|
|
16650
|
+
*/
|
|
16651
|
+
createdAt: number;
|
|
16652
|
+
/**
|
|
16653
|
+
* Timestamp when the environment was last updated
|
|
16654
|
+
*/
|
|
16655
|
+
updatedAt: number;
|
|
16656
|
+
};
|
|
15350
16657
|
type UpdateCustomEnvironmentRequestBody = {
|
|
15351
16658
|
/**
|
|
15352
16659
|
* The slug of the custom environment.
|
|
@@ -15384,7 +16691,7 @@ type UpdateCustomEnvironmentVariables = {
|
|
|
15384
16691
|
/**
|
|
15385
16692
|
* Update a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
15386
16693
|
*/
|
|
15387
|
-
declare const updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16694
|
+
declare const updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
15388
16695
|
type RemoveCustomEnvironmentPathParams = {
|
|
15389
16696
|
/**
|
|
15390
16697
|
* The unique project identifier or the project name
|
|
@@ -15406,6 +16713,76 @@ type RemoveCustomEnvironmentQueryParams = {
|
|
|
15406
16713
|
slug?: string;
|
|
15407
16714
|
};
|
|
15408
16715
|
type RemoveCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16716
|
+
type RemoveCustomEnvironmentResponse = {
|
|
16717
|
+
/**
|
|
16718
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16719
|
+
*/
|
|
16720
|
+
id: string;
|
|
16721
|
+
/**
|
|
16722
|
+
* URL-friendly name of the environment
|
|
16723
|
+
*/
|
|
16724
|
+
slug: string;
|
|
16725
|
+
/**
|
|
16726
|
+
* The type of environment (production, preview, or development)
|
|
16727
|
+
*/
|
|
16728
|
+
type: 'development' | 'preview' | 'production';
|
|
16729
|
+
/**
|
|
16730
|
+
* Optional description of the environment's purpose
|
|
16731
|
+
*/
|
|
16732
|
+
description?: string;
|
|
16733
|
+
/**
|
|
16734
|
+
* Configuration for matching git branches to this environment
|
|
16735
|
+
*/
|
|
16736
|
+
branchMatcher?: {
|
|
16737
|
+
/**
|
|
16738
|
+
* The type of matching to perform
|
|
16739
|
+
*/
|
|
16740
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16741
|
+
/**
|
|
16742
|
+
* The pattern to match against branch names
|
|
16743
|
+
*/
|
|
16744
|
+
pattern: string;
|
|
16745
|
+
};
|
|
16746
|
+
/**
|
|
16747
|
+
* List of domains associated with this environment
|
|
16748
|
+
*/
|
|
16749
|
+
domains?: {
|
|
16750
|
+
name: string;
|
|
16751
|
+
apexName: string;
|
|
16752
|
+
projectId: string;
|
|
16753
|
+
redirect?: string | null;
|
|
16754
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16755
|
+
gitBranch?: string | null;
|
|
16756
|
+
customEnvironmentId?: string | null;
|
|
16757
|
+
updatedAt?: number;
|
|
16758
|
+
createdAt?: number;
|
|
16759
|
+
/**
|
|
16760
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
16761
|
+
*/
|
|
16762
|
+
verified: boolean;
|
|
16763
|
+
/**
|
|
16764
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
16765
|
+
*/
|
|
16766
|
+
verification?: {
|
|
16767
|
+
type: string;
|
|
16768
|
+
domain: string;
|
|
16769
|
+
value: string;
|
|
16770
|
+
reason: string;
|
|
16771
|
+
}[];
|
|
16772
|
+
}[];
|
|
16773
|
+
/**
|
|
16774
|
+
* List of aliases for the current deployment
|
|
16775
|
+
*/
|
|
16776
|
+
currentDeploymentAliases?: string[];
|
|
16777
|
+
/**
|
|
16778
|
+
* Timestamp when the environment was created
|
|
16779
|
+
*/
|
|
16780
|
+
createdAt: number;
|
|
16781
|
+
/**
|
|
16782
|
+
* Timestamp when the environment was last updated
|
|
16783
|
+
*/
|
|
16784
|
+
updatedAt: number;
|
|
16785
|
+
};
|
|
15409
16786
|
type RemoveCustomEnvironmentRequestBody = {
|
|
15410
16787
|
/**
|
|
15411
16788
|
* Delete Environment Variables that are not assigned to any environments.
|
|
@@ -15420,7 +16797,7 @@ type RemoveCustomEnvironmentVariables = {
|
|
|
15420
16797
|
/**
|
|
15421
16798
|
* Remove a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
15422
16799
|
*/
|
|
15423
|
-
declare const removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16800
|
+
declare const removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
15424
16801
|
type GetProjectDomainsPathParams = {
|
|
15425
16802
|
/**
|
|
15426
16803
|
* The unique project identifier or the project name
|
|
@@ -17432,6 +18809,11 @@ type UpdateProjectProtectionBypassError = ErrorWrapper<undefined>;
|
|
|
17432
18809
|
type UpdateProjectProtectionBypassResponse = {
|
|
17433
18810
|
protectionBypass?: {
|
|
17434
18811
|
[key: string]: {
|
|
18812
|
+
createdAt: number;
|
|
18813
|
+
createdBy: string;
|
|
18814
|
+
scope: 'integration-automation-bypass';
|
|
18815
|
+
integrationId: string;
|
|
18816
|
+
} | {
|
|
17435
18817
|
createdAt: number;
|
|
17436
18818
|
createdBy: string;
|
|
17437
18819
|
scope: 'automation-bypass';
|
|
@@ -17457,7 +18839,7 @@ type UpdateProjectProtectionBypassRequestBody = {
|
|
|
17457
18839
|
*/
|
|
17458
18840
|
generate?: {
|
|
17459
18841
|
/**
|
|
17460
|
-
* Optional value of the secret to generate
|
|
18842
|
+
* Optional value of the secret to generate, don't send it for oauth2 tokens
|
|
17461
18843
|
*
|
|
17462
18844
|
* @pattern ^[a-zA-Z0-9]{32}$
|
|
17463
18845
|
*/
|
|
@@ -18258,36 +19640,36 @@ type GetBypassIpVariables = {
|
|
|
18258
19640
|
*/
|
|
18259
19641
|
declare const getBypassIp: (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
18260
19642
|
result: {
|
|
18261
|
-
OwnerId
|
|
18262
|
-
Id
|
|
18263
|
-
Domain
|
|
18264
|
-
Ip
|
|
19643
|
+
OwnerId?: string;
|
|
19644
|
+
Id?: string;
|
|
19645
|
+
Domain?: string;
|
|
19646
|
+
Ip?: string;
|
|
18265
19647
|
Action?: "block" | "bypass";
|
|
18266
19648
|
ProjectId?: string;
|
|
18267
19649
|
IsProjectRule?: boolean;
|
|
18268
19650
|
Note?: string;
|
|
18269
|
-
CreatedAt
|
|
19651
|
+
CreatedAt?: string;
|
|
18270
19652
|
ActorId?: string;
|
|
18271
|
-
UpdatedAt
|
|
18272
|
-
UpdatedAtHour
|
|
19653
|
+
UpdatedAt?: string;
|
|
19654
|
+
UpdatedAtHour?: string;
|
|
18273
19655
|
DeletedAt?: string;
|
|
18274
19656
|
ExpiresAt?: number | null;
|
|
18275
19657
|
}[];
|
|
18276
19658
|
pagination: void | null;
|
|
18277
19659
|
} | {
|
|
18278
19660
|
result?: {
|
|
18279
|
-
OwnerId
|
|
18280
|
-
Id
|
|
18281
|
-
Domain
|
|
18282
|
-
Ip
|
|
19661
|
+
OwnerId?: string;
|
|
19662
|
+
Id?: string;
|
|
19663
|
+
Domain?: string;
|
|
19664
|
+
Ip?: string;
|
|
18283
19665
|
Action?: "block" | "bypass";
|
|
18284
19666
|
ProjectId?: string;
|
|
18285
19667
|
IsProjectRule?: boolean;
|
|
18286
19668
|
Note?: string;
|
|
18287
|
-
CreatedAt
|
|
19669
|
+
CreatedAt?: string;
|
|
18288
19670
|
ActorId?: string;
|
|
18289
|
-
UpdatedAt
|
|
18290
|
-
UpdatedAtHour
|
|
19671
|
+
UpdatedAt?: string;
|
|
19672
|
+
UpdatedAtHour?: string;
|
|
18291
19673
|
DeletedAt?: string;
|
|
18292
19674
|
ExpiresAt?: number | null;
|
|
18293
19675
|
}[];
|
|
@@ -19011,7 +20393,7 @@ type GetTeamVariables = {
|
|
|
19011
20393
|
/**
|
|
19012
20394
|
* Get information for the Team specified by the `teamId` parameter.
|
|
19013
20395
|
*/
|
|
19014
|
-
declare const getTeam: (variables: GetTeamVariables, signal?: AbortSignal) => Promise<
|
|
20396
|
+
declare const getTeam: (variables: GetTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
19015
20397
|
type PatchTeamPathParams = {
|
|
19016
20398
|
/**
|
|
19017
20399
|
* The Team identifier to perform the request on behalf of.
|
|
@@ -19139,7 +20521,7 @@ type PatchTeamVariables = {
|
|
|
19139
20521
|
/**
|
|
19140
20522
|
* Update the information of a Team specified by the `teamId` parameter. The request body should contain the information that will be updated on the Team.
|
|
19141
20523
|
*/
|
|
19142
|
-
declare const patchTeam: (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<
|
|
20524
|
+
declare const patchTeam: (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
19143
20525
|
type GetTeamsQueryParams = {
|
|
19144
20526
|
/**
|
|
19145
20527
|
* Maximum number of Teams which may be returned.
|
|
@@ -19530,7 +20912,7 @@ type CreateWebhookResponse = {
|
|
|
19530
20912
|
*
|
|
19531
20913
|
* @example deployment.created
|
|
19532
20914
|
*/
|
|
19533
|
-
events: ('budget.reached' | 'budget.reset' | 'deployment' | 'deployment-canceled' | 'deployment-check-rerequested' | 'deployment-checks-completed' | 'deployment-error' | 'deployment-prepared' | 'deployment-ready' | 'deployment.canceled' | 'deployment.check-rerequested' | 'deployment.created' | 'deployment.error' | 'deployment.integration.action.cancel' | 'deployment.integration.action.cleanup' | 'deployment.integration.action.start' | 'deployment.promoted' | 'deployment.ready' | 'deployment.succeeded' | 'domain-created' | 'domain.created' | 'edge-config.created' | 'edge-config.deleted' | 'edge-config.items.updated' | 'firewall.attack' | 'integration-configuration-permission-updated' | 'integration-configuration-removed' | 'integration-configuration-scope-change-confirmed' | 'integration-configuration.permission-upgraded' | 'integration-configuration.removed' | 'integration-configuration.scope-change-confirmed' | 'integration-resource.project-connected' | 'integration-resource.project-disconnected' | 'marketplace.invoice.created' | 'marketplace.invoice.notpaid' | 'marketplace.invoice.paid' | 'marketplace.invoice.refunded' | 'observability.anomaly' | 'project-created' | 'project-removed' | 'project.created' | 'project.removed' | 'test-webhook')[];
|
|
20915
|
+
events: ('budget.reached' | 'budget.reset' | 'deployment' | 'deployment-canceled' | 'deployment-check-rerequested' | 'deployment-checks-completed' | 'deployment-error' | 'deployment-prepared' | 'deployment-ready' | 'deployment.canceled' | 'deployment.check-rerequested' | 'deployment.created' | 'deployment.error' | 'deployment.integration.action.cancel' | 'deployment.integration.action.cleanup' | 'deployment.integration.action.start' | 'deployment.promoted' | 'deployment.ready' | 'deployment.succeeded' | 'domain-created' | 'domain.created' | 'edge-config.created' | 'edge-config.deleted' | 'edge-config.items.updated' | 'firewall.attack' | 'integration-configuration-permission-updated' | 'integration-configuration-removed' | 'integration-configuration-scope-change-confirmed' | 'integration-configuration.permission-upgraded' | 'integration-configuration.removed' | 'integration-configuration.scope-change-confirmed' | 'integration-resource.project-connected' | 'integration-resource.project-disconnected' | 'marketplace.invoice.created' | 'marketplace.invoice.notpaid' | 'marketplace.invoice.paid' | 'marketplace.invoice.refunded' | 'observability.anomaly' | 'project-created' | 'project-removed' | 'project.created' | 'project.removed' | 'project.rolling-release.aborted' | 'project.rolling-release.approved' | 'project.rolling-release.completed' | 'project.rolling-release.started' | 'test-webhook')[];
|
|
19534
20916
|
/**
|
|
19535
20917
|
* The webhook id
|
|
19536
20918
|
*
|
|
@@ -19577,7 +20959,7 @@ type CreateWebhookRequestBody = {
|
|
|
19577
20959
|
/**
|
|
19578
20960
|
* @minItems 1
|
|
19579
20961
|
*/
|
|
19580
|
-
events: ('budget.reached' | 'budget.reset' | 'deployment' | 'deployment-canceled' | 'deployment-check-rerequested' | 'deployment-checks-completed' | 'deployment-error' | 'deployment-prepared' | 'deployment-ready' | 'deployment.canceled' | 'deployment.check-rerequested' | 'deployment.created' | 'deployment.error' | 'deployment.integration.action.cancel' | 'deployment.integration.action.cleanup' | 'deployment.integration.action.start' | 'deployment.promoted' | 'deployment.ready' | 'deployment.succeeded' | 'domain-created' | 'domain.created' | 'edge-config.created' | 'edge-config.deleted' | 'edge-config.items.updated' | 'firewall.attack' | 'integration-configuration-permission-updated' | 'integration-configuration-removed' | 'integration-configuration-scope-change-confirmed' | 'integration-configuration.permission-upgraded' | 'integration-configuration.removed' | 'integration-configuration.scope-change-confirmed' | 'integration-resource.project-connected' | 'integration-resource.project-disconnected' | 'marketplace.invoice.created' | 'marketplace.invoice.notpaid' | 'marketplace.invoice.paid' | 'marketplace.invoice.refunded' | 'observability.anomaly' | 'project-created' | 'project-removed' | 'project.created' | 'project.removed' | 'test-webhook')[];
|
|
20962
|
+
events: ('budget.reached' | 'budget.reset' | 'deployment' | 'deployment-canceled' | 'deployment-check-rerequested' | 'deployment-checks-completed' | 'deployment-error' | 'deployment-prepared' | 'deployment-ready' | 'deployment.canceled' | 'deployment.check-rerequested' | 'deployment.created' | 'deployment.error' | 'deployment.integration.action.cancel' | 'deployment.integration.action.cleanup' | 'deployment.integration.action.start' | 'deployment.promoted' | 'deployment.ready' | 'deployment.succeeded' | 'domain-created' | 'domain.created' | 'edge-config.created' | 'edge-config.deleted' | 'edge-config.items.updated' | 'firewall.attack' | 'integration-configuration-permission-updated' | 'integration-configuration-removed' | 'integration-configuration-scope-change-confirmed' | 'integration-configuration.permission-upgraded' | 'integration-configuration.removed' | 'integration-configuration.scope-change-confirmed' | 'integration-resource.project-connected' | 'integration-resource.project-disconnected' | 'marketplace.invoice.created' | 'marketplace.invoice.notpaid' | 'marketplace.invoice.paid' | 'marketplace.invoice.refunded' | 'observability.anomaly' | 'project-created' | 'project-removed' | 'project.created' | 'project.removed' | 'project.rolling-release.aborted' | 'project.rolling-release.approved' | 'project.rolling-release.completed' | 'project.rolling-release.started' | 'test-webhook')[];
|
|
19581
20963
|
/**
|
|
19582
20964
|
* @minItems 1
|
|
19583
20965
|
* @maxItems 50
|
|
@@ -19625,7 +21007,7 @@ declare const getWebhooks: (variables: GetWebhooksVariables, signal?: AbortSigna
|
|
|
19625
21007
|
*
|
|
19626
21008
|
* @example deployment.created
|
|
19627
21009
|
*/
|
|
19628
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
21010
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
19629
21011
|
/**
|
|
19630
21012
|
* The webhook id
|
|
19631
21013
|
*
|
|
@@ -19668,7 +21050,7 @@ declare const getWebhooks: (variables: GetWebhooksVariables, signal?: AbortSigna
|
|
|
19668
21050
|
*
|
|
19669
21051
|
* @example deployment.created
|
|
19670
21052
|
*/
|
|
19671
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
21053
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
19672
21054
|
/**
|
|
19673
21055
|
* The webhook id
|
|
19674
21056
|
*
|
|
@@ -19726,7 +21108,7 @@ type GetWebhookResponse = {
|
|
|
19726
21108
|
*
|
|
19727
21109
|
* @example deployment.created
|
|
19728
21110
|
*/
|
|
19729
|
-
events: ('budget.reached' | 'budget.reset' | 'deployment' | 'deployment-canceled' | 'deployment-check-rerequested' | 'deployment-checks-completed' | 'deployment-error' | 'deployment-prepared' | 'deployment-ready' | 'deployment.canceled' | 'deployment.check-rerequested' | 'deployment.created' | 'deployment.error' | 'deployment.integration.action.cancel' | 'deployment.integration.action.cleanup' | 'deployment.integration.action.start' | 'deployment.promoted' | 'deployment.ready' | 'deployment.succeeded' | 'domain-created' | 'domain.created' | 'edge-config.created' | 'edge-config.deleted' | 'edge-config.items.updated' | 'firewall.attack' | 'integration-configuration-permission-updated' | 'integration-configuration-removed' | 'integration-configuration-scope-change-confirmed' | 'integration-configuration.permission-upgraded' | 'integration-configuration.removed' | 'integration-configuration.scope-change-confirmed' | 'integration-resource.project-connected' | 'integration-resource.project-disconnected' | 'marketplace.invoice.created' | 'marketplace.invoice.notpaid' | 'marketplace.invoice.paid' | 'marketplace.invoice.refunded' | 'observability.anomaly' | 'project-created' | 'project-removed' | 'project.created' | 'project.removed' | 'test-webhook')[];
|
|
21111
|
+
events: ('budget.reached' | 'budget.reset' | 'deployment' | 'deployment-canceled' | 'deployment-check-rerequested' | 'deployment-checks-completed' | 'deployment-error' | 'deployment-prepared' | 'deployment-ready' | 'deployment.canceled' | 'deployment.check-rerequested' | 'deployment.created' | 'deployment.error' | 'deployment.integration.action.cancel' | 'deployment.integration.action.cleanup' | 'deployment.integration.action.start' | 'deployment.promoted' | 'deployment.ready' | 'deployment.succeeded' | 'domain-created' | 'domain.created' | 'edge-config.created' | 'edge-config.deleted' | 'edge-config.items.updated' | 'firewall.attack' | 'integration-configuration-permission-updated' | 'integration-configuration-removed' | 'integration-configuration-scope-change-confirmed' | 'integration-configuration.permission-upgraded' | 'integration-configuration.removed' | 'integration-configuration.scope-change-confirmed' | 'integration-resource.project-connected' | 'integration-resource.project-disconnected' | 'marketplace.invoice.created' | 'marketplace.invoice.notpaid' | 'marketplace.invoice.paid' | 'marketplace.invoice.refunded' | 'observability.anomaly' | 'project-created' | 'project-removed' | 'project.created' | 'project.removed' | 'project.rolling-release.aborted' | 'project.rolling-release.approved' | 'project.rolling-release.completed' | 'project.rolling-release.started' | 'test-webhook')[];
|
|
19730
21112
|
/**
|
|
19731
21113
|
* The webhook id
|
|
19732
21114
|
*
|
|
@@ -20348,6 +21730,89 @@ type DeleteAliasVariables = {
|
|
|
20348
21730
|
* Delete an Alias with the specified ID.
|
|
20349
21731
|
*/
|
|
20350
21732
|
declare const deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
21733
|
+
type PatchUrlProtectionBypassPathParams = {
|
|
21734
|
+
/**
|
|
21735
|
+
* The alias or deployment ID
|
|
21736
|
+
*/
|
|
21737
|
+
id: string;
|
|
21738
|
+
};
|
|
21739
|
+
type PatchUrlProtectionBypassQueryParams = {
|
|
21740
|
+
/**
|
|
21741
|
+
* The Team identifier to perform the request on behalf of.
|
|
21742
|
+
*/
|
|
21743
|
+
teamId?: string;
|
|
21744
|
+
/**
|
|
21745
|
+
* The Team slug to perform the request on behalf of.
|
|
21746
|
+
*/
|
|
21747
|
+
slug?: string;
|
|
21748
|
+
};
|
|
21749
|
+
type PatchUrlProtectionBypassError = ErrorWrapper<undefined>;
|
|
21750
|
+
type PatchUrlProtectionBypassResponse = {
|
|
21751
|
+
[key: string]: any;
|
|
21752
|
+
};
|
|
21753
|
+
type PatchUrlProtectionBypassVariables = {
|
|
21754
|
+
body?: {
|
|
21755
|
+
/**
|
|
21756
|
+
* Optional instructions for revoking and regenerating a shareable link
|
|
21757
|
+
*/
|
|
21758
|
+
revoke?: {
|
|
21759
|
+
/**
|
|
21760
|
+
* Sharebale link to revoked
|
|
21761
|
+
*/
|
|
21762
|
+
secret: string;
|
|
21763
|
+
/**
|
|
21764
|
+
* Whether or not a new shareable link should be created after the provided secret is revoked
|
|
21765
|
+
*/
|
|
21766
|
+
regenerate: boolean;
|
|
21767
|
+
};
|
|
21768
|
+
} | {
|
|
21769
|
+
/**
|
|
21770
|
+
* Instructions for creating a user scoped protection bypass
|
|
21771
|
+
*/
|
|
21772
|
+
scope: {
|
|
21773
|
+
/**
|
|
21774
|
+
* Specified user id for the scoped bypass.
|
|
21775
|
+
*/
|
|
21776
|
+
userId: string;
|
|
21777
|
+
/**
|
|
21778
|
+
* Specified email for the scoped bypass.
|
|
21779
|
+
*
|
|
21780
|
+
* @format email
|
|
21781
|
+
*/
|
|
21782
|
+
email?: string;
|
|
21783
|
+
/**
|
|
21784
|
+
* Invitation status for the user scoped bypass.
|
|
21785
|
+
*/
|
|
21786
|
+
access?: 'denied' | 'granted';
|
|
21787
|
+
} | {
|
|
21788
|
+
/**
|
|
21789
|
+
* Specified user id for the scoped bypass.
|
|
21790
|
+
*/
|
|
21791
|
+
userId?: string;
|
|
21792
|
+
/**
|
|
21793
|
+
* Specified email for the scoped bypass.
|
|
21794
|
+
*
|
|
21795
|
+
* @format email
|
|
21796
|
+
*/
|
|
21797
|
+
email: string;
|
|
21798
|
+
/**
|
|
21799
|
+
* Invitation status for the user scoped bypass.
|
|
21800
|
+
*/
|
|
21801
|
+
access?: 'denied' | 'granted';
|
|
21802
|
+
};
|
|
21803
|
+
} | {
|
|
21804
|
+
override: {
|
|
21805
|
+
scope: 'alias-protection-override';
|
|
21806
|
+
action: 'create' | 'revoke';
|
|
21807
|
+
};
|
|
21808
|
+
};
|
|
21809
|
+
pathParams: PatchUrlProtectionBypassPathParams;
|
|
21810
|
+
queryParams?: PatchUrlProtectionBypassQueryParams;
|
|
21811
|
+
} & FetcherExtraProps;
|
|
21812
|
+
/**
|
|
21813
|
+
* Update the protection bypass for the alias or deployment URL (used for user access & comment access for deployments). Used as shareable links and user scoped access for Vercel Authentication and also to allow external (logged in) people to comment on previews for Preview Comments (next-live-mode).
|
|
21814
|
+
*/
|
|
21815
|
+
declare const patchUrlProtectionBypass: (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
20351
21816
|
type GetCertsError = ErrorWrapper<undefined>;
|
|
20352
21817
|
type GetCertsResponse = {
|
|
20353
21818
|
certs: {
|
|
@@ -22316,7 +23781,66 @@ declare const operationsByTag: {
|
|
|
22316
23781
|
unpauseProject: (variables: UnpauseProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
22317
23782
|
};
|
|
22318
23783
|
deployments: {
|
|
22319
|
-
getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<
|
|
23784
|
+
getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<({
|
|
23785
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
23786
|
+
created: number;
|
|
23787
|
+
payload: {
|
|
23788
|
+
deploymentId: string;
|
|
23789
|
+
info?: {
|
|
23790
|
+
type: string;
|
|
23791
|
+
name: string;
|
|
23792
|
+
entrypoint?: string;
|
|
23793
|
+
path?: string;
|
|
23794
|
+
step?: string;
|
|
23795
|
+
readyState?: string;
|
|
23796
|
+
};
|
|
23797
|
+
text?: string;
|
|
23798
|
+
id: string;
|
|
23799
|
+
date: number;
|
|
23800
|
+
serial: string;
|
|
23801
|
+
created?: number;
|
|
23802
|
+
statusCode?: number;
|
|
23803
|
+
requestId?: string;
|
|
23804
|
+
proxy?: {
|
|
23805
|
+
timestamp: number;
|
|
23806
|
+
method: string;
|
|
23807
|
+
host: string;
|
|
23808
|
+
path: string;
|
|
23809
|
+
statusCode?: number;
|
|
23810
|
+
userAgent: string[];
|
|
23811
|
+
referer: string;
|
|
23812
|
+
clientIp?: string;
|
|
23813
|
+
region: string;
|
|
23814
|
+
scheme?: string;
|
|
23815
|
+
responseByteSize?: number;
|
|
23816
|
+
cacheId?: string;
|
|
23817
|
+
pathType?: string;
|
|
23818
|
+
pathTypeVariant?: string;
|
|
23819
|
+
vercelId?: string;
|
|
23820
|
+
vercelCache?: "MISS" | "HIT" | "STALE" | "BYPASS" | "PRERENDER" | "REVALIDATED";
|
|
23821
|
+
lambdaRegion?: string;
|
|
23822
|
+
wafAction?: "log" | "challenge" | "deny" | "bypass" | "rate_limit";
|
|
23823
|
+
wafRuleId?: string;
|
|
23824
|
+
};
|
|
23825
|
+
};
|
|
23826
|
+
} | {
|
|
23827
|
+
created: number;
|
|
23828
|
+
date: number;
|
|
23829
|
+
deploymentId: string;
|
|
23830
|
+
id: string;
|
|
23831
|
+
info: {
|
|
23832
|
+
type: string;
|
|
23833
|
+
name: string;
|
|
23834
|
+
entrypoint?: string;
|
|
23835
|
+
path?: string;
|
|
23836
|
+
step?: string;
|
|
23837
|
+
readyState?: string;
|
|
23838
|
+
};
|
|
23839
|
+
serial: string;
|
|
23840
|
+
text?: string;
|
|
23841
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
23842
|
+
level?: "error" | "warning";
|
|
23843
|
+
} | null)[] | null>;
|
|
22320
23844
|
updateIntegrationDeploymentAction: (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
22321
23845
|
getDeployment: (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
|
|
22322
23846
|
aliasAssignedAt?: number | boolean | null;
|
|
@@ -22435,20 +23959,89 @@ declare const operationsByTag: {
|
|
|
22435
23959
|
path: string;
|
|
22436
23960
|
functionName: string;
|
|
22437
23961
|
}[];
|
|
22438
|
-
}[];
|
|
22439
|
-
public: boolean;
|
|
22440
|
-
ready?: number;
|
|
22441
|
-
status: "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED";
|
|
22442
|
-
team?: {
|
|
22443
|
-
id: string;
|
|
22444
|
-
name: string;
|
|
22445
|
-
slug: string;
|
|
22446
|
-
avatar?: string;
|
|
22447
|
-
};
|
|
22448
|
-
userAliases?: string[];
|
|
22449
|
-
previewCommentsEnabled?: boolean;
|
|
22450
|
-
ttyBuildLogs?: boolean;
|
|
22451
|
-
customEnvironment?:
|
|
23962
|
+
}[];
|
|
23963
|
+
public: boolean;
|
|
23964
|
+
ready?: number;
|
|
23965
|
+
status: "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED";
|
|
23966
|
+
team?: {
|
|
23967
|
+
id: string;
|
|
23968
|
+
name: string;
|
|
23969
|
+
slug: string;
|
|
23970
|
+
avatar?: string;
|
|
23971
|
+
};
|
|
23972
|
+
userAliases?: string[];
|
|
23973
|
+
previewCommentsEnabled?: boolean;
|
|
23974
|
+
ttyBuildLogs?: boolean;
|
|
23975
|
+
customEnvironment?: {
|
|
23976
|
+
/**
|
|
23977
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
23978
|
+
*/
|
|
23979
|
+
id: string;
|
|
23980
|
+
/**
|
|
23981
|
+
* URL-friendly name of the environment
|
|
23982
|
+
*/
|
|
23983
|
+
slug: string;
|
|
23984
|
+
/**
|
|
23985
|
+
* The type of environment (production, preview, or development)
|
|
23986
|
+
*/
|
|
23987
|
+
type: "production" | "preview" | "development";
|
|
23988
|
+
/**
|
|
23989
|
+
* Optional description of the environment's purpose
|
|
23990
|
+
*/
|
|
23991
|
+
description?: string;
|
|
23992
|
+
/**
|
|
23993
|
+
* Configuration for matching git branches to this environment
|
|
23994
|
+
*/
|
|
23995
|
+
branchMatcher?: {
|
|
23996
|
+
/**
|
|
23997
|
+
* The type of matching to perform
|
|
23998
|
+
*/
|
|
23999
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
24000
|
+
/**
|
|
24001
|
+
* The pattern to match against branch names
|
|
24002
|
+
*/
|
|
24003
|
+
pattern: string;
|
|
24004
|
+
};
|
|
24005
|
+
/**
|
|
24006
|
+
* List of domains associated with this environment
|
|
24007
|
+
*/
|
|
24008
|
+
domains?: {
|
|
24009
|
+
name: string;
|
|
24010
|
+
apexName: string;
|
|
24011
|
+
projectId: string;
|
|
24012
|
+
redirect?: string | null;
|
|
24013
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
24014
|
+
gitBranch?: string | null;
|
|
24015
|
+
customEnvironmentId?: string | null;
|
|
24016
|
+
updatedAt?: number;
|
|
24017
|
+
createdAt?: number;
|
|
24018
|
+
/**
|
|
24019
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
24020
|
+
*/
|
|
24021
|
+
verified: boolean;
|
|
24022
|
+
/**
|
|
24023
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
24024
|
+
*/
|
|
24025
|
+
verification?: {
|
|
24026
|
+
type: string;
|
|
24027
|
+
domain: string;
|
|
24028
|
+
value: string;
|
|
24029
|
+
reason: string;
|
|
24030
|
+
}[];
|
|
24031
|
+
}[];
|
|
24032
|
+
/**
|
|
24033
|
+
* List of aliases for the current deployment
|
|
24034
|
+
*/
|
|
24035
|
+
currentDeploymentAliases?: string[];
|
|
24036
|
+
/**
|
|
24037
|
+
* Timestamp when the environment was created
|
|
24038
|
+
*/
|
|
24039
|
+
createdAt: number;
|
|
24040
|
+
/**
|
|
24041
|
+
* Timestamp when the environment was last updated
|
|
24042
|
+
*/
|
|
24043
|
+
updatedAt: number;
|
|
24044
|
+
} | {
|
|
22452
24045
|
id: string;
|
|
22453
24046
|
};
|
|
22454
24047
|
aliasWarning?: {
|
|
@@ -22550,7 +24143,7 @@ declare const operationsByTag: {
|
|
|
22550
24143
|
org?: string;
|
|
22551
24144
|
repo?: string;
|
|
22552
24145
|
} | {
|
|
22553
|
-
type: "github";
|
|
24146
|
+
type: "github-custom-host";
|
|
22554
24147
|
host: string;
|
|
22555
24148
|
ref: string;
|
|
22556
24149
|
sha: string;
|
|
@@ -22825,7 +24418,76 @@ declare const operationsByTag: {
|
|
|
22825
24418
|
userAliases?: string[];
|
|
22826
24419
|
previewCommentsEnabled?: boolean;
|
|
22827
24420
|
ttyBuildLogs?: boolean;
|
|
22828
|
-
customEnvironment?:
|
|
24421
|
+
customEnvironment?: {
|
|
24422
|
+
/**
|
|
24423
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
24424
|
+
*/
|
|
24425
|
+
id: string;
|
|
24426
|
+
/**
|
|
24427
|
+
* URL-friendly name of the environment
|
|
24428
|
+
*/
|
|
24429
|
+
slug: string;
|
|
24430
|
+
/**
|
|
24431
|
+
* The type of environment (production, preview, or development)
|
|
24432
|
+
*/
|
|
24433
|
+
type: "production" | "preview" | "development";
|
|
24434
|
+
/**
|
|
24435
|
+
* Optional description of the environment's purpose
|
|
24436
|
+
*/
|
|
24437
|
+
description?: string;
|
|
24438
|
+
/**
|
|
24439
|
+
* Configuration for matching git branches to this environment
|
|
24440
|
+
*/
|
|
24441
|
+
branchMatcher?: {
|
|
24442
|
+
/**
|
|
24443
|
+
* The type of matching to perform
|
|
24444
|
+
*/
|
|
24445
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
24446
|
+
/**
|
|
24447
|
+
* The pattern to match against branch names
|
|
24448
|
+
*/
|
|
24449
|
+
pattern: string;
|
|
24450
|
+
};
|
|
24451
|
+
/**
|
|
24452
|
+
* List of domains associated with this environment
|
|
24453
|
+
*/
|
|
24454
|
+
domains?: {
|
|
24455
|
+
name: string;
|
|
24456
|
+
apexName: string;
|
|
24457
|
+
projectId: string;
|
|
24458
|
+
redirect?: string | null;
|
|
24459
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
24460
|
+
gitBranch?: string | null;
|
|
24461
|
+
customEnvironmentId?: string | null;
|
|
24462
|
+
updatedAt?: number;
|
|
24463
|
+
createdAt?: number;
|
|
24464
|
+
/**
|
|
24465
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
24466
|
+
*/
|
|
24467
|
+
verified: boolean;
|
|
24468
|
+
/**
|
|
24469
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
24470
|
+
*/
|
|
24471
|
+
verification?: {
|
|
24472
|
+
type: string;
|
|
24473
|
+
domain: string;
|
|
24474
|
+
value: string;
|
|
24475
|
+
reason: string;
|
|
24476
|
+
}[];
|
|
24477
|
+
}[];
|
|
24478
|
+
/**
|
|
24479
|
+
* List of aliases for the current deployment
|
|
24480
|
+
*/
|
|
24481
|
+
currentDeploymentAliases?: string[];
|
|
24482
|
+
/**
|
|
24483
|
+
* Timestamp when the environment was created
|
|
24484
|
+
*/
|
|
24485
|
+
createdAt: number;
|
|
24486
|
+
/**
|
|
24487
|
+
* Timestamp when the environment was last updated
|
|
24488
|
+
*/
|
|
24489
|
+
updatedAt: number;
|
|
24490
|
+
} | {
|
|
22829
24491
|
id: string;
|
|
22830
24492
|
};
|
|
22831
24493
|
aliasWarning?: {
|
|
@@ -22927,7 +24589,7 @@ declare const operationsByTag: {
|
|
|
22927
24589
|
org?: string;
|
|
22928
24590
|
repo?: string;
|
|
22929
24591
|
} | {
|
|
22930
|
-
type: "github";
|
|
24592
|
+
type: "github-custom-host";
|
|
22931
24593
|
host: string;
|
|
22932
24594
|
ref: string;
|
|
22933
24595
|
sha: string;
|
|
@@ -23638,6 +25300,9 @@ declare const operationsByTag: {
|
|
|
23638
25300
|
getAuthToken: (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
|
|
23639
25301
|
deleteAuthToken: (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
|
|
23640
25302
|
};
|
|
25303
|
+
logs: {
|
|
25304
|
+
getRuntimeLogs: (variables: GetRuntimeLogsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25305
|
+
};
|
|
23641
25306
|
projectMembers: {
|
|
23642
25307
|
getProjectMembers: (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23643
25308
|
members: {
|
|
@@ -23722,11 +25387,11 @@ declare const operationsByTag: {
|
|
|
23722
25387
|
removeProjectMember: (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
|
|
23723
25388
|
};
|
|
23724
25389
|
environment: {
|
|
23725
|
-
createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
25390
|
+
createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
23726
25391
|
getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
23727
|
-
getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
23728
|
-
updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
23729
|
-
removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
25392
|
+
getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
25393
|
+
updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
25394
|
+
removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
23730
25395
|
};
|
|
23731
25396
|
security: {
|
|
23732
25397
|
updateAttackChallengeMode: (variables: UpdateAttackChallengeModeVariables, signal?: AbortSignal) => Promise<UpdateAttackChallengeModeResponse>;
|
|
@@ -23764,36 +25429,36 @@ declare const operationsByTag: {
|
|
|
23764
25429
|
}>;
|
|
23765
25430
|
getBypassIp: (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
23766
25431
|
result: {
|
|
23767
|
-
OwnerId
|
|
23768
|
-
Id
|
|
23769
|
-
Domain
|
|
23770
|
-
Ip
|
|
25432
|
+
OwnerId?: string;
|
|
25433
|
+
Id?: string;
|
|
25434
|
+
Domain?: string;
|
|
25435
|
+
Ip?: string;
|
|
23771
25436
|
Action?: "block" | "bypass";
|
|
23772
25437
|
ProjectId?: string;
|
|
23773
25438
|
IsProjectRule?: boolean;
|
|
23774
25439
|
Note?: string;
|
|
23775
|
-
CreatedAt
|
|
25440
|
+
CreatedAt?: string;
|
|
23776
25441
|
ActorId?: string;
|
|
23777
|
-
UpdatedAt
|
|
23778
|
-
UpdatedAtHour
|
|
25442
|
+
UpdatedAt?: string;
|
|
25443
|
+
UpdatedAtHour?: string;
|
|
23779
25444
|
DeletedAt?: string;
|
|
23780
25445
|
ExpiresAt?: number | null;
|
|
23781
25446
|
}[];
|
|
23782
25447
|
pagination: void | null;
|
|
23783
25448
|
} | {
|
|
23784
25449
|
result?: {
|
|
23785
|
-
OwnerId
|
|
23786
|
-
Id
|
|
23787
|
-
Domain
|
|
23788
|
-
Ip
|
|
25450
|
+
OwnerId?: string;
|
|
25451
|
+
Id?: string;
|
|
25452
|
+
Domain?: string;
|
|
25453
|
+
Ip?: string;
|
|
23789
25454
|
Action?: "block" | "bypass";
|
|
23790
25455
|
ProjectId?: string;
|
|
23791
25456
|
IsProjectRule?: boolean;
|
|
23792
25457
|
Note?: string;
|
|
23793
|
-
CreatedAt
|
|
25458
|
+
CreatedAt?: string;
|
|
23794
25459
|
ActorId?: string;
|
|
23795
|
-
UpdatedAt
|
|
23796
|
-
UpdatedAtHour
|
|
25460
|
+
UpdatedAt?: string;
|
|
25461
|
+
UpdatedAtHour?: string;
|
|
23797
25462
|
DeletedAt?: string;
|
|
23798
25463
|
ExpiresAt?: number | null;
|
|
23799
25464
|
}[];
|
|
@@ -23886,8 +25551,8 @@ declare const operationsByTag: {
|
|
|
23886
25551
|
joinTeam: (variables: JoinTeamVariables, signal?: AbortSignal) => Promise<JoinTeamResponse>;
|
|
23887
25552
|
updateTeamMember: (variables: UpdateTeamMemberVariables, signal?: AbortSignal) => Promise<UpdateTeamMemberResponse>;
|
|
23888
25553
|
removeTeamMember: (variables: RemoveTeamMemberVariables, signal?: AbortSignal) => Promise<RemoveTeamMemberResponse>;
|
|
23889
|
-
getTeam: (variables: GetTeamVariables, signal?: AbortSignal) => Promise<
|
|
23890
|
-
patchTeam: (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<
|
|
25554
|
+
getTeam: (variables: GetTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
25555
|
+
patchTeam: (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
23891
25556
|
getTeams: (variables: GetTeamsVariables, signal?: AbortSignal) => Promise<GetTeamsResponse>;
|
|
23892
25557
|
createTeam: (variables: CreateTeamVariables, signal?: AbortSignal) => Promise<CreateTeamResponse>;
|
|
23893
25558
|
deleteTeam: (variables: DeleteTeamVariables, signal?: AbortSignal) => Promise<DeleteTeamResponse>;
|
|
@@ -23907,7 +25572,7 @@ declare const operationsByTag: {
|
|
|
23907
25572
|
*
|
|
23908
25573
|
* @example deployment.created
|
|
23909
25574
|
*/
|
|
23910
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
25575
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
23911
25576
|
/**
|
|
23912
25577
|
* The webhook id
|
|
23913
25578
|
*
|
|
@@ -23950,7 +25615,7 @@ declare const operationsByTag: {
|
|
|
23950
25615
|
*
|
|
23951
25616
|
* @example deployment.created
|
|
23952
25617
|
*/
|
|
23953
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
25618
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
23954
25619
|
/**
|
|
23955
25620
|
* The webhook id
|
|
23956
25621
|
*
|
|
@@ -23997,6 +25662,7 @@ declare const operationsByTag: {
|
|
|
23997
25662
|
listAliases: (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
23998
25663
|
getAlias: (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
23999
25664
|
deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
25665
|
+
patchUrlProtectionBypass: (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
24000
25666
|
};
|
|
24001
25667
|
certs: {
|
|
24002
25668
|
getCertById: (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
@@ -24087,6 +25753,7 @@ type components_CreateCustomEnvironmentError = CreateCustomEnvironmentError;
|
|
|
24087
25753
|
type components_CreateCustomEnvironmentPathParams = CreateCustomEnvironmentPathParams;
|
|
24088
25754
|
type components_CreateCustomEnvironmentQueryParams = CreateCustomEnvironmentQueryParams;
|
|
24089
25755
|
type components_CreateCustomEnvironmentRequestBody = CreateCustomEnvironmentRequestBody;
|
|
25756
|
+
type components_CreateCustomEnvironmentResponse = CreateCustomEnvironmentResponse;
|
|
24090
25757
|
type components_CreateCustomEnvironmentVariables = CreateCustomEnvironmentVariables;
|
|
24091
25758
|
type components_CreateDeploymentError = CreateDeploymentError;
|
|
24092
25759
|
type components_CreateDeploymentQueryParams = CreateDeploymentQueryParams;
|
|
@@ -24210,6 +25877,9 @@ type components_DeleteProjectError = DeleteProjectError;
|
|
|
24210
25877
|
type components_DeleteProjectPathParams = DeleteProjectPathParams;
|
|
24211
25878
|
type components_DeleteProjectQueryParams = DeleteProjectQueryParams;
|
|
24212
25879
|
type components_DeleteProjectVariables = DeleteProjectVariables;
|
|
25880
|
+
type components_DeleteProjectsProjectIdLogsPresetsIdError = DeleteProjectsProjectIdLogsPresetsIdError;
|
|
25881
|
+
type components_DeleteProjectsProjectIdLogsPresetsIdPathParams = DeleteProjectsProjectIdLogsPresetsIdPathParams;
|
|
25882
|
+
type components_DeleteProjectsProjectIdLogsPresetsIdVariables = DeleteProjectsProjectIdLogsPresetsIdVariables;
|
|
24213
25883
|
type components_DeleteSecretError = DeleteSecretError;
|
|
24214
25884
|
type components_DeleteSecretPathParams = DeleteSecretPathParams;
|
|
24215
25885
|
type components_DeleteSecretQueryParams = DeleteSecretQueryParams;
|
|
@@ -24300,6 +25970,7 @@ type components_GetConfigurationsVariables = GetConfigurationsVariables;
|
|
|
24300
25970
|
type components_GetCustomEnvironmentError = GetCustomEnvironmentError;
|
|
24301
25971
|
type components_GetCustomEnvironmentPathParams = GetCustomEnvironmentPathParams;
|
|
24302
25972
|
type components_GetCustomEnvironmentQueryParams = GetCustomEnvironmentQueryParams;
|
|
25973
|
+
type components_GetCustomEnvironmentResponse = GetCustomEnvironmentResponse;
|
|
24303
25974
|
type components_GetCustomEnvironmentVariables = GetCustomEnvironmentVariables;
|
|
24304
25975
|
type components_GetDeploymentError = GetDeploymentError;
|
|
24305
25976
|
type components_GetDeploymentEventsError = GetDeploymentEventsError;
|
|
@@ -24412,6 +26083,10 @@ type components_GetProjectQueryParams = GetProjectQueryParams;
|
|
|
24412
26083
|
type components_GetProjectResponse = GetProjectResponse;
|
|
24413
26084
|
type components_GetProjectVariables = GetProjectVariables;
|
|
24414
26085
|
type components_GetProjectsError = GetProjectsError;
|
|
26086
|
+
type components_GetProjectsProjectIdLogsPresetsError = GetProjectsProjectIdLogsPresetsError;
|
|
26087
|
+
type components_GetProjectsProjectIdLogsPresetsPathParams = GetProjectsProjectIdLogsPresetsPathParams;
|
|
26088
|
+
type components_GetProjectsProjectIdLogsPresetsResponse = GetProjectsProjectIdLogsPresetsResponse;
|
|
26089
|
+
type components_GetProjectsProjectIdLogsPresetsVariables = GetProjectsProjectIdLogsPresetsVariables;
|
|
24415
26090
|
type components_GetProjectsQueryParams = GetProjectsQueryParams;
|
|
24416
26091
|
type components_GetProjectsResponse = GetProjectsResponse;
|
|
24417
26092
|
type components_GetProjectsVariables = GetProjectsVariables;
|
|
@@ -24419,6 +26094,10 @@ type components_GetRecordsError = GetRecordsError;
|
|
|
24419
26094
|
type components_GetRecordsPathParams = GetRecordsPathParams;
|
|
24420
26095
|
type components_GetRecordsQueryParams = GetRecordsQueryParams;
|
|
24421
26096
|
type components_GetRecordsVariables = GetRecordsVariables;
|
|
26097
|
+
type components_GetRuntimeLogsError = GetRuntimeLogsError;
|
|
26098
|
+
type components_GetRuntimeLogsPathParams = GetRuntimeLogsPathParams;
|
|
26099
|
+
type components_GetRuntimeLogsQueryParams = GetRuntimeLogsQueryParams;
|
|
26100
|
+
type components_GetRuntimeLogsVariables = GetRuntimeLogsVariables;
|
|
24422
26101
|
type components_GetSecretError = GetSecretError;
|
|
24423
26102
|
type components_GetSecretPathParams = GetSecretPathParams;
|
|
24424
26103
|
type components_GetSecretQueryParams = GetSecretQueryParams;
|
|
@@ -24537,11 +26216,20 @@ type components_PatchEdgeConfigSchemaPathParams = PatchEdgeConfigSchemaPathParam
|
|
|
24537
26216
|
type components_PatchEdgeConfigSchemaQueryParams = PatchEdgeConfigSchemaQueryParams;
|
|
24538
26217
|
type components_PatchEdgeConfigSchemaRequestBody = PatchEdgeConfigSchemaRequestBody;
|
|
24539
26218
|
type components_PatchEdgeConfigSchemaVariables = PatchEdgeConfigSchemaVariables;
|
|
26219
|
+
type components_PatchProjectsProjectIdLogsPresetsIdError = PatchProjectsProjectIdLogsPresetsIdError;
|
|
26220
|
+
type components_PatchProjectsProjectIdLogsPresetsIdPathParams = PatchProjectsProjectIdLogsPresetsIdPathParams;
|
|
26221
|
+
type components_PatchProjectsProjectIdLogsPresetsIdRequestBody = PatchProjectsProjectIdLogsPresetsIdRequestBody;
|
|
26222
|
+
type components_PatchProjectsProjectIdLogsPresetsIdVariables = PatchProjectsProjectIdLogsPresetsIdVariables;
|
|
24540
26223
|
type components_PatchTeamError = PatchTeamError;
|
|
24541
26224
|
type components_PatchTeamPathParams = PatchTeamPathParams;
|
|
24542
26225
|
type components_PatchTeamQueryParams = PatchTeamQueryParams;
|
|
24543
26226
|
type components_PatchTeamRequestBody = PatchTeamRequestBody;
|
|
24544
26227
|
type components_PatchTeamVariables = PatchTeamVariables;
|
|
26228
|
+
type components_PatchUrlProtectionBypassError = PatchUrlProtectionBypassError;
|
|
26229
|
+
type components_PatchUrlProtectionBypassPathParams = PatchUrlProtectionBypassPathParams;
|
|
26230
|
+
type components_PatchUrlProtectionBypassQueryParams = PatchUrlProtectionBypassQueryParams;
|
|
26231
|
+
type components_PatchUrlProtectionBypassResponse = PatchUrlProtectionBypassResponse;
|
|
26232
|
+
type components_PatchUrlProtectionBypassVariables = PatchUrlProtectionBypassVariables;
|
|
24545
26233
|
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError;
|
|
24546
26234
|
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
|
|
24547
26235
|
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody;
|
|
@@ -24550,6 +26238,10 @@ type components_PauseProjectError = PauseProjectError;
|
|
|
24550
26238
|
type components_PauseProjectPathParams = PauseProjectPathParams;
|
|
24551
26239
|
type components_PauseProjectQueryParams = PauseProjectQueryParams;
|
|
24552
26240
|
type components_PauseProjectVariables = PauseProjectVariables;
|
|
26241
|
+
type components_PostProjectsProjectIdLogsPresetsError = PostProjectsProjectIdLogsPresetsError;
|
|
26242
|
+
type components_PostProjectsProjectIdLogsPresetsPathParams = PostProjectsProjectIdLogsPresetsPathParams;
|
|
26243
|
+
type components_PostProjectsProjectIdLogsPresetsRequestBody = PostProjectsProjectIdLogsPresetsRequestBody;
|
|
26244
|
+
type components_PostProjectsProjectIdLogsPresetsVariables = PostProjectsProjectIdLogsPresetsVariables;
|
|
24553
26245
|
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError;
|
|
24554
26246
|
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams;
|
|
24555
26247
|
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody;
|
|
@@ -24591,6 +26283,7 @@ type components_RemoveCustomEnvironmentError = RemoveCustomEnvironmentError;
|
|
|
24591
26283
|
type components_RemoveCustomEnvironmentPathParams = RemoveCustomEnvironmentPathParams;
|
|
24592
26284
|
type components_RemoveCustomEnvironmentQueryParams = RemoveCustomEnvironmentQueryParams;
|
|
24593
26285
|
type components_RemoveCustomEnvironmentRequestBody = RemoveCustomEnvironmentRequestBody;
|
|
26286
|
+
type components_RemoveCustomEnvironmentResponse = RemoveCustomEnvironmentResponse;
|
|
24594
26287
|
type components_RemoveCustomEnvironmentVariables = RemoveCustomEnvironmentVariables;
|
|
24595
26288
|
type components_RemoveProjectDomainError = RemoveProjectDomainError;
|
|
24596
26289
|
type components_RemoveProjectDomainPathParams = RemoveProjectDomainPathParams;
|
|
@@ -24684,6 +26377,7 @@ type components_UpdateCustomEnvironmentError = UpdateCustomEnvironmentError;
|
|
|
24684
26377
|
type components_UpdateCustomEnvironmentPathParams = UpdateCustomEnvironmentPathParams;
|
|
24685
26378
|
type components_UpdateCustomEnvironmentQueryParams = UpdateCustomEnvironmentQueryParams;
|
|
24686
26379
|
type components_UpdateCustomEnvironmentRequestBody = UpdateCustomEnvironmentRequestBody;
|
|
26380
|
+
type components_UpdateCustomEnvironmentResponse = UpdateCustomEnvironmentResponse;
|
|
24687
26381
|
type components_UpdateCustomEnvironmentVariables = UpdateCustomEnvironmentVariables;
|
|
24688
26382
|
type components_UpdateEdgeConfigError = UpdateEdgeConfigError;
|
|
24689
26383
|
type components_UpdateEdgeConfigPathParams = UpdateEdgeConfigPathParams;
|
|
@@ -24807,6 +26501,7 @@ declare const components_deleteEdgeConfigSchema: typeof deleteEdgeConfigSchema;
|
|
|
24807
26501
|
declare const components_deleteEdgeConfigTokens: typeof deleteEdgeConfigTokens;
|
|
24808
26502
|
declare const components_deleteIntegrationLogDrain: typeof deleteIntegrationLogDrain;
|
|
24809
26503
|
declare const components_deleteProject: typeof deleteProject;
|
|
26504
|
+
declare const components_deleteProjectsProjectIdLogsPresetsId: typeof deleteProjectsProjectIdLogsPresetsId;
|
|
24810
26505
|
declare const components_deleteSecret: typeof deleteSecret;
|
|
24811
26506
|
declare const components_deleteTeam: typeof deleteTeam;
|
|
24812
26507
|
declare const components_deleteTeamInviteCode: typeof deleteTeamInviteCode;
|
|
@@ -24856,7 +26551,9 @@ declare const components_getProjectDomains: typeof getProjectDomains;
|
|
|
24856
26551
|
declare const components_getProjectEnv: typeof getProjectEnv;
|
|
24857
26552
|
declare const components_getProjectMembers: typeof getProjectMembers;
|
|
24858
26553
|
declare const components_getProjects: typeof getProjects;
|
|
26554
|
+
declare const components_getProjectsProjectIdLogsPresets: typeof getProjectsProjectIdLogsPresets;
|
|
24859
26555
|
declare const components_getRecords: typeof getRecords;
|
|
26556
|
+
declare const components_getRuntimeLogs: typeof getRuntimeLogs;
|
|
24860
26557
|
declare const components_getSecret: typeof getSecret;
|
|
24861
26558
|
declare const components_getSecrets: typeof getSecrets;
|
|
24862
26559
|
declare const components_getTeam: typeof getTeam;
|
|
@@ -24885,9 +26582,12 @@ declare const components_patchDataCacheBillingSettings: typeof patchDataCacheBil
|
|
|
24885
26582
|
declare const components_patchDomain: typeof patchDomain;
|
|
24886
26583
|
declare const components_patchEdgeConfigItems: typeof patchEdgeConfigItems;
|
|
24887
26584
|
declare const components_patchEdgeConfigSchema: typeof patchEdgeConfigSchema;
|
|
26585
|
+
declare const components_patchProjectsProjectIdLogsPresetsId: typeof patchProjectsProjectIdLogsPresetsId;
|
|
24888
26586
|
declare const components_patchTeam: typeof patchTeam;
|
|
26587
|
+
declare const components_patchUrlProtectionBypass: typeof patchUrlProtectionBypass;
|
|
24889
26588
|
declare const components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: typeof patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId;
|
|
24890
26589
|
declare const components_pauseProject: typeof pauseProject;
|
|
26590
|
+
declare const components_postProjectsProjectIdLogsPresets: typeof postProjectsProjectIdLogsPresets;
|
|
24891
26591
|
declare const components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems: typeof postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems;
|
|
24892
26592
|
declare const components_putFirewallConfig: typeof putFirewallConfig;
|
|
24893
26593
|
declare const components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig: typeof putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig;
|
|
@@ -24934,7 +26634,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
24934
26634
|
declare const components_uploadFile: typeof uploadFile;
|
|
24935
26635
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
24936
26636
|
declare namespace components {
|
|
24937
|
-
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_MoveProjectDomainError as MoveProjectDomainError, type components_MoveProjectDomainPathParams as MoveProjectDomainPathParams, type components_MoveProjectDomainQueryParams as MoveProjectDomainQueryParams, type components_MoveProjectDomainRequestBody as MoveProjectDomainRequestBody, type components_MoveProjectDomainResponse as MoveProjectDomainResponse, type components_MoveProjectDomainVariables as MoveProjectDomainVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_moveProjectDomain as moveProjectDomain, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
26637
|
+
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentResponse as CreateCustomEnvironmentResponse, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteProjectsProjectIdLogsPresetsIdError as DeleteProjectsProjectIdLogsPresetsIdError, type components_DeleteProjectsProjectIdLogsPresetsIdPathParams as DeleteProjectsProjectIdLogsPresetsIdPathParams, type components_DeleteProjectsProjectIdLogsPresetsIdVariables as DeleteProjectsProjectIdLogsPresetsIdVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentResponse as GetCustomEnvironmentResponse, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsProjectIdLogsPresetsError as GetProjectsProjectIdLogsPresetsError, type components_GetProjectsProjectIdLogsPresetsPathParams as GetProjectsProjectIdLogsPresetsPathParams, type components_GetProjectsProjectIdLogsPresetsResponse as GetProjectsProjectIdLogsPresetsResponse, type components_GetProjectsProjectIdLogsPresetsVariables as GetProjectsProjectIdLogsPresetsVariables, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetRuntimeLogsError as GetRuntimeLogsError, type components_GetRuntimeLogsPathParams as GetRuntimeLogsPathParams, type components_GetRuntimeLogsQueryParams as GetRuntimeLogsQueryParams, type components_GetRuntimeLogsVariables as GetRuntimeLogsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_MoveProjectDomainError as MoveProjectDomainError, type components_MoveProjectDomainPathParams as MoveProjectDomainPathParams, type components_MoveProjectDomainQueryParams as MoveProjectDomainQueryParams, type components_MoveProjectDomainRequestBody as MoveProjectDomainRequestBody, type components_MoveProjectDomainResponse as MoveProjectDomainResponse, type components_MoveProjectDomainVariables as MoveProjectDomainVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchProjectsProjectIdLogsPresetsIdError as PatchProjectsProjectIdLogsPresetsIdError, type components_PatchProjectsProjectIdLogsPresetsIdPathParams as PatchProjectsProjectIdLogsPresetsIdPathParams, type components_PatchProjectsProjectIdLogsPresetsIdRequestBody as PatchProjectsProjectIdLogsPresetsIdRequestBody, type components_PatchProjectsProjectIdLogsPresetsIdVariables as PatchProjectsProjectIdLogsPresetsIdVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchUrlProtectionBypassError as PatchUrlProtectionBypassError, type components_PatchUrlProtectionBypassPathParams as PatchUrlProtectionBypassPathParams, type components_PatchUrlProtectionBypassQueryParams as PatchUrlProtectionBypassQueryParams, type components_PatchUrlProtectionBypassResponse as PatchUrlProtectionBypassResponse, type components_PatchUrlProtectionBypassVariables as PatchUrlProtectionBypassVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostProjectsProjectIdLogsPresetsError as PostProjectsProjectIdLogsPresetsError, type components_PostProjectsProjectIdLogsPresetsPathParams as PostProjectsProjectIdLogsPresetsPathParams, type components_PostProjectsProjectIdLogsPresetsRequestBody as PostProjectsProjectIdLogsPresetsRequestBody, type components_PostProjectsProjectIdLogsPresetsVariables as PostProjectsProjectIdLogsPresetsVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentResponse as RemoveCustomEnvironmentResponse, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentResponse as UpdateCustomEnvironmentResponse, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteProjectsProjectIdLogsPresetsId as deleteProjectsProjectIdLogsPresetsId, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getProjectsProjectIdLogsPresets as getProjectsProjectIdLogsPresets, components_getRecords as getRecords, components_getRuntimeLogs as getRuntimeLogs, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_moveProjectDomain as moveProjectDomain, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchProjectsProjectIdLogsPresetsId as patchProjectsProjectIdLogsPresetsId, components_patchTeam as patchTeam, components_patchUrlProtectionBypass as patchUrlProtectionBypass, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postProjectsProjectIdLogsPresets as postProjectsProjectIdLogsPresets, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
24938
26638
|
}
|
|
24939
26639
|
|
|
24940
26640
|
declare const operationsByPath: {
|
|
@@ -24982,7 +26682,66 @@ declare const operationsByPath: {
|
|
|
24982
26682
|
'DELETE /data-cache/purge-all': (variables: DeleteDataCachePurgeAllVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
24983
26683
|
'PATCH /data-cache/billing-settings': (variables: PatchDataCacheBillingSettingsVariables, signal?: AbortSignal) => Promise<PatchDataCacheBillingSettingsResponse>;
|
|
24984
26684
|
'PATCH /v1/data-cache/projects/{projectId}': (variables: UpdateProjectDataCacheVariables, signal?: AbortSignal) => Promise<UpdateProjectDataCacheResponse>;
|
|
24985
|
-
'GET /v3/deployments/{idOrUrl}/events': (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<
|
|
26685
|
+
'GET /v3/deployments/{idOrUrl}/events': (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<({
|
|
26686
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
26687
|
+
created: number;
|
|
26688
|
+
payload: {
|
|
26689
|
+
deploymentId: string;
|
|
26690
|
+
info?: {
|
|
26691
|
+
type: string;
|
|
26692
|
+
name: string;
|
|
26693
|
+
entrypoint?: string;
|
|
26694
|
+
path?: string;
|
|
26695
|
+
step?: string;
|
|
26696
|
+
readyState?: string;
|
|
26697
|
+
};
|
|
26698
|
+
text?: string;
|
|
26699
|
+
id: string;
|
|
26700
|
+
date: number;
|
|
26701
|
+
serial: string;
|
|
26702
|
+
created?: number;
|
|
26703
|
+
statusCode?: number;
|
|
26704
|
+
requestId?: string;
|
|
26705
|
+
proxy?: {
|
|
26706
|
+
timestamp: number;
|
|
26707
|
+
method: string;
|
|
26708
|
+
host: string;
|
|
26709
|
+
path: string;
|
|
26710
|
+
statusCode?: number;
|
|
26711
|
+
userAgent: string[];
|
|
26712
|
+
referer: string;
|
|
26713
|
+
clientIp?: string;
|
|
26714
|
+
region: string;
|
|
26715
|
+
scheme?: string;
|
|
26716
|
+
responseByteSize?: number;
|
|
26717
|
+
cacheId?: string;
|
|
26718
|
+
pathType?: string;
|
|
26719
|
+
pathTypeVariant?: string;
|
|
26720
|
+
vercelId?: string;
|
|
26721
|
+
vercelCache?: "MISS" | "HIT" | "STALE" | "BYPASS" | "PRERENDER" | "REVALIDATED";
|
|
26722
|
+
lambdaRegion?: string;
|
|
26723
|
+
wafAction?: "log" | "challenge" | "deny" | "bypass" | "rate_limit";
|
|
26724
|
+
wafRuleId?: string;
|
|
26725
|
+
};
|
|
26726
|
+
};
|
|
26727
|
+
} | {
|
|
26728
|
+
created: number;
|
|
26729
|
+
date: number;
|
|
26730
|
+
deploymentId: string;
|
|
26731
|
+
id: string;
|
|
26732
|
+
info: {
|
|
26733
|
+
type: string;
|
|
26734
|
+
name: string;
|
|
26735
|
+
entrypoint?: string;
|
|
26736
|
+
path?: string;
|
|
26737
|
+
step?: string;
|
|
26738
|
+
readyState?: string;
|
|
26739
|
+
};
|
|
26740
|
+
serial: string;
|
|
26741
|
+
text?: string;
|
|
26742
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
26743
|
+
level?: "error" | "warning";
|
|
26744
|
+
} | null)[] | null>;
|
|
24986
26745
|
'PATCH /v1/deployments/{deploymentId}/integrations/{integrationConfigurationId}/resources/{resourceId}/actions/{action}': (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
24987
26746
|
'GET /v13/deployments/{idOrUrl}': (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
|
|
24988
26747
|
aliasAssignedAt?: number | boolean | null;
|
|
@@ -25090,7 +26849,37 @@ declare const operationsByPath: {
|
|
|
25090
26849
|
userAliases?: string[];
|
|
25091
26850
|
previewCommentsEnabled?: boolean;
|
|
25092
26851
|
ttyBuildLogs?: boolean;
|
|
25093
|
-
customEnvironment?:
|
|
26852
|
+
customEnvironment?: {
|
|
26853
|
+
id: string;
|
|
26854
|
+
slug: string;
|
|
26855
|
+
type: "production" | "preview" | "development";
|
|
26856
|
+
description?: string;
|
|
26857
|
+
branchMatcher?: {
|
|
26858
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
26859
|
+
pattern: string;
|
|
26860
|
+
};
|
|
26861
|
+
domains?: {
|
|
26862
|
+
name: string;
|
|
26863
|
+
apexName: string;
|
|
26864
|
+
projectId: string;
|
|
26865
|
+
redirect?: string | null;
|
|
26866
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
26867
|
+
gitBranch?: string | null;
|
|
26868
|
+
customEnvironmentId?: string | null;
|
|
26869
|
+
updatedAt?: number;
|
|
26870
|
+
createdAt?: number;
|
|
26871
|
+
verified: boolean;
|
|
26872
|
+
verification?: {
|
|
26873
|
+
type: string;
|
|
26874
|
+
domain: string;
|
|
26875
|
+
value: string;
|
|
26876
|
+
reason: string;
|
|
26877
|
+
}[];
|
|
26878
|
+
}[];
|
|
26879
|
+
currentDeploymentAliases?: string[];
|
|
26880
|
+
createdAt: number;
|
|
26881
|
+
updatedAt: number;
|
|
26882
|
+
} | {
|
|
25094
26883
|
id: string;
|
|
25095
26884
|
};
|
|
25096
26885
|
aliasWarning?: {
|
|
@@ -25183,7 +26972,7 @@ declare const operationsByPath: {
|
|
|
25183
26972
|
org?: string;
|
|
25184
26973
|
repo?: string;
|
|
25185
26974
|
} | {
|
|
25186
|
-
type: "github";
|
|
26975
|
+
type: "github-custom-host";
|
|
25187
26976
|
host: string;
|
|
25188
26977
|
ref: string;
|
|
25189
26978
|
sha: string;
|
|
@@ -25407,7 +27196,37 @@ declare const operationsByPath: {
|
|
|
25407
27196
|
userAliases?: string[];
|
|
25408
27197
|
previewCommentsEnabled?: boolean;
|
|
25409
27198
|
ttyBuildLogs?: boolean;
|
|
25410
|
-
customEnvironment?:
|
|
27199
|
+
customEnvironment?: {
|
|
27200
|
+
id: string;
|
|
27201
|
+
slug: string;
|
|
27202
|
+
type: "production" | "preview" | "development";
|
|
27203
|
+
description?: string;
|
|
27204
|
+
branchMatcher?: {
|
|
27205
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
27206
|
+
pattern: string;
|
|
27207
|
+
};
|
|
27208
|
+
domains?: {
|
|
27209
|
+
name: string;
|
|
27210
|
+
apexName: string;
|
|
27211
|
+
projectId: string;
|
|
27212
|
+
redirect?: string | null;
|
|
27213
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
27214
|
+
gitBranch?: string | null;
|
|
27215
|
+
customEnvironmentId?: string | null;
|
|
27216
|
+
updatedAt?: number;
|
|
27217
|
+
createdAt?: number;
|
|
27218
|
+
verified: boolean;
|
|
27219
|
+
verification?: {
|
|
27220
|
+
type: string;
|
|
27221
|
+
domain: string;
|
|
27222
|
+
value: string;
|
|
27223
|
+
reason: string;
|
|
27224
|
+
}[];
|
|
27225
|
+
}[];
|
|
27226
|
+
currentDeploymentAliases?: string[];
|
|
27227
|
+
createdAt: number;
|
|
27228
|
+
updatedAt: number;
|
|
27229
|
+
} | {
|
|
25411
27230
|
id: string;
|
|
25412
27231
|
};
|
|
25413
27232
|
aliasWarning?: {
|
|
@@ -25500,7 +27319,7 @@ declare const operationsByPath: {
|
|
|
25500
27319
|
org?: string;
|
|
25501
27320
|
repo?: string;
|
|
25502
27321
|
} | {
|
|
25503
|
-
type: "github";
|
|
27322
|
+
type: "github-custom-host";
|
|
25504
27323
|
host: string;
|
|
25505
27324
|
ref: string;
|
|
25506
27325
|
sha: string;
|
|
@@ -25835,6 +27654,11 @@ declare const operationsByPath: {
|
|
|
25835
27654
|
'GET /v2/integrations/log-drains': (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
25836
27655
|
'POST /v2/integrations/log-drains': (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
25837
27656
|
'DELETE /v1/integrations/log-drains/{id}': (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27657
|
+
'GET /projects/{projectId}/logs-presets': (variables: GetProjectsProjectIdLogsPresetsVariables, signal?: AbortSignal) => Promise<GetProjectsProjectIdLogsPresetsResponse>;
|
|
27658
|
+
'POST /projects/{projectId}/logs-presets': (variables: PostProjectsProjectIdLogsPresetsVariables, signal?: AbortSignal) => Promise<Team>;
|
|
27659
|
+
'DELETE /projects/{projectId}/logs-presets/{id}': (variables: DeleteProjectsProjectIdLogsPresetsIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27660
|
+
'PATCH /projects/{projectId}/logs-presets/{id}': (variables: PatchProjectsProjectIdLogsPresetsIdVariables, signal?: AbortSignal) => Promise<Team>;
|
|
27661
|
+
'GET /v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs': (variables: GetRuntimeLogsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25838
27662
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25839
27663
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25840
27664
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -25865,11 +27689,11 @@ declare const operationsByPath: {
|
|
|
25865
27689
|
'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
25866
27690
|
'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
25867
27691
|
'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25868
|
-
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
27692
|
+
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
25869
27693
|
'GET /v9/projects/{idOrName}/custom-environments': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
25870
|
-
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
25871
|
-
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
25872
|
-
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
27694
|
+
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
27695
|
+
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
27696
|
+
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
25873
27697
|
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
25874
27698
|
domains: {
|
|
25875
27699
|
name: string;
|
|
@@ -26700,36 +28524,36 @@ declare const operationsByPath: {
|
|
|
26700
28524
|
}>;
|
|
26701
28525
|
'GET /v1/security/firewall/bypass': (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
26702
28526
|
result: {
|
|
26703
|
-
OwnerId
|
|
26704
|
-
Id
|
|
26705
|
-
Domain
|
|
26706
|
-
Ip
|
|
28527
|
+
OwnerId?: string;
|
|
28528
|
+
Id?: string;
|
|
28529
|
+
Domain?: string;
|
|
28530
|
+
Ip?: string;
|
|
26707
28531
|
Action?: "block" | "bypass";
|
|
26708
28532
|
ProjectId?: string;
|
|
26709
28533
|
IsProjectRule?: boolean;
|
|
26710
28534
|
Note?: string;
|
|
26711
|
-
CreatedAt
|
|
28535
|
+
CreatedAt?: string;
|
|
26712
28536
|
ActorId?: string;
|
|
26713
|
-
UpdatedAt
|
|
26714
|
-
UpdatedAtHour
|
|
28537
|
+
UpdatedAt?: string;
|
|
28538
|
+
UpdatedAtHour?: string;
|
|
26715
28539
|
DeletedAt?: string;
|
|
26716
28540
|
ExpiresAt?: number | null;
|
|
26717
28541
|
}[];
|
|
26718
28542
|
pagination: void | null;
|
|
26719
28543
|
} | {
|
|
26720
28544
|
result?: {
|
|
26721
|
-
OwnerId
|
|
26722
|
-
Id
|
|
26723
|
-
Domain
|
|
26724
|
-
Ip
|
|
28545
|
+
OwnerId?: string;
|
|
28546
|
+
Id?: string;
|
|
28547
|
+
Domain?: string;
|
|
28548
|
+
Ip?: string;
|
|
26725
28549
|
Action?: "block" | "bypass";
|
|
26726
28550
|
ProjectId?: string;
|
|
26727
28551
|
IsProjectRule?: boolean;
|
|
26728
28552
|
Note?: string;
|
|
26729
|
-
CreatedAt
|
|
28553
|
+
CreatedAt?: string;
|
|
26730
28554
|
ActorId?: string;
|
|
26731
|
-
UpdatedAt
|
|
26732
|
-
UpdatedAtHour
|
|
28555
|
+
UpdatedAt?: string;
|
|
28556
|
+
UpdatedAtHour?: string;
|
|
26733
28557
|
DeletedAt?: string;
|
|
26734
28558
|
ExpiresAt?: number | null;
|
|
26735
28559
|
}[];
|
|
@@ -26790,8 +28614,8 @@ declare const operationsByPath: {
|
|
|
26790
28614
|
'POST /v1/teams/{teamId}/members/teams/join': (variables: JoinTeamVariables, signal?: AbortSignal) => Promise<JoinTeamResponse>;
|
|
26791
28615
|
'PATCH /v1/teams/{teamId}/members/{uid}': (variables: UpdateTeamMemberVariables, signal?: AbortSignal) => Promise<UpdateTeamMemberResponse>;
|
|
26792
28616
|
'DELETE /v1/teams/{teamId}/members/{uid}': (variables: RemoveTeamMemberVariables, signal?: AbortSignal) => Promise<RemoveTeamMemberResponse>;
|
|
26793
|
-
'GET /v2/teams/{teamId}': (variables: GetTeamVariables, signal?: AbortSignal) => Promise<
|
|
26794
|
-
'PATCH /v2/teams/{teamId}': (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<
|
|
28617
|
+
'GET /v2/teams/{teamId}': (variables: GetTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
28618
|
+
'PATCH /v2/teams/{teamId}': (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
26795
28619
|
'GET /v2/teams': (variables: GetTeamsVariables, signal?: AbortSignal) => Promise<GetTeamsResponse>;
|
|
26796
28620
|
'POST /v1/teams': (variables: CreateTeamVariables, signal?: AbortSignal) => Promise<CreateTeamResponse>;
|
|
26797
28621
|
'DELETE /v1/teams/{teamId}': (variables: DeleteTeamVariables, signal?: AbortSignal) => Promise<DeleteTeamResponse>;
|
|
@@ -26813,7 +28637,7 @@ declare const operationsByPath: {
|
|
|
26813
28637
|
framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
|
|
26814
28638
|
latestDeployment?: string;
|
|
26815
28639
|
}[] | null;
|
|
26816
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
28640
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
26817
28641
|
id: string;
|
|
26818
28642
|
url: string;
|
|
26819
28643
|
ownerId: string;
|
|
@@ -26821,7 +28645,7 @@ declare const operationsByPath: {
|
|
|
26821
28645
|
updatedAt: number;
|
|
26822
28646
|
projectIds?: string[];
|
|
26823
28647
|
}[] | {
|
|
26824
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
28648
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
26825
28649
|
id: string;
|
|
26826
28650
|
url: string;
|
|
26827
28651
|
ownerId: string;
|
|
@@ -26836,6 +28660,7 @@ declare const operationsByPath: {
|
|
|
26836
28660
|
'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
26837
28661
|
'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
26838
28662
|
'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
28663
|
+
'PATCH /aliases/{id}/protection-bypass': (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
26839
28664
|
'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
|
|
26840
28665
|
'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
26841
28666
|
'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
@@ -26918,7 +28743,66 @@ declare class VercelApi {
|
|
|
26918
28743
|
'DELETE /data-cache/purge-all': (variables: DeleteDataCachePurgeAllVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
26919
28744
|
'PATCH /data-cache/billing-settings': (variables: PatchDataCacheBillingSettingsVariables, signal?: AbortSignal) => Promise<PatchDataCacheBillingSettingsResponse>;
|
|
26920
28745
|
'PATCH /v1/data-cache/projects/{projectId}': (variables: UpdateProjectDataCacheVariables, signal?: AbortSignal) => Promise<UpdateProjectDataCacheResponse>;
|
|
26921
|
-
'GET /v3/deployments/{idOrUrl}/events': (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<
|
|
28746
|
+
'GET /v3/deployments/{idOrUrl}/events': (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<({
|
|
28747
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
28748
|
+
created: number;
|
|
28749
|
+
payload: {
|
|
28750
|
+
deploymentId: string;
|
|
28751
|
+
info?: {
|
|
28752
|
+
type: string;
|
|
28753
|
+
name: string;
|
|
28754
|
+
entrypoint?: string;
|
|
28755
|
+
path?: string;
|
|
28756
|
+
step?: string;
|
|
28757
|
+
readyState?: string;
|
|
28758
|
+
};
|
|
28759
|
+
text?: string;
|
|
28760
|
+
id: string;
|
|
28761
|
+
date: number;
|
|
28762
|
+
serial: string;
|
|
28763
|
+
created?: number;
|
|
28764
|
+
statusCode?: number;
|
|
28765
|
+
requestId?: string;
|
|
28766
|
+
proxy?: {
|
|
28767
|
+
timestamp: number;
|
|
28768
|
+
method: string;
|
|
28769
|
+
host: string;
|
|
28770
|
+
path: string;
|
|
28771
|
+
statusCode?: number;
|
|
28772
|
+
userAgent: string[];
|
|
28773
|
+
referer: string;
|
|
28774
|
+
clientIp?: string;
|
|
28775
|
+
region: string;
|
|
28776
|
+
scheme?: string;
|
|
28777
|
+
responseByteSize?: number;
|
|
28778
|
+
cacheId?: string;
|
|
28779
|
+
pathType?: string;
|
|
28780
|
+
pathTypeVariant?: string;
|
|
28781
|
+
vercelId?: string;
|
|
28782
|
+
vercelCache?: "MISS" | "HIT" | "STALE" | "BYPASS" | "PRERENDER" | "REVALIDATED";
|
|
28783
|
+
lambdaRegion?: string;
|
|
28784
|
+
wafAction?: "log" | "challenge" | "deny" | "bypass" | "rate_limit";
|
|
28785
|
+
wafRuleId?: string;
|
|
28786
|
+
};
|
|
28787
|
+
};
|
|
28788
|
+
} | {
|
|
28789
|
+
created: number;
|
|
28790
|
+
date: number;
|
|
28791
|
+
deploymentId: string;
|
|
28792
|
+
id: string;
|
|
28793
|
+
info: {
|
|
28794
|
+
type: string;
|
|
28795
|
+
name: string;
|
|
28796
|
+
entrypoint?: string;
|
|
28797
|
+
path?: string;
|
|
28798
|
+
step?: string;
|
|
28799
|
+
readyState?: string;
|
|
28800
|
+
};
|
|
28801
|
+
serial: string;
|
|
28802
|
+
text?: string;
|
|
28803
|
+
type: "delimiter" | "command" | "stdout" | "stderr" | "exit" | "deployment-state" | "middleware" | "middleware-invocation" | "edge-function-invocation" | "metric" | "report" | "fatal";
|
|
28804
|
+
level?: "error" | "warning";
|
|
28805
|
+
} | null)[] | null>;
|
|
26922
28806
|
'PATCH /v1/deployments/{deploymentId}/integrations/{integrationConfigurationId}/resources/{resourceId}/actions/{action}': (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
26923
28807
|
'GET /v13/deployments/{idOrUrl}': (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
|
|
26924
28808
|
aliasAssignedAt?: number | boolean | null;
|
|
@@ -27026,7 +28910,37 @@ declare class VercelApi {
|
|
|
27026
28910
|
userAliases?: string[];
|
|
27027
28911
|
previewCommentsEnabled?: boolean;
|
|
27028
28912
|
ttyBuildLogs?: boolean;
|
|
27029
|
-
customEnvironment?:
|
|
28913
|
+
customEnvironment?: {
|
|
28914
|
+
id: string;
|
|
28915
|
+
slug: string;
|
|
28916
|
+
type: "production" | "preview" | "development";
|
|
28917
|
+
description?: string;
|
|
28918
|
+
branchMatcher?: {
|
|
28919
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
28920
|
+
pattern: string;
|
|
28921
|
+
};
|
|
28922
|
+
domains?: {
|
|
28923
|
+
name: string;
|
|
28924
|
+
apexName: string;
|
|
28925
|
+
projectId: string;
|
|
28926
|
+
redirect?: string | null;
|
|
28927
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
28928
|
+
gitBranch?: string | null;
|
|
28929
|
+
customEnvironmentId?: string | null;
|
|
28930
|
+
updatedAt?: number;
|
|
28931
|
+
createdAt?: number;
|
|
28932
|
+
verified: boolean;
|
|
28933
|
+
verification?: {
|
|
28934
|
+
type: string;
|
|
28935
|
+
domain: string;
|
|
28936
|
+
value: string;
|
|
28937
|
+
reason: string;
|
|
28938
|
+
}[];
|
|
28939
|
+
}[];
|
|
28940
|
+
currentDeploymentAliases?: string[];
|
|
28941
|
+
createdAt: number;
|
|
28942
|
+
updatedAt: number;
|
|
28943
|
+
} | {
|
|
27030
28944
|
id: string;
|
|
27031
28945
|
};
|
|
27032
28946
|
aliasWarning?: {
|
|
@@ -27119,7 +29033,7 @@ declare class VercelApi {
|
|
|
27119
29033
|
org?: string;
|
|
27120
29034
|
repo?: string;
|
|
27121
29035
|
} | {
|
|
27122
|
-
type: "github";
|
|
29036
|
+
type: "github-custom-host";
|
|
27123
29037
|
host: string;
|
|
27124
29038
|
ref: string;
|
|
27125
29039
|
sha: string;
|
|
@@ -27343,7 +29257,37 @@ declare class VercelApi {
|
|
|
27343
29257
|
userAliases?: string[];
|
|
27344
29258
|
previewCommentsEnabled?: boolean;
|
|
27345
29259
|
ttyBuildLogs?: boolean;
|
|
27346
|
-
customEnvironment?:
|
|
29260
|
+
customEnvironment?: {
|
|
29261
|
+
id: string;
|
|
29262
|
+
slug: string;
|
|
29263
|
+
type: "production" | "preview" | "development";
|
|
29264
|
+
description?: string;
|
|
29265
|
+
branchMatcher?: {
|
|
29266
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
29267
|
+
pattern: string;
|
|
29268
|
+
};
|
|
29269
|
+
domains?: {
|
|
29270
|
+
name: string;
|
|
29271
|
+
apexName: string;
|
|
29272
|
+
projectId: string;
|
|
29273
|
+
redirect?: string | null;
|
|
29274
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
29275
|
+
gitBranch?: string | null;
|
|
29276
|
+
customEnvironmentId?: string | null;
|
|
29277
|
+
updatedAt?: number;
|
|
29278
|
+
createdAt?: number;
|
|
29279
|
+
verified: boolean;
|
|
29280
|
+
verification?: {
|
|
29281
|
+
type: string;
|
|
29282
|
+
domain: string;
|
|
29283
|
+
value: string;
|
|
29284
|
+
reason: string;
|
|
29285
|
+
}[];
|
|
29286
|
+
}[];
|
|
29287
|
+
currentDeploymentAliases?: string[];
|
|
29288
|
+
createdAt: number;
|
|
29289
|
+
updatedAt: number;
|
|
29290
|
+
} | {
|
|
27347
29291
|
id: string;
|
|
27348
29292
|
};
|
|
27349
29293
|
aliasWarning?: {
|
|
@@ -27436,7 +29380,7 @@ declare class VercelApi {
|
|
|
27436
29380
|
org?: string;
|
|
27437
29381
|
repo?: string;
|
|
27438
29382
|
} | {
|
|
27439
|
-
type: "github";
|
|
29383
|
+
type: "github-custom-host";
|
|
27440
29384
|
host: string;
|
|
27441
29385
|
ref: string;
|
|
27442
29386
|
sha: string;
|
|
@@ -27771,6 +29715,11 @@ declare class VercelApi {
|
|
|
27771
29715
|
'GET /v2/integrations/log-drains': (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
27772
29716
|
'POST /v2/integrations/log-drains': (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
27773
29717
|
'DELETE /v1/integrations/log-drains/{id}': (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
29718
|
+
'GET /projects/{projectId}/logs-presets': (variables: GetProjectsProjectIdLogsPresetsVariables, signal?: AbortSignal) => Promise<GetProjectsProjectIdLogsPresetsResponse>;
|
|
29719
|
+
'POST /projects/{projectId}/logs-presets': (variables: PostProjectsProjectIdLogsPresetsVariables, signal?: AbortSignal) => Promise<Team>;
|
|
29720
|
+
'DELETE /projects/{projectId}/logs-presets/{id}': (variables: DeleteProjectsProjectIdLogsPresetsIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
29721
|
+
'PATCH /projects/{projectId}/logs-presets/{id}': (variables: PatchProjectsProjectIdLogsPresetsIdVariables, signal?: AbortSignal) => Promise<Team>;
|
|
29722
|
+
'GET /v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs': (variables: GetRuntimeLogsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27774
29723
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27775
29724
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27776
29725
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -27801,11 +29750,11 @@ declare class VercelApi {
|
|
|
27801
29750
|
'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
27802
29751
|
'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
27803
29752
|
'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27804
|
-
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
29753
|
+
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
27805
29754
|
'GET /v9/projects/{idOrName}/custom-environments': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
27806
|
-
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
27807
|
-
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
27808
|
-
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
29755
|
+
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
29756
|
+
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
29757
|
+
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
27809
29758
|
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
27810
29759
|
domains: {
|
|
27811
29760
|
name: string;
|
|
@@ -28636,36 +30585,36 @@ declare class VercelApi {
|
|
|
28636
30585
|
}>;
|
|
28637
30586
|
'GET /v1/security/firewall/bypass': (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
28638
30587
|
result: {
|
|
28639
|
-
OwnerId
|
|
28640
|
-
Id
|
|
28641
|
-
Domain
|
|
28642
|
-
Ip
|
|
30588
|
+
OwnerId?: string;
|
|
30589
|
+
Id?: string;
|
|
30590
|
+
Domain?: string;
|
|
30591
|
+
Ip?: string;
|
|
28643
30592
|
Action?: "block" | "bypass";
|
|
28644
30593
|
ProjectId?: string;
|
|
28645
30594
|
IsProjectRule?: boolean;
|
|
28646
30595
|
Note?: string;
|
|
28647
|
-
CreatedAt
|
|
30596
|
+
CreatedAt?: string;
|
|
28648
30597
|
ActorId?: string;
|
|
28649
|
-
UpdatedAt
|
|
28650
|
-
UpdatedAtHour
|
|
30598
|
+
UpdatedAt?: string;
|
|
30599
|
+
UpdatedAtHour?: string;
|
|
28651
30600
|
DeletedAt?: string;
|
|
28652
30601
|
ExpiresAt?: number | null;
|
|
28653
30602
|
}[];
|
|
28654
30603
|
pagination: void | null;
|
|
28655
30604
|
} | {
|
|
28656
30605
|
result?: {
|
|
28657
|
-
OwnerId
|
|
28658
|
-
Id
|
|
28659
|
-
Domain
|
|
28660
|
-
Ip
|
|
30606
|
+
OwnerId?: string;
|
|
30607
|
+
Id?: string;
|
|
30608
|
+
Domain?: string;
|
|
30609
|
+
Ip?: string;
|
|
28661
30610
|
Action?: "block" | "bypass";
|
|
28662
30611
|
ProjectId?: string;
|
|
28663
30612
|
IsProjectRule?: boolean;
|
|
28664
30613
|
Note?: string;
|
|
28665
|
-
CreatedAt
|
|
30614
|
+
CreatedAt?: string;
|
|
28666
30615
|
ActorId?: string;
|
|
28667
|
-
UpdatedAt
|
|
28668
|
-
UpdatedAtHour
|
|
30616
|
+
UpdatedAt?: string;
|
|
30617
|
+
UpdatedAtHour?: string;
|
|
28669
30618
|
DeletedAt?: string;
|
|
28670
30619
|
ExpiresAt?: number | null;
|
|
28671
30620
|
}[];
|
|
@@ -28726,8 +30675,8 @@ declare class VercelApi {
|
|
|
28726
30675
|
'POST /v1/teams/{teamId}/members/teams/join': (variables: JoinTeamVariables, signal?: AbortSignal) => Promise<JoinTeamResponse>;
|
|
28727
30676
|
'PATCH /v1/teams/{teamId}/members/{uid}': (variables: UpdateTeamMemberVariables, signal?: AbortSignal) => Promise<UpdateTeamMemberResponse>;
|
|
28728
30677
|
'DELETE /v1/teams/{teamId}/members/{uid}': (variables: RemoveTeamMemberVariables, signal?: AbortSignal) => Promise<RemoveTeamMemberResponse>;
|
|
28729
|
-
'GET /v2/teams/{teamId}': (variables: GetTeamVariables, signal?: AbortSignal) => Promise<
|
|
28730
|
-
'PATCH /v2/teams/{teamId}': (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<
|
|
30678
|
+
'GET /v2/teams/{teamId}': (variables: GetTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
30679
|
+
'PATCH /v2/teams/{teamId}': (variables: PatchTeamVariables, signal?: AbortSignal) => Promise<TeamLimited>;
|
|
28731
30680
|
'GET /v2/teams': (variables: GetTeamsVariables, signal?: AbortSignal) => Promise<GetTeamsResponse>;
|
|
28732
30681
|
'POST /v1/teams': (variables: CreateTeamVariables, signal?: AbortSignal) => Promise<CreateTeamResponse>;
|
|
28733
30682
|
'DELETE /v1/teams/{teamId}': (variables: DeleteTeamVariables, signal?: AbortSignal) => Promise<DeleteTeamResponse>;
|
|
@@ -28749,7 +30698,7 @@ declare class VercelApi {
|
|
|
28749
30698
|
framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
|
|
28750
30699
|
latestDeployment?: string;
|
|
28751
30700
|
}[] | null;
|
|
28752
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
30701
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
28753
30702
|
id: string;
|
|
28754
30703
|
url: string;
|
|
28755
30704
|
ownerId: string;
|
|
@@ -28757,7 +30706,7 @@ declare class VercelApi {
|
|
|
28757
30706
|
updatedAt: number;
|
|
28758
30707
|
projectIds?: string[];
|
|
28759
30708
|
}[] | {
|
|
28760
|
-
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
30709
|
+
events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "project.rolling-release.started" | "project.rolling-release.aborted" | "project.rolling-release.completed" | "project.rolling-release.approved" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
|
|
28761
30710
|
id: string;
|
|
28762
30711
|
url: string;
|
|
28763
30712
|
ownerId: string;
|
|
@@ -28772,6 +30721,7 @@ declare class VercelApi {
|
|
|
28772
30721
|
'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
28773
30722
|
'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
28774
30723
|
'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
30724
|
+
'PATCH /aliases/{id}/protection-bypass': (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
28775
30725
|
'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
|
|
28776
30726
|
'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
28777
30727
|
'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|