vercel-api-js 0.24.1 → 0.24.2
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 +16 -0
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +1814 -262
- package/dist/index.d.mts +1814 -262
- package/dist/index.d.ts +1814 -262
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
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
|
} | {
|
|
@@ -2185,9 +2242,10 @@ type Team = Record<string, any>;
|
|
|
2185
2242
|
*/
|
|
2186
2243
|
type TeamLimited = {
|
|
2187
2244
|
/**
|
|
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.
|
|
2245
|
+
* 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
2246
|
*/
|
|
2190
2247
|
limited: boolean;
|
|
2248
|
+
limitedBy: ('mfa' | 'scope')[];
|
|
2191
2249
|
/**
|
|
2192
2250
|
* 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
2251
|
*/
|
|
@@ -2261,6 +2319,7 @@ type TeamLimited = {
|
|
|
2261
2319
|
*/
|
|
2262
2320
|
enforced: boolean;
|
|
2263
2321
|
};
|
|
2322
|
+
mfaEnforced?: boolean;
|
|
2264
2323
|
/**
|
|
2265
2324
|
* The Team's unique identifier.
|
|
2266
2325
|
*
|
|
@@ -2410,7 +2469,7 @@ type AuthUser = {
|
|
|
2410
2469
|
softBlock: {
|
|
2411
2470
|
blockedAt: number;
|
|
2412
2471
|
reason: 'BLOCKED_FOR_PLATFORM_ABUSE' | 'ENTERPRISE_TRIAL_ENDED' | 'FAIR_USE_LIMITS_EXCEEDED' | 'SUBSCRIPTION_CANCELED' | 'SUBSCRIPTION_EXPIRED' | 'UNPAID_INVOICE';
|
|
2413
|
-
blockedDueToOverageType?: '
|
|
2472
|
+
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
2473
|
} | null;
|
|
2415
2474
|
/**
|
|
2416
2475
|
* An object containing billing infomation associated with the User account.
|
|
@@ -2528,11 +2587,11 @@ type AuthUser = {
|
|
|
2528
2587
|
/**
|
|
2529
2588
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2530
2589
|
*/
|
|
2531
|
-
purchaseType?: 'enhanced';
|
|
2590
|
+
purchaseType?: 'enhanced' | 'ultra';
|
|
2532
2591
|
/**
|
|
2533
2592
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2534
2593
|
*/
|
|
2535
|
-
|
|
2594
|
+
isDefaultBuildMachine?: boolean;
|
|
2536
2595
|
/**
|
|
2537
2596
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2538
2597
|
*/
|
|
@@ -4441,7 +4500,76 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4441
4500
|
comment?: string;
|
|
4442
4501
|
customEnvironmentIds?: string[];
|
|
4443
4502
|
}[];
|
|
4444
|
-
customEnvironments?:
|
|
4503
|
+
customEnvironments?: {
|
|
4504
|
+
/**
|
|
4505
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
4506
|
+
*/
|
|
4507
|
+
id: string;
|
|
4508
|
+
/**
|
|
4509
|
+
* URL-friendly name of the environment
|
|
4510
|
+
*/
|
|
4511
|
+
slug: string;
|
|
4512
|
+
/**
|
|
4513
|
+
* The type of environment (production, preview, or development)
|
|
4514
|
+
*/
|
|
4515
|
+
type: 'development' | 'preview' | 'production';
|
|
4516
|
+
/**
|
|
4517
|
+
* Optional description of the environment's purpose
|
|
4518
|
+
*/
|
|
4519
|
+
description?: string;
|
|
4520
|
+
/**
|
|
4521
|
+
* Configuration for matching git branches to this environment
|
|
4522
|
+
*/
|
|
4523
|
+
branchMatcher?: {
|
|
4524
|
+
/**
|
|
4525
|
+
* The type of matching to perform
|
|
4526
|
+
*/
|
|
4527
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
4528
|
+
/**
|
|
4529
|
+
* The pattern to match against branch names
|
|
4530
|
+
*/
|
|
4531
|
+
pattern: string;
|
|
4532
|
+
};
|
|
4533
|
+
/**
|
|
4534
|
+
* List of domains associated with this environment
|
|
4535
|
+
*/
|
|
4536
|
+
domains?: {
|
|
4537
|
+
name: string;
|
|
4538
|
+
apexName: string;
|
|
4539
|
+
projectId: string;
|
|
4540
|
+
redirect?: string | null;
|
|
4541
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
4542
|
+
gitBranch?: string | null;
|
|
4543
|
+
customEnvironmentId?: string | null;
|
|
4544
|
+
updatedAt?: number;
|
|
4545
|
+
createdAt?: number;
|
|
4546
|
+
/**
|
|
4547
|
+
* `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.
|
|
4548
|
+
*/
|
|
4549
|
+
verified: boolean;
|
|
4550
|
+
/**
|
|
4551
|
+
* 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`.
|
|
4552
|
+
*/
|
|
4553
|
+
verification?: {
|
|
4554
|
+
type: string;
|
|
4555
|
+
domain: string;
|
|
4556
|
+
value: string;
|
|
4557
|
+
reason: string;
|
|
4558
|
+
}[];
|
|
4559
|
+
}[];
|
|
4560
|
+
/**
|
|
4561
|
+
* List of aliases for the current deployment
|
|
4562
|
+
*/
|
|
4563
|
+
currentDeploymentAliases?: string[];
|
|
4564
|
+
/**
|
|
4565
|
+
* Timestamp when the environment was created
|
|
4566
|
+
*/
|
|
4567
|
+
createdAt: number;
|
|
4568
|
+
/**
|
|
4569
|
+
* Timestamp when the environment was last updated
|
|
4570
|
+
*/
|
|
4571
|
+
updatedAt: number;
|
|
4572
|
+
}[];
|
|
4445
4573
|
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
4574
|
gitForkProtection?: boolean;
|
|
4447
4575
|
gitLFS?: boolean;
|
|
@@ -4669,7 +4797,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4669
4797
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4670
4798
|
functionZeroConfigFailover?: boolean;
|
|
4671
4799
|
elasticConcurrencyEnabled?: boolean;
|
|
4672
|
-
buildMachineType?: 'enhanced';
|
|
4800
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
4673
4801
|
};
|
|
4674
4802
|
rollingRelease?: {
|
|
4675
4803
|
/**
|
|
@@ -4696,6 +4824,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4696
4824
|
* Whether or not this stage requires approval to proceed.
|
|
4697
4825
|
*/
|
|
4698
4826
|
requireApproval?: boolean;
|
|
4827
|
+
/**
|
|
4828
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
4829
|
+
*/
|
|
4830
|
+
duration?: number;
|
|
4699
4831
|
}[] | null;
|
|
4700
4832
|
} | null;
|
|
4701
4833
|
defaultResourceConfig: {
|
|
@@ -4705,7 +4837,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4705
4837
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4706
4838
|
functionZeroConfigFailover?: boolean;
|
|
4707
4839
|
elasticConcurrencyEnabled?: boolean;
|
|
4708
|
-
buildMachineType?: 'enhanced';
|
|
4840
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
4709
4841
|
};
|
|
4710
4842
|
rootDirectory?: string | null;
|
|
4711
4843
|
serverlessFunctionRegion?: string | null;
|
|
@@ -4890,6 +5022,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4890
5022
|
observabilityConfiguration?: ACLAction[];
|
|
4891
5023
|
observabilityNotebook?: ACLAction[];
|
|
4892
5024
|
openTelemetryEndpoint?: ACLAction[];
|
|
5025
|
+
vercelAppInstallation?: ACLAction[];
|
|
4893
5026
|
paymentMethod?: ACLAction[];
|
|
4894
5027
|
permissions?: ACLAction[];
|
|
4895
5028
|
postgres?: ACLAction[];
|
|
@@ -5005,12 +5138,21 @@ type UpdateProjectDataCacheResponse = {
|
|
|
5005
5138
|
lastAliasRequest?: {
|
|
5006
5139
|
fromDeploymentId: string;
|
|
5007
5140
|
toDeploymentId: string;
|
|
5141
|
+
/**
|
|
5142
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
5143
|
+
*/
|
|
5144
|
+
fromRollingReleaseId?: string;
|
|
5008
5145
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
5009
5146
|
requestedAt: number;
|
|
5010
5147
|
type: 'promote' | 'rollback';
|
|
5011
5148
|
} | null;
|
|
5012
5149
|
protectionBypass?: {
|
|
5013
5150
|
[key: string]: {
|
|
5151
|
+
createdAt: number;
|
|
5152
|
+
createdBy: string;
|
|
5153
|
+
scope: 'integration-automation-bypass';
|
|
5154
|
+
integrationId: string;
|
|
5155
|
+
} | {
|
|
5014
5156
|
createdAt: number;
|
|
5015
5157
|
createdBy: string;
|
|
5016
5158
|
scope: 'automation-bypass';
|
|
@@ -5018,14 +5160,14 @@ type UpdateProjectDataCacheResponse = {
|
|
|
5018
5160
|
};
|
|
5019
5161
|
hasActiveBranches?: boolean;
|
|
5020
5162
|
trustedIps?: {
|
|
5021
|
-
deploymentType: '
|
|
5163
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
5022
5164
|
addresses: {
|
|
5023
5165
|
value: string;
|
|
5024
5166
|
note?: string;
|
|
5025
5167
|
}[];
|
|
5026
5168
|
protectionMode: 'additional' | 'exclusive';
|
|
5027
5169
|
} | {
|
|
5028
|
-
deploymentType: '
|
|
5170
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
5029
5171
|
} | null;
|
|
5030
5172
|
gitComments?: {
|
|
5031
5173
|
/**
|
|
@@ -5425,7 +5567,76 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5425
5567
|
userAliases?: string[];
|
|
5426
5568
|
previewCommentsEnabled?: boolean;
|
|
5427
5569
|
ttyBuildLogs?: boolean;
|
|
5428
|
-
customEnvironment?:
|
|
5570
|
+
customEnvironment?: {
|
|
5571
|
+
/**
|
|
5572
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
5573
|
+
*/
|
|
5574
|
+
id: string;
|
|
5575
|
+
/**
|
|
5576
|
+
* URL-friendly name of the environment
|
|
5577
|
+
*/
|
|
5578
|
+
slug: string;
|
|
5579
|
+
/**
|
|
5580
|
+
* The type of environment (production, preview, or development)
|
|
5581
|
+
*/
|
|
5582
|
+
type: "production" | "preview" | "development";
|
|
5583
|
+
/**
|
|
5584
|
+
* Optional description of the environment's purpose
|
|
5585
|
+
*/
|
|
5586
|
+
description?: string;
|
|
5587
|
+
/**
|
|
5588
|
+
* Configuration for matching git branches to this environment
|
|
5589
|
+
*/
|
|
5590
|
+
branchMatcher?: {
|
|
5591
|
+
/**
|
|
5592
|
+
* The type of matching to perform
|
|
5593
|
+
*/
|
|
5594
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
5595
|
+
/**
|
|
5596
|
+
* The pattern to match against branch names
|
|
5597
|
+
*/
|
|
5598
|
+
pattern: string;
|
|
5599
|
+
};
|
|
5600
|
+
/**
|
|
5601
|
+
* List of domains associated with this environment
|
|
5602
|
+
*/
|
|
5603
|
+
domains?: {
|
|
5604
|
+
name: string;
|
|
5605
|
+
apexName: string;
|
|
5606
|
+
projectId: string;
|
|
5607
|
+
redirect?: string | null;
|
|
5608
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
5609
|
+
gitBranch?: string | null;
|
|
5610
|
+
customEnvironmentId?: string | null;
|
|
5611
|
+
updatedAt?: number;
|
|
5612
|
+
createdAt?: number;
|
|
5613
|
+
/**
|
|
5614
|
+
* `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.
|
|
5615
|
+
*/
|
|
5616
|
+
verified: boolean;
|
|
5617
|
+
/**
|
|
5618
|
+
* 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`.
|
|
5619
|
+
*/
|
|
5620
|
+
verification?: {
|
|
5621
|
+
type: string;
|
|
5622
|
+
domain: string;
|
|
5623
|
+
value: string;
|
|
5624
|
+
reason: string;
|
|
5625
|
+
}[];
|
|
5626
|
+
}[];
|
|
5627
|
+
/**
|
|
5628
|
+
* List of aliases for the current deployment
|
|
5629
|
+
*/
|
|
5630
|
+
currentDeploymentAliases?: string[];
|
|
5631
|
+
/**
|
|
5632
|
+
* Timestamp when the environment was created
|
|
5633
|
+
*/
|
|
5634
|
+
createdAt: number;
|
|
5635
|
+
/**
|
|
5636
|
+
* Timestamp when the environment was last updated
|
|
5637
|
+
*/
|
|
5638
|
+
updatedAt: number;
|
|
5639
|
+
} | {
|
|
5429
5640
|
id: string;
|
|
5430
5641
|
};
|
|
5431
5642
|
aliasWarning?: {
|
|
@@ -5527,7 +5738,7 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5527
5738
|
org?: string;
|
|
5528
5739
|
repo?: string;
|
|
5529
5740
|
} | {
|
|
5530
|
-
type: "github";
|
|
5741
|
+
type: "github-custom-host";
|
|
5531
5742
|
host: string;
|
|
5532
5743
|
ref: string;
|
|
5533
5744
|
sha: string;
|
|
@@ -5802,7 +6013,76 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5802
6013
|
userAliases?: string[];
|
|
5803
6014
|
previewCommentsEnabled?: boolean;
|
|
5804
6015
|
ttyBuildLogs?: boolean;
|
|
5805
|
-
customEnvironment?:
|
|
6016
|
+
customEnvironment?: {
|
|
6017
|
+
/**
|
|
6018
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
6019
|
+
*/
|
|
6020
|
+
id: string;
|
|
6021
|
+
/**
|
|
6022
|
+
* URL-friendly name of the environment
|
|
6023
|
+
*/
|
|
6024
|
+
slug: string;
|
|
6025
|
+
/**
|
|
6026
|
+
* The type of environment (production, preview, or development)
|
|
6027
|
+
*/
|
|
6028
|
+
type: "production" | "preview" | "development";
|
|
6029
|
+
/**
|
|
6030
|
+
* Optional description of the environment's purpose
|
|
6031
|
+
*/
|
|
6032
|
+
description?: string;
|
|
6033
|
+
/**
|
|
6034
|
+
* Configuration for matching git branches to this environment
|
|
6035
|
+
*/
|
|
6036
|
+
branchMatcher?: {
|
|
6037
|
+
/**
|
|
6038
|
+
* The type of matching to perform
|
|
6039
|
+
*/
|
|
6040
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
6041
|
+
/**
|
|
6042
|
+
* The pattern to match against branch names
|
|
6043
|
+
*/
|
|
6044
|
+
pattern: string;
|
|
6045
|
+
};
|
|
6046
|
+
/**
|
|
6047
|
+
* List of domains associated with this environment
|
|
6048
|
+
*/
|
|
6049
|
+
domains?: {
|
|
6050
|
+
name: string;
|
|
6051
|
+
apexName: string;
|
|
6052
|
+
projectId: string;
|
|
6053
|
+
redirect?: string | null;
|
|
6054
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
6055
|
+
gitBranch?: string | null;
|
|
6056
|
+
customEnvironmentId?: string | null;
|
|
6057
|
+
updatedAt?: number;
|
|
6058
|
+
createdAt?: number;
|
|
6059
|
+
/**
|
|
6060
|
+
* `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.
|
|
6061
|
+
*/
|
|
6062
|
+
verified: boolean;
|
|
6063
|
+
/**
|
|
6064
|
+
* 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`.
|
|
6065
|
+
*/
|
|
6066
|
+
verification?: {
|
|
6067
|
+
type: string;
|
|
6068
|
+
domain: string;
|
|
6069
|
+
value: string;
|
|
6070
|
+
reason: string;
|
|
6071
|
+
}[];
|
|
6072
|
+
}[];
|
|
6073
|
+
/**
|
|
6074
|
+
* List of aliases for the current deployment
|
|
6075
|
+
*/
|
|
6076
|
+
currentDeploymentAliases?: string[];
|
|
6077
|
+
/**
|
|
6078
|
+
* Timestamp when the environment was created
|
|
6079
|
+
*/
|
|
6080
|
+
createdAt: number;
|
|
6081
|
+
/**
|
|
6082
|
+
* Timestamp when the environment was last updated
|
|
6083
|
+
*/
|
|
6084
|
+
updatedAt: number;
|
|
6085
|
+
} | {
|
|
5806
6086
|
id: string;
|
|
5807
6087
|
};
|
|
5808
6088
|
aliasWarning?: {
|
|
@@ -5904,7 +6184,7 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5904
6184
|
org?: string;
|
|
5905
6185
|
repo?: string;
|
|
5906
6186
|
} | {
|
|
5907
|
-
type: "github";
|
|
6187
|
+
type: "github-custom-host";
|
|
5908
6188
|
host: string;
|
|
5909
6189
|
ref: string;
|
|
5910
6190
|
sha: string;
|
|
@@ -6084,10 +6364,10 @@ type CreateDeploymentResponse = {
|
|
|
6084
6364
|
initReadyAt?: number;
|
|
6085
6365
|
isFirstBranchDeployment?: boolean;
|
|
6086
6366
|
lambdas?: {
|
|
6087
|
-
id?: string;
|
|
6088
6367
|
createdAt?: number;
|
|
6089
|
-
|
|
6368
|
+
id?: string;
|
|
6090
6369
|
readyState?: 'BUILDING' | 'ERROR' | 'INITIALIZING' | 'READY';
|
|
6370
|
+
entrypoint?: string | null;
|
|
6091
6371
|
readyStateAt?: number;
|
|
6092
6372
|
output: {
|
|
6093
6373
|
path: string;
|
|
@@ -6106,31 +6386,100 @@ type CreateDeploymentResponse = {
|
|
|
6106
6386
|
userAliases?: string[];
|
|
6107
6387
|
previewCommentsEnabled?: boolean;
|
|
6108
6388
|
ttyBuildLogs?: boolean;
|
|
6109
|
-
customEnvironment?:
|
|
6389
|
+
customEnvironment?: {
|
|
6390
|
+
/**
|
|
6391
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
6392
|
+
*/
|
|
6110
6393
|
id: string;
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6394
|
+
/**
|
|
6395
|
+
* URL-friendly name of the environment
|
|
6396
|
+
*/
|
|
6397
|
+
slug: string;
|
|
6398
|
+
/**
|
|
6399
|
+
* The type of environment (production, preview, or development)
|
|
6400
|
+
*/
|
|
6401
|
+
type: 'production' | 'preview' | 'development';
|
|
6402
|
+
/**
|
|
6403
|
+
* Optional description of the environment's purpose
|
|
6404
|
+
*/
|
|
6405
|
+
description?: string;
|
|
6406
|
+
/**
|
|
6407
|
+
* Configuration for matching git branches to this environment
|
|
6408
|
+
*/
|
|
6409
|
+
branchMatcher?: {
|
|
6410
|
+
/**
|
|
6411
|
+
* The type of matching to perform
|
|
6412
|
+
*/
|
|
6413
|
+
type: 'endsWith' | 'startsWith' | 'equals';
|
|
6414
|
+
/**
|
|
6415
|
+
* The pattern to match against branch names
|
|
6416
|
+
*/
|
|
6417
|
+
pattern: string;
|
|
6418
|
+
};
|
|
6419
|
+
/**
|
|
6420
|
+
* List of domains associated with this environment
|
|
6421
|
+
*/
|
|
6422
|
+
domains?: {
|
|
6423
|
+
name: string;
|
|
6424
|
+
apexName: string;
|
|
6425
|
+
projectId: string;
|
|
6426
|
+
redirect?: string | null;
|
|
6427
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
6428
|
+
gitBranch?: string | null;
|
|
6429
|
+
customEnvironmentId?: string | null;
|
|
6430
|
+
updatedAt?: number;
|
|
6431
|
+
createdAt?: number;
|
|
6432
|
+
/**
|
|
6433
|
+
* `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.
|
|
6434
|
+
*/
|
|
6435
|
+
verified: boolean;
|
|
6436
|
+
/**
|
|
6437
|
+
* 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`.
|
|
6438
|
+
*/
|
|
6439
|
+
verification?: {
|
|
6440
|
+
type: string;
|
|
6441
|
+
domain: string;
|
|
6442
|
+
value: string;
|
|
6443
|
+
reason: string;
|
|
6444
|
+
}[];
|
|
6445
|
+
}[];
|
|
6446
|
+
/**
|
|
6447
|
+
* List of aliases for the current deployment
|
|
6448
|
+
*/
|
|
6449
|
+
currentDeploymentAliases?: string[];
|
|
6450
|
+
/**
|
|
6451
|
+
* Timestamp when the environment was created
|
|
6452
|
+
*/
|
|
6453
|
+
createdAt: number;
|
|
6454
|
+
/**
|
|
6455
|
+
* Timestamp when the environment was last updated
|
|
6456
|
+
*/
|
|
6457
|
+
updatedAt: number;
|
|
6458
|
+
} | {
|
|
6459
|
+
id: string;
|
|
6460
|
+
};
|
|
6461
|
+
type: 'LAMBDAS';
|
|
6462
|
+
name: string;
|
|
6463
|
+
createdAt: number;
|
|
6464
|
+
deletedAt?: number | null;
|
|
6465
|
+
id: string;
|
|
6466
|
+
version: 2;
|
|
6467
|
+
/**
|
|
6468
|
+
* applies to custom domains only, defaults to `true`
|
|
6469
|
+
*/
|
|
6470
|
+
autoAssignCustomDomains?: boolean;
|
|
6471
|
+
gitSource?: {
|
|
6472
|
+
type: 'github';
|
|
6473
|
+
repoId: string | number;
|
|
6474
|
+
ref?: string | null;
|
|
6475
|
+
sha?: string;
|
|
6476
|
+
prId?: number | null;
|
|
6477
|
+
} | {
|
|
6478
|
+
type: 'github';
|
|
6479
|
+
org: string;
|
|
6480
|
+
repo: string;
|
|
6481
|
+
ref?: string | null;
|
|
6482
|
+
sha?: string;
|
|
6134
6483
|
prId?: number | null;
|
|
6135
6484
|
} | {
|
|
6136
6485
|
type: 'github-custom-host';
|
|
@@ -6180,7 +6529,7 @@ type CreateDeploymentResponse = {
|
|
|
6180
6529
|
org?: string;
|
|
6181
6530
|
repo?: string;
|
|
6182
6531
|
} | {
|
|
6183
|
-
type: 'github';
|
|
6532
|
+
type: 'github-custom-host';
|
|
6184
6533
|
host: string;
|
|
6185
6534
|
ref: string;
|
|
6186
6535
|
sha: string;
|
|
@@ -6378,7 +6727,7 @@ type CreateDeploymentResponse = {
|
|
|
6378
6727
|
*/
|
|
6379
6728
|
middleware?: number;
|
|
6380
6729
|
} | {
|
|
6381
|
-
handle: 'error' | '
|
|
6730
|
+
handle: 'error' | 'resource' | 'filesystem' | 'hit' | 'miss' | 'rewrite';
|
|
6382
6731
|
src?: string;
|
|
6383
6732
|
dest?: string;
|
|
6384
6733
|
status?: number;
|
|
@@ -6407,7 +6756,7 @@ type CreateDeploymentResponse = {
|
|
|
6407
6756
|
defaultBranch: string;
|
|
6408
6757
|
name: string;
|
|
6409
6758
|
private: boolean;
|
|
6410
|
-
ownerType: '
|
|
6759
|
+
ownerType: 'user' | 'team';
|
|
6411
6760
|
} | {
|
|
6412
6761
|
org: string;
|
|
6413
6762
|
repo: string;
|
|
@@ -6418,7 +6767,7 @@ type CreateDeploymentResponse = {
|
|
|
6418
6767
|
defaultBranch: string;
|
|
6419
6768
|
name: string;
|
|
6420
6769
|
private: boolean;
|
|
6421
|
-
ownerType: '
|
|
6770
|
+
ownerType: 'user' | 'team';
|
|
6422
6771
|
} | {
|
|
6423
6772
|
owner: string;
|
|
6424
6773
|
repoUuid: string;
|
|
@@ -6429,7 +6778,7 @@ type CreateDeploymentResponse = {
|
|
|
6429
6778
|
defaultBranch: string;
|
|
6430
6779
|
name: string;
|
|
6431
6780
|
private: boolean;
|
|
6432
|
-
ownerType: '
|
|
6781
|
+
ownerType: 'user' | 'team';
|
|
6433
6782
|
} | null;
|
|
6434
6783
|
flags?: {
|
|
6435
6784
|
definitions: {
|
|
@@ -6542,6 +6891,13 @@ type CreateDeploymentRequestBody = {
|
|
|
6542
6891
|
repo: string;
|
|
6543
6892
|
sha?: string;
|
|
6544
6893
|
type: 'github';
|
|
6894
|
+
} | {
|
|
6895
|
+
org: string;
|
|
6896
|
+
ref: string;
|
|
6897
|
+
repo: string;
|
|
6898
|
+
sha?: string;
|
|
6899
|
+
host: string;
|
|
6900
|
+
type: 'github-custom-host';
|
|
6545
6901
|
} | {
|
|
6546
6902
|
projectId: number | string;
|
|
6547
6903
|
ref: string;
|
|
@@ -6816,7 +7172,76 @@ type CancelDeploymentResponse = {
|
|
|
6816
7172
|
userAliases?: string[];
|
|
6817
7173
|
previewCommentsEnabled?: boolean;
|
|
6818
7174
|
ttyBuildLogs?: boolean;
|
|
6819
|
-
customEnvironment?:
|
|
7175
|
+
customEnvironment?: {
|
|
7176
|
+
/**
|
|
7177
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
7178
|
+
*/
|
|
7179
|
+
id: string;
|
|
7180
|
+
/**
|
|
7181
|
+
* URL-friendly name of the environment
|
|
7182
|
+
*/
|
|
7183
|
+
slug: string;
|
|
7184
|
+
/**
|
|
7185
|
+
* The type of environment (production, preview, or development)
|
|
7186
|
+
*/
|
|
7187
|
+
type: 'production' | 'preview' | 'development';
|
|
7188
|
+
/**
|
|
7189
|
+
* Optional description of the environment's purpose
|
|
7190
|
+
*/
|
|
7191
|
+
description?: string;
|
|
7192
|
+
/**
|
|
7193
|
+
* Configuration for matching git branches to this environment
|
|
7194
|
+
*/
|
|
7195
|
+
branchMatcher?: {
|
|
7196
|
+
/**
|
|
7197
|
+
* The type of matching to perform
|
|
7198
|
+
*/
|
|
7199
|
+
type: 'startsWith' | 'equals' | 'endsWith';
|
|
7200
|
+
/**
|
|
7201
|
+
* The pattern to match against branch names
|
|
7202
|
+
*/
|
|
7203
|
+
pattern: string;
|
|
7204
|
+
};
|
|
7205
|
+
/**
|
|
7206
|
+
* List of domains associated with this environment
|
|
7207
|
+
*/
|
|
7208
|
+
domains?: {
|
|
7209
|
+
name: string;
|
|
7210
|
+
apexName: string;
|
|
7211
|
+
projectId: string;
|
|
7212
|
+
redirect?: string | null;
|
|
7213
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
7214
|
+
gitBranch?: string | null;
|
|
7215
|
+
customEnvironmentId?: string | null;
|
|
7216
|
+
updatedAt?: number;
|
|
7217
|
+
createdAt?: number;
|
|
7218
|
+
/**
|
|
7219
|
+
* `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.
|
|
7220
|
+
*/
|
|
7221
|
+
verified: boolean;
|
|
7222
|
+
/**
|
|
7223
|
+
* 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`.
|
|
7224
|
+
*/
|
|
7225
|
+
verification?: {
|
|
7226
|
+
type: string;
|
|
7227
|
+
domain: string;
|
|
7228
|
+
value: string;
|
|
7229
|
+
reason: string;
|
|
7230
|
+
}[];
|
|
7231
|
+
}[];
|
|
7232
|
+
/**
|
|
7233
|
+
* List of aliases for the current deployment
|
|
7234
|
+
*/
|
|
7235
|
+
currentDeploymentAliases?: string[];
|
|
7236
|
+
/**
|
|
7237
|
+
* Timestamp when the environment was created
|
|
7238
|
+
*/
|
|
7239
|
+
createdAt: number;
|
|
7240
|
+
/**
|
|
7241
|
+
* Timestamp when the environment was last updated
|
|
7242
|
+
*/
|
|
7243
|
+
updatedAt: number;
|
|
7244
|
+
} | {
|
|
6820
7245
|
id: string;
|
|
6821
7246
|
};
|
|
6822
7247
|
id: string;
|
|
@@ -6915,7 +7340,7 @@ type CancelDeploymentResponse = {
|
|
|
6915
7340
|
org?: string;
|
|
6916
7341
|
repo?: string;
|
|
6917
7342
|
} | {
|
|
6918
|
-
type: 'github';
|
|
7343
|
+
type: 'github-custom-host';
|
|
6919
7344
|
host: string;
|
|
6920
7345
|
ref: string;
|
|
6921
7346
|
sha: string;
|
|
@@ -9233,11 +9658,17 @@ type ListUserEventsQueryParams = {
|
|
|
9233
9658
|
*/
|
|
9234
9659
|
types?: string;
|
|
9235
9660
|
/**
|
|
9236
|
-
*
|
|
9661
|
+
* Deprecated. Use `principalId` instead. If `principalId` and `userId` both exist, `principalId` will be used.
|
|
9237
9662
|
*
|
|
9238
9663
|
* @example aeIInYVk59zbFF2SxfyxxmuO
|
|
9239
9664
|
*/
|
|
9240
9665
|
userId?: string;
|
|
9666
|
+
/**
|
|
9667
|
+
* When retrieving events for a Team, the `principalId` parameter may be specified to filter events generated by a specific principal.
|
|
9668
|
+
*
|
|
9669
|
+
* @example aeIInYVk59zbFF2SxfyxxmuO
|
|
9670
|
+
*/
|
|
9671
|
+
principalId?: string;
|
|
9241
9672
|
/**
|
|
9242
9673
|
* When set to `true`, the response will include the `payload` field for each event.
|
|
9243
9674
|
*
|
|
@@ -11476,7 +11907,76 @@ type GetProjectsResponse = {
|
|
|
11476
11907
|
comment?: string;
|
|
11477
11908
|
customEnvironmentIds?: string[];
|
|
11478
11909
|
}[];
|
|
11479
|
-
customEnvironments?:
|
|
11910
|
+
customEnvironments?: {
|
|
11911
|
+
/**
|
|
11912
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
11913
|
+
*/
|
|
11914
|
+
id: string;
|
|
11915
|
+
/**
|
|
11916
|
+
* URL-friendly name of the environment
|
|
11917
|
+
*/
|
|
11918
|
+
slug: string;
|
|
11919
|
+
/**
|
|
11920
|
+
* The type of environment (production, preview, or development)
|
|
11921
|
+
*/
|
|
11922
|
+
type: 'development' | 'preview' | 'production';
|
|
11923
|
+
/**
|
|
11924
|
+
* Optional description of the environment's purpose
|
|
11925
|
+
*/
|
|
11926
|
+
description?: string;
|
|
11927
|
+
/**
|
|
11928
|
+
* Configuration for matching git branches to this environment
|
|
11929
|
+
*/
|
|
11930
|
+
branchMatcher?: {
|
|
11931
|
+
/**
|
|
11932
|
+
* The type of matching to perform
|
|
11933
|
+
*/
|
|
11934
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
11935
|
+
/**
|
|
11936
|
+
* The pattern to match against branch names
|
|
11937
|
+
*/
|
|
11938
|
+
pattern: string;
|
|
11939
|
+
};
|
|
11940
|
+
/**
|
|
11941
|
+
* List of domains associated with this environment
|
|
11942
|
+
*/
|
|
11943
|
+
domains?: {
|
|
11944
|
+
name: string;
|
|
11945
|
+
apexName: string;
|
|
11946
|
+
projectId: string;
|
|
11947
|
+
redirect?: string | null;
|
|
11948
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
11949
|
+
gitBranch?: string | null;
|
|
11950
|
+
customEnvironmentId?: string | null;
|
|
11951
|
+
updatedAt?: number;
|
|
11952
|
+
createdAt?: number;
|
|
11953
|
+
/**
|
|
11954
|
+
* `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.
|
|
11955
|
+
*/
|
|
11956
|
+
verified: boolean;
|
|
11957
|
+
/**
|
|
11958
|
+
* 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`.
|
|
11959
|
+
*/
|
|
11960
|
+
verification?: {
|
|
11961
|
+
type: string;
|
|
11962
|
+
domain: string;
|
|
11963
|
+
value: string;
|
|
11964
|
+
reason: string;
|
|
11965
|
+
}[];
|
|
11966
|
+
}[];
|
|
11967
|
+
/**
|
|
11968
|
+
* List of aliases for the current deployment
|
|
11969
|
+
*/
|
|
11970
|
+
currentDeploymentAliases?: string[];
|
|
11971
|
+
/**
|
|
11972
|
+
* Timestamp when the environment was created
|
|
11973
|
+
*/
|
|
11974
|
+
createdAt: number;
|
|
11975
|
+
/**
|
|
11976
|
+
* Timestamp when the environment was last updated
|
|
11977
|
+
*/
|
|
11978
|
+
updatedAt: number;
|
|
11979
|
+
}[];
|
|
11480
11980
|
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
11981
|
gitForkProtection?: boolean;
|
|
11482
11982
|
gitLFS?: boolean;
|
|
@@ -11704,7 +12204,7 @@ type GetProjectsResponse = {
|
|
|
11704
12204
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11705
12205
|
functionZeroConfigFailover?: boolean;
|
|
11706
12206
|
elasticConcurrencyEnabled?: boolean;
|
|
11707
|
-
buildMachineType?: 'enhanced';
|
|
12207
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
11708
12208
|
};
|
|
11709
12209
|
rollingRelease?: {
|
|
11710
12210
|
/**
|
|
@@ -11731,6 +12231,10 @@ type GetProjectsResponse = {
|
|
|
11731
12231
|
* Whether or not this stage requires approval to proceed.
|
|
11732
12232
|
*/
|
|
11733
12233
|
requireApproval?: boolean;
|
|
12234
|
+
/**
|
|
12235
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
12236
|
+
*/
|
|
12237
|
+
duration?: number;
|
|
11734
12238
|
}[] | null;
|
|
11735
12239
|
} | null;
|
|
11736
12240
|
defaultResourceConfig: {
|
|
@@ -11740,7 +12244,7 @@ type GetProjectsResponse = {
|
|
|
11740
12244
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11741
12245
|
functionZeroConfigFailover?: boolean;
|
|
11742
12246
|
elasticConcurrencyEnabled?: boolean;
|
|
11743
|
-
buildMachineType?: 'enhanced';
|
|
12247
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
11744
12248
|
};
|
|
11745
12249
|
rootDirectory?: string | null;
|
|
11746
12250
|
serverlessFunctionRegion?: string | null;
|
|
@@ -11925,6 +12429,7 @@ type GetProjectsResponse = {
|
|
|
11925
12429
|
observabilityConfiguration?: ACLAction[];
|
|
11926
12430
|
observabilityNotebook?: ACLAction[];
|
|
11927
12431
|
openTelemetryEndpoint?: ACLAction[];
|
|
12432
|
+
vercelAppInstallation?: ACLAction[];
|
|
11928
12433
|
paymentMethod?: ACLAction[];
|
|
11929
12434
|
permissions?: ACLAction[];
|
|
11930
12435
|
postgres?: ACLAction[];
|
|
@@ -12040,12 +12545,21 @@ type GetProjectsResponse = {
|
|
|
12040
12545
|
lastAliasRequest?: {
|
|
12041
12546
|
fromDeploymentId: string;
|
|
12042
12547
|
toDeploymentId: string;
|
|
12548
|
+
/**
|
|
12549
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
12550
|
+
*/
|
|
12551
|
+
fromRollingReleaseId?: string;
|
|
12043
12552
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
12044
12553
|
requestedAt: number;
|
|
12045
12554
|
type: 'promote' | 'rollback';
|
|
12046
12555
|
} | null;
|
|
12047
12556
|
protectionBypass?: {
|
|
12048
12557
|
[key: string]: {
|
|
12558
|
+
createdAt: number;
|
|
12559
|
+
createdBy: string;
|
|
12560
|
+
scope: 'integration-automation-bypass';
|
|
12561
|
+
integrationId: string;
|
|
12562
|
+
} | {
|
|
12049
12563
|
createdAt: number;
|
|
12050
12564
|
createdBy: string;
|
|
12051
12565
|
scope: 'automation-bypass';
|
|
@@ -12053,14 +12567,14 @@ type GetProjectsResponse = {
|
|
|
12053
12567
|
};
|
|
12054
12568
|
hasActiveBranches?: boolean;
|
|
12055
12569
|
trustedIps?: {
|
|
12056
|
-
deploymentType: '
|
|
12570
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12057
12571
|
addresses: {
|
|
12058
12572
|
value: string;
|
|
12059
12573
|
note?: string;
|
|
12060
12574
|
}[];
|
|
12061
12575
|
protectionMode: 'additional' | 'exclusive';
|
|
12062
12576
|
} | {
|
|
12063
|
-
deploymentType: '
|
|
12577
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12064
12578
|
} | null;
|
|
12065
12579
|
gitComments?: {
|
|
12066
12580
|
/**
|
|
@@ -12357,25 +12871,26 @@ type CreateProjectResponse = {
|
|
|
12357
12871
|
comment?: string;
|
|
12358
12872
|
customEnvironmentIds?: string[];
|
|
12359
12873
|
}[];
|
|
12360
|
-
customEnvironments?:
|
|
12361
|
-
|
|
12362
|
-
|
|
12363
|
-
|
|
12364
|
-
id: string;
|
|
12365
|
-
ipBuckets?: {
|
|
12366
|
-
bucket: string;
|
|
12367
|
-
supportUntil?: number;
|
|
12368
|
-
}[];
|
|
12369
|
-
latestDeployments?: {
|
|
12874
|
+
customEnvironments?: {
|
|
12875
|
+
/**
|
|
12876
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
12877
|
+
*/
|
|
12370
12878
|
id: string;
|
|
12371
|
-
|
|
12372
|
-
|
|
12373
|
-
|
|
12374
|
-
|
|
12375
|
-
|
|
12376
|
-
|
|
12377
|
-
|
|
12378
|
-
|
|
12879
|
+
/**
|
|
12880
|
+
* URL-friendly name of the environment
|
|
12881
|
+
*/
|
|
12882
|
+
slug: string;
|
|
12883
|
+
/**
|
|
12884
|
+
* The type of environment (production, preview, or development)
|
|
12885
|
+
*/
|
|
12886
|
+
type: 'development' | 'preview' | 'production';
|
|
12887
|
+
/**
|
|
12888
|
+
* Optional description of the environment's purpose
|
|
12889
|
+
*/
|
|
12890
|
+
description?: string;
|
|
12891
|
+
/**
|
|
12892
|
+
* Configuration for matching git branches to this environment
|
|
12893
|
+
*/
|
|
12379
12894
|
branchMatcher?: {
|
|
12380
12895
|
/**
|
|
12381
12896
|
* The type of matching to perform
|
|
@@ -12386,21 +12901,89 @@ type CreateProjectResponse = {
|
|
|
12386
12901
|
*/
|
|
12387
12902
|
pattern: string;
|
|
12388
12903
|
};
|
|
12389
|
-
|
|
12390
|
-
|
|
12391
|
-
|
|
12392
|
-
|
|
12393
|
-
|
|
12394
|
-
|
|
12395
|
-
|
|
12396
|
-
|
|
12397
|
-
|
|
12398
|
-
|
|
12399
|
-
|
|
12400
|
-
|
|
12401
|
-
|
|
12402
|
-
|
|
12403
|
-
|
|
12904
|
+
/**
|
|
12905
|
+
* List of domains associated with this environment
|
|
12906
|
+
*/
|
|
12907
|
+
domains?: {
|
|
12908
|
+
name: string;
|
|
12909
|
+
apexName: string;
|
|
12910
|
+
projectId: string;
|
|
12911
|
+
redirect?: string | null;
|
|
12912
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
12913
|
+
gitBranch?: string | null;
|
|
12914
|
+
customEnvironmentId?: string | null;
|
|
12915
|
+
updatedAt?: number;
|
|
12916
|
+
createdAt?: number;
|
|
12917
|
+
/**
|
|
12918
|
+
* `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.
|
|
12919
|
+
*/
|
|
12920
|
+
verified: boolean;
|
|
12921
|
+
/**
|
|
12922
|
+
* 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`.
|
|
12923
|
+
*/
|
|
12924
|
+
verification?: {
|
|
12925
|
+
type: string;
|
|
12926
|
+
domain: string;
|
|
12927
|
+
value: string;
|
|
12928
|
+
reason: string;
|
|
12929
|
+
}[];
|
|
12930
|
+
}[];
|
|
12931
|
+
/**
|
|
12932
|
+
* List of aliases for the current deployment
|
|
12933
|
+
*/
|
|
12934
|
+
currentDeploymentAliases?: string[];
|
|
12935
|
+
/**
|
|
12936
|
+
* Timestamp when the environment was created
|
|
12937
|
+
*/
|
|
12938
|
+
createdAt: number;
|
|
12939
|
+
/**
|
|
12940
|
+
* Timestamp when the environment was last updated
|
|
12941
|
+
*/
|
|
12942
|
+
updatedAt: number;
|
|
12943
|
+
}[];
|
|
12944
|
+
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;
|
|
12945
|
+
gitForkProtection?: boolean;
|
|
12946
|
+
gitLFS?: boolean;
|
|
12947
|
+
id: string;
|
|
12948
|
+
ipBuckets?: {
|
|
12949
|
+
bucket: string;
|
|
12950
|
+
supportUntil?: number;
|
|
12951
|
+
}[];
|
|
12952
|
+
latestDeployments?: {
|
|
12953
|
+
id: string;
|
|
12954
|
+
alias?: string[];
|
|
12955
|
+
aliasAssigned?: number | boolean | null;
|
|
12956
|
+
aliasError?: {
|
|
12957
|
+
code: string;
|
|
12958
|
+
message: string;
|
|
12959
|
+
} | null;
|
|
12960
|
+
aliasFinal?: string | null;
|
|
12961
|
+
automaticAliases?: string[];
|
|
12962
|
+
branchMatcher?: {
|
|
12963
|
+
/**
|
|
12964
|
+
* The type of matching to perform
|
|
12965
|
+
*/
|
|
12966
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
12967
|
+
/**
|
|
12968
|
+
* The pattern to match against branch names
|
|
12969
|
+
*/
|
|
12970
|
+
pattern: string;
|
|
12971
|
+
};
|
|
12972
|
+
buildingAt?: number;
|
|
12973
|
+
builds?: {
|
|
12974
|
+
use: string;
|
|
12975
|
+
src?: string;
|
|
12976
|
+
dest?: string;
|
|
12977
|
+
}[];
|
|
12978
|
+
checksConclusion?: 'canceled' | 'failed' | 'skipped' | 'succeeded';
|
|
12979
|
+
checksState?: 'completed' | 'registered' | 'running';
|
|
12980
|
+
connectBuildsEnabled?: boolean;
|
|
12981
|
+
connectConfigurationId?: string;
|
|
12982
|
+
createdAt: number;
|
|
12983
|
+
createdIn: string;
|
|
12984
|
+
creator: {
|
|
12985
|
+
email: string;
|
|
12986
|
+
githubLogin?: string;
|
|
12404
12987
|
gitlabLogin?: string;
|
|
12405
12988
|
uid: string;
|
|
12406
12989
|
username: string;
|
|
@@ -12585,7 +13168,7 @@ type CreateProjectResponse = {
|
|
|
12585
13168
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12586
13169
|
functionZeroConfigFailover?: boolean;
|
|
12587
13170
|
elasticConcurrencyEnabled?: boolean;
|
|
12588
|
-
buildMachineType?: 'enhanced';
|
|
13171
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
12589
13172
|
};
|
|
12590
13173
|
rollingRelease?: {
|
|
12591
13174
|
/**
|
|
@@ -12612,6 +13195,10 @@ type CreateProjectResponse = {
|
|
|
12612
13195
|
* Whether or not this stage requires approval to proceed.
|
|
12613
13196
|
*/
|
|
12614
13197
|
requireApproval?: boolean;
|
|
13198
|
+
/**
|
|
13199
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
13200
|
+
*/
|
|
13201
|
+
duration?: number;
|
|
12615
13202
|
}[] | null;
|
|
12616
13203
|
} | null;
|
|
12617
13204
|
defaultResourceConfig: {
|
|
@@ -12621,7 +13208,7 @@ type CreateProjectResponse = {
|
|
|
12621
13208
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12622
13209
|
functionZeroConfigFailover?: boolean;
|
|
12623
13210
|
elasticConcurrencyEnabled?: boolean;
|
|
12624
|
-
buildMachineType?: 'enhanced';
|
|
13211
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
12625
13212
|
};
|
|
12626
13213
|
rootDirectory?: string | null;
|
|
12627
13214
|
serverlessFunctionRegion?: string | null;
|
|
@@ -12806,6 +13393,7 @@ type CreateProjectResponse = {
|
|
|
12806
13393
|
observabilityConfiguration?: ACLAction[];
|
|
12807
13394
|
observabilityNotebook?: ACLAction[];
|
|
12808
13395
|
openTelemetryEndpoint?: ACLAction[];
|
|
13396
|
+
vercelAppInstallation?: ACLAction[];
|
|
12809
13397
|
paymentMethod?: ACLAction[];
|
|
12810
13398
|
permissions?: ACLAction[];
|
|
12811
13399
|
postgres?: ACLAction[];
|
|
@@ -12921,12 +13509,21 @@ type CreateProjectResponse = {
|
|
|
12921
13509
|
lastAliasRequest?: {
|
|
12922
13510
|
fromDeploymentId: string;
|
|
12923
13511
|
toDeploymentId: string;
|
|
13512
|
+
/**
|
|
13513
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
13514
|
+
*/
|
|
13515
|
+
fromRollingReleaseId?: string;
|
|
12924
13516
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
12925
13517
|
requestedAt: number;
|
|
12926
13518
|
type: 'promote' | 'rollback';
|
|
12927
13519
|
} | null;
|
|
12928
13520
|
protectionBypass?: {
|
|
12929
13521
|
[key: string]: {
|
|
13522
|
+
createdAt: number;
|
|
13523
|
+
createdBy: string;
|
|
13524
|
+
scope: 'integration-automation-bypass';
|
|
13525
|
+
integrationId: string;
|
|
13526
|
+
} | {
|
|
12930
13527
|
createdAt: number;
|
|
12931
13528
|
createdBy: string;
|
|
12932
13529
|
scope: 'automation-bypass';
|
|
@@ -12934,14 +13531,14 @@ type CreateProjectResponse = {
|
|
|
12934
13531
|
};
|
|
12935
13532
|
hasActiveBranches?: boolean;
|
|
12936
13533
|
trustedIps?: {
|
|
12937
|
-
deploymentType: '
|
|
13534
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12938
13535
|
addresses: {
|
|
12939
13536
|
value: string;
|
|
12940
13537
|
note?: string;
|
|
12941
13538
|
}[];
|
|
12942
13539
|
protectionMode: 'additional' | 'exclusive';
|
|
12943
13540
|
} | {
|
|
12944
|
-
deploymentType: '
|
|
13541
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
12945
13542
|
} | null;
|
|
12946
13543
|
gitComments?: {
|
|
12947
13544
|
/**
|
|
@@ -13059,6 +13656,14 @@ type CreateProjectResponse = {
|
|
|
13059
13656
|
tier?: 'advanced' | 'critical' | 'standard';
|
|
13060
13657
|
};
|
|
13061
13658
|
type CreateProjectRequestBody = {
|
|
13659
|
+
/**
|
|
13660
|
+
* Opt-in to preview toolbar on the project level
|
|
13661
|
+
*/
|
|
13662
|
+
enablePreviewFeedback?: boolean | null;
|
|
13663
|
+
/**
|
|
13664
|
+
* Opt-in to production toolbar on the project level
|
|
13665
|
+
*/
|
|
13666
|
+
enableProductionFeedback?: boolean | null;
|
|
13062
13667
|
/**
|
|
13063
13668
|
* The build command for this project. When `null` is used this value will be automatically detected
|
|
13064
13669
|
*
|
|
@@ -13185,6 +13790,31 @@ type CreateProjectRequestBody = {
|
|
|
13185
13790
|
* Opt-in to skip deployments when there are no changes to the root directory and its dependencies
|
|
13186
13791
|
*/
|
|
13187
13792
|
enableAffectedProjectsDeployments?: boolean;
|
|
13793
|
+
/**
|
|
13794
|
+
* Specifies resource override configuration for the project
|
|
13795
|
+
*/
|
|
13796
|
+
resourceConfig?: {
|
|
13797
|
+
fluid?: boolean;
|
|
13798
|
+
/**
|
|
13799
|
+
* The regions to deploy Vercel Functions to for this project
|
|
13800
|
+
*
|
|
13801
|
+
* @minItems 1
|
|
13802
|
+
* @uniqueItems true
|
|
13803
|
+
*/
|
|
13804
|
+
functionDefaultRegions?: string[];
|
|
13805
|
+
/**
|
|
13806
|
+
* @maximum 900
|
|
13807
|
+
* @minimum 1
|
|
13808
|
+
*/
|
|
13809
|
+
functionDefaultTimeout?: number;
|
|
13810
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13811
|
+
/**
|
|
13812
|
+
* Specifies whether Zero Config Failover is enabled for this project.
|
|
13813
|
+
*/
|
|
13814
|
+
functionZeroConfigFailover?: boolean;
|
|
13815
|
+
elasticConcurrencyEnabled?: boolean;
|
|
13816
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
13817
|
+
};
|
|
13188
13818
|
};
|
|
13189
13819
|
type CreateProjectVariables = {
|
|
13190
13820
|
body: CreateProjectRequestBody;
|
|
@@ -13371,7 +14001,76 @@ type GetProjectResponse = {
|
|
|
13371
14001
|
comment?: string;
|
|
13372
14002
|
customEnvironmentIds?: string[];
|
|
13373
14003
|
}[];
|
|
13374
|
-
customEnvironments?:
|
|
14004
|
+
customEnvironments?: {
|
|
14005
|
+
/**
|
|
14006
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
14007
|
+
*/
|
|
14008
|
+
id: string;
|
|
14009
|
+
/**
|
|
14010
|
+
* URL-friendly name of the environment
|
|
14011
|
+
*/
|
|
14012
|
+
slug: string;
|
|
14013
|
+
/**
|
|
14014
|
+
* The type of environment (production, preview, or development)
|
|
14015
|
+
*/
|
|
14016
|
+
type: 'development' | 'preview' | 'production';
|
|
14017
|
+
/**
|
|
14018
|
+
* Optional description of the environment's purpose
|
|
14019
|
+
*/
|
|
14020
|
+
description?: string;
|
|
14021
|
+
/**
|
|
14022
|
+
* Configuration for matching git branches to this environment
|
|
14023
|
+
*/
|
|
14024
|
+
branchMatcher?: {
|
|
14025
|
+
/**
|
|
14026
|
+
* The type of matching to perform
|
|
14027
|
+
*/
|
|
14028
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
14029
|
+
/**
|
|
14030
|
+
* The pattern to match against branch names
|
|
14031
|
+
*/
|
|
14032
|
+
pattern: string;
|
|
14033
|
+
};
|
|
14034
|
+
/**
|
|
14035
|
+
* List of domains associated with this environment
|
|
14036
|
+
*/
|
|
14037
|
+
domains?: {
|
|
14038
|
+
name: string;
|
|
14039
|
+
apexName: string;
|
|
14040
|
+
projectId: string;
|
|
14041
|
+
redirect?: string | null;
|
|
14042
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
14043
|
+
gitBranch?: string | null;
|
|
14044
|
+
customEnvironmentId?: string | null;
|
|
14045
|
+
updatedAt?: number;
|
|
14046
|
+
createdAt?: number;
|
|
14047
|
+
/**
|
|
14048
|
+
* `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.
|
|
14049
|
+
*/
|
|
14050
|
+
verified: boolean;
|
|
14051
|
+
/**
|
|
14052
|
+
* 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`.
|
|
14053
|
+
*/
|
|
14054
|
+
verification?: {
|
|
14055
|
+
type: string;
|
|
14056
|
+
domain: string;
|
|
14057
|
+
value: string;
|
|
14058
|
+
reason: string;
|
|
14059
|
+
}[];
|
|
14060
|
+
}[];
|
|
14061
|
+
/**
|
|
14062
|
+
* List of aliases for the current deployment
|
|
14063
|
+
*/
|
|
14064
|
+
currentDeploymentAliases?: string[];
|
|
14065
|
+
/**
|
|
14066
|
+
* Timestamp when the environment was created
|
|
14067
|
+
*/
|
|
14068
|
+
createdAt: number;
|
|
14069
|
+
/**
|
|
14070
|
+
* Timestamp when the environment was last updated
|
|
14071
|
+
*/
|
|
14072
|
+
updatedAt: number;
|
|
14073
|
+
}[];
|
|
13375
14074
|
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;
|
|
13376
14075
|
gitForkProtection?: boolean;
|
|
13377
14076
|
gitLFS?: boolean;
|
|
@@ -13599,7 +14298,7 @@ type GetProjectResponse = {
|
|
|
13599
14298
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13600
14299
|
functionZeroConfigFailover?: boolean;
|
|
13601
14300
|
elasticConcurrencyEnabled?: boolean;
|
|
13602
|
-
buildMachineType?: 'enhanced';
|
|
14301
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
13603
14302
|
};
|
|
13604
14303
|
rollingRelease?: {
|
|
13605
14304
|
/**
|
|
@@ -13626,6 +14325,10 @@ type GetProjectResponse = {
|
|
|
13626
14325
|
* Whether or not this stage requires approval to proceed.
|
|
13627
14326
|
*/
|
|
13628
14327
|
requireApproval?: boolean;
|
|
14328
|
+
/**
|
|
14329
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
14330
|
+
*/
|
|
14331
|
+
duration?: number;
|
|
13629
14332
|
}[] | null;
|
|
13630
14333
|
} | null;
|
|
13631
14334
|
defaultResourceConfig: {
|
|
@@ -13635,7 +14338,7 @@ type GetProjectResponse = {
|
|
|
13635
14338
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13636
14339
|
functionZeroConfigFailover?: boolean;
|
|
13637
14340
|
elasticConcurrencyEnabled?: boolean;
|
|
13638
|
-
buildMachineType?: 'enhanced';
|
|
14341
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
13639
14342
|
};
|
|
13640
14343
|
rootDirectory?: string | null;
|
|
13641
14344
|
serverlessFunctionRegion?: string | null;
|
|
@@ -13820,6 +14523,7 @@ type GetProjectResponse = {
|
|
|
13820
14523
|
observabilityConfiguration?: ACLAction[];
|
|
13821
14524
|
observabilityNotebook?: ACLAction[];
|
|
13822
14525
|
openTelemetryEndpoint?: ACLAction[];
|
|
14526
|
+
vercelAppInstallation?: ACLAction[];
|
|
13823
14527
|
paymentMethod?: ACLAction[];
|
|
13824
14528
|
permissions?: ACLAction[];
|
|
13825
14529
|
postgres?: ACLAction[];
|
|
@@ -13935,12 +14639,21 @@ type GetProjectResponse = {
|
|
|
13935
14639
|
lastAliasRequest?: {
|
|
13936
14640
|
fromDeploymentId: string;
|
|
13937
14641
|
toDeploymentId: string;
|
|
14642
|
+
/**
|
|
14643
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
14644
|
+
*/
|
|
14645
|
+
fromRollingReleaseId?: string;
|
|
13938
14646
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
13939
14647
|
requestedAt: number;
|
|
13940
14648
|
type: 'promote' | 'rollback';
|
|
13941
14649
|
} | null;
|
|
13942
14650
|
protectionBypass?: {
|
|
13943
14651
|
[key: string]: {
|
|
14652
|
+
createdAt: number;
|
|
14653
|
+
createdBy: string;
|
|
14654
|
+
scope: 'integration-automation-bypass';
|
|
14655
|
+
integrationId: string;
|
|
14656
|
+
} | {
|
|
13944
14657
|
createdAt: number;
|
|
13945
14658
|
createdBy: string;
|
|
13946
14659
|
scope: 'automation-bypass';
|
|
@@ -13948,14 +14661,14 @@ type GetProjectResponse = {
|
|
|
13948
14661
|
};
|
|
13949
14662
|
hasActiveBranches?: boolean;
|
|
13950
14663
|
trustedIps?: {
|
|
13951
|
-
deploymentType: '
|
|
14664
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
13952
14665
|
addresses: {
|
|
13953
14666
|
value: string;
|
|
13954
14667
|
note?: string;
|
|
13955
14668
|
}[];
|
|
13956
14669
|
protectionMode: 'additional' | 'exclusive';
|
|
13957
14670
|
} | {
|
|
13958
|
-
deploymentType: '
|
|
14671
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
13959
14672
|
} | null;
|
|
13960
14673
|
gitComments?: {
|
|
13961
14674
|
/**
|
|
@@ -14259,7 +14972,76 @@ type UpdateProjectResponse = {
|
|
|
14259
14972
|
comment?: string;
|
|
14260
14973
|
customEnvironmentIds?: string[];
|
|
14261
14974
|
}[];
|
|
14262
|
-
customEnvironments?:
|
|
14975
|
+
customEnvironments?: {
|
|
14976
|
+
/**
|
|
14977
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
14978
|
+
*/
|
|
14979
|
+
id: string;
|
|
14980
|
+
/**
|
|
14981
|
+
* URL-friendly name of the environment
|
|
14982
|
+
*/
|
|
14983
|
+
slug: string;
|
|
14984
|
+
/**
|
|
14985
|
+
* The type of environment (production, preview, or development)
|
|
14986
|
+
*/
|
|
14987
|
+
type: 'development' | 'preview' | 'production';
|
|
14988
|
+
/**
|
|
14989
|
+
* Optional description of the environment's purpose
|
|
14990
|
+
*/
|
|
14991
|
+
description?: string;
|
|
14992
|
+
/**
|
|
14993
|
+
* Configuration for matching git branches to this environment
|
|
14994
|
+
*/
|
|
14995
|
+
branchMatcher?: {
|
|
14996
|
+
/**
|
|
14997
|
+
* The type of matching to perform
|
|
14998
|
+
*/
|
|
14999
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
15000
|
+
/**
|
|
15001
|
+
* The pattern to match against branch names
|
|
15002
|
+
*/
|
|
15003
|
+
pattern: string;
|
|
15004
|
+
};
|
|
15005
|
+
/**
|
|
15006
|
+
* List of domains associated with this environment
|
|
15007
|
+
*/
|
|
15008
|
+
domains?: {
|
|
15009
|
+
name: string;
|
|
15010
|
+
apexName: string;
|
|
15011
|
+
projectId: string;
|
|
15012
|
+
redirect?: string | null;
|
|
15013
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
15014
|
+
gitBranch?: string | null;
|
|
15015
|
+
customEnvironmentId?: string | null;
|
|
15016
|
+
updatedAt?: number;
|
|
15017
|
+
createdAt?: number;
|
|
15018
|
+
/**
|
|
15019
|
+
* `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.
|
|
15020
|
+
*/
|
|
15021
|
+
verified: boolean;
|
|
15022
|
+
/**
|
|
15023
|
+
* 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`.
|
|
15024
|
+
*/
|
|
15025
|
+
verification?: {
|
|
15026
|
+
type: string;
|
|
15027
|
+
domain: string;
|
|
15028
|
+
value: string;
|
|
15029
|
+
reason: string;
|
|
15030
|
+
}[];
|
|
15031
|
+
}[];
|
|
15032
|
+
/**
|
|
15033
|
+
* List of aliases for the current deployment
|
|
15034
|
+
*/
|
|
15035
|
+
currentDeploymentAliases?: string[];
|
|
15036
|
+
/**
|
|
15037
|
+
* Timestamp when the environment was created
|
|
15038
|
+
*/
|
|
15039
|
+
createdAt: number;
|
|
15040
|
+
/**
|
|
15041
|
+
* Timestamp when the environment was last updated
|
|
15042
|
+
*/
|
|
15043
|
+
updatedAt: number;
|
|
15044
|
+
}[];
|
|
14263
15045
|
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
15046
|
gitForkProtection?: boolean;
|
|
14265
15047
|
gitLFS?: boolean;
|
|
@@ -14481,13 +15263,13 @@ type UpdateProjectResponse = {
|
|
|
14481
15263
|
productionDeploymentsFastLane?: boolean;
|
|
14482
15264
|
publicSource?: boolean | null;
|
|
14483
15265
|
resourceConfig: {
|
|
14484
|
-
buildMachineType?: 'enhanced';
|
|
14485
15266
|
fluid?: boolean;
|
|
14486
15267
|
functionDefaultRegions: string[];
|
|
14487
15268
|
functionDefaultTimeout?: number;
|
|
14488
15269
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14489
15270
|
functionZeroConfigFailover?: boolean;
|
|
14490
15271
|
elasticConcurrencyEnabled?: boolean;
|
|
15272
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
14491
15273
|
};
|
|
14492
15274
|
rollingRelease?: {
|
|
14493
15275
|
/**
|
|
@@ -14514,16 +15296,20 @@ type UpdateProjectResponse = {
|
|
|
14514
15296
|
* Whether or not this stage requires approval to proceed.
|
|
14515
15297
|
*/
|
|
14516
15298
|
requireApproval?: boolean;
|
|
15299
|
+
/**
|
|
15300
|
+
* duration is the total time to serve a stage, at the given targetPercentage.
|
|
15301
|
+
*/
|
|
15302
|
+
duration?: number;
|
|
14517
15303
|
}[] | null;
|
|
14518
15304
|
} | null;
|
|
14519
15305
|
defaultResourceConfig: {
|
|
14520
|
-
buildMachineType?: 'enhanced';
|
|
14521
15306
|
fluid?: boolean;
|
|
14522
15307
|
functionDefaultRegions: string[];
|
|
14523
15308
|
functionDefaultTimeout?: number;
|
|
14524
15309
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14525
15310
|
functionZeroConfigFailover?: boolean;
|
|
14526
15311
|
elasticConcurrencyEnabled?: boolean;
|
|
15312
|
+
buildMachineType?: 'enhanced' | 'ultra';
|
|
14527
15313
|
};
|
|
14528
15314
|
rootDirectory?: string | null;
|
|
14529
15315
|
serverlessFunctionRegion?: string | null;
|
|
@@ -14708,6 +15494,7 @@ type UpdateProjectResponse = {
|
|
|
14708
15494
|
observabilityConfiguration?: ACLAction[];
|
|
14709
15495
|
observabilityNotebook?: ACLAction[];
|
|
14710
15496
|
openTelemetryEndpoint?: ACLAction[];
|
|
15497
|
+
vercelAppInstallation?: ACLAction[];
|
|
14711
15498
|
paymentMethod?: ACLAction[];
|
|
14712
15499
|
permissions?: ACLAction[];
|
|
14713
15500
|
postgres?: ACLAction[];
|
|
@@ -14823,12 +15610,21 @@ type UpdateProjectResponse = {
|
|
|
14823
15610
|
lastAliasRequest?: {
|
|
14824
15611
|
fromDeploymentId: string;
|
|
14825
15612
|
toDeploymentId: string;
|
|
15613
|
+
/**
|
|
15614
|
+
* If rolling back from a rolling release, fromDeploymentId captures the "base" of that rolling release, and fromRollingReleaseId captures the "target" of that rolling release.
|
|
15615
|
+
*/
|
|
15616
|
+
fromRollingReleaseId?: string;
|
|
14826
15617
|
jobStatus: 'failed' | 'in-progress' | 'pending' | 'skipped' | 'succeeded';
|
|
14827
15618
|
requestedAt: number;
|
|
14828
15619
|
type: 'promote' | 'rollback';
|
|
14829
15620
|
} | null;
|
|
14830
15621
|
protectionBypass?: {
|
|
14831
15622
|
[key: string]: {
|
|
15623
|
+
createdAt: number;
|
|
15624
|
+
createdBy: string;
|
|
15625
|
+
scope: 'integration-automation-bypass';
|
|
15626
|
+
integrationId: string;
|
|
15627
|
+
} | {
|
|
14832
15628
|
createdAt: number;
|
|
14833
15629
|
createdBy: string;
|
|
14834
15630
|
scope: 'automation-bypass';
|
|
@@ -14836,14 +15632,14 @@ type UpdateProjectResponse = {
|
|
|
14836
15632
|
};
|
|
14837
15633
|
hasActiveBranches?: boolean;
|
|
14838
15634
|
trustedIps?: {
|
|
14839
|
-
deploymentType: '
|
|
15635
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
14840
15636
|
addresses: {
|
|
14841
15637
|
value: string;
|
|
14842
15638
|
note?: string;
|
|
14843
15639
|
}[];
|
|
14844
|
-
protectionMode: '
|
|
15640
|
+
protectionMode: 'additional' | 'exclusive';
|
|
14845
15641
|
} | {
|
|
14846
|
-
deploymentType: '
|
|
15642
|
+
deploymentType: 'production' | 'preview' | 'all' | 'prod_deployment_urls_and_all_previews';
|
|
14847
15643
|
} | null;
|
|
14848
15644
|
gitComments?: {
|
|
14849
15645
|
/**
|
|
@@ -15025,6 +15821,31 @@ type UpdateProjectRequestBody = {
|
|
|
15025
15821
|
* Specifies whether the source code and logs of the deployments for this project should be public or not
|
|
15026
15822
|
*/
|
|
15027
15823
|
publicSource?: boolean | null;
|
|
15824
|
+
/**
|
|
15825
|
+
* Specifies resource override configuration for the project
|
|
15826
|
+
*/
|
|
15827
|
+
resourceConfig?: {
|
|
15828
|
+
buildMachineType?: 'enhanced' | any | 'ultra';
|
|
15829
|
+
fluid?: boolean;
|
|
15830
|
+
/**
|
|
15831
|
+
* The regions to deploy Vercel Functions to for this project
|
|
15832
|
+
*
|
|
15833
|
+
* @minItems 1
|
|
15834
|
+
* @uniqueItems true
|
|
15835
|
+
*/
|
|
15836
|
+
functionDefaultRegions?: string[];
|
|
15837
|
+
/**
|
|
15838
|
+
* @maximum 900
|
|
15839
|
+
* @minimum 1
|
|
15840
|
+
*/
|
|
15841
|
+
functionDefaultTimeout?: number;
|
|
15842
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
15843
|
+
/**
|
|
15844
|
+
* Specifies whether Zero Config Failover is enabled for this project.
|
|
15845
|
+
*/
|
|
15846
|
+
functionZeroConfigFailover?: boolean;
|
|
15847
|
+
elasticConcurrencyEnabled?: boolean;
|
|
15848
|
+
};
|
|
15028
15849
|
/**
|
|
15029
15850
|
* 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
15851
|
*
|
|
@@ -15163,6 +15984,29 @@ type UpdateProjectRequestBody = {
|
|
|
15163
15984
|
value: string;
|
|
15164
15985
|
}[];
|
|
15165
15986
|
} | null;
|
|
15987
|
+
/**
|
|
15988
|
+
* The list of connections from project environment to Secure Compute network
|
|
15989
|
+
*
|
|
15990
|
+
* @minItems 1
|
|
15991
|
+
*/
|
|
15992
|
+
connectConfigurations?: {
|
|
15993
|
+
/**
|
|
15994
|
+
* The ID of the environment
|
|
15995
|
+
*/
|
|
15996
|
+
envId: string;
|
|
15997
|
+
/**
|
|
15998
|
+
* The ID of the Secure Compute network
|
|
15999
|
+
*/
|
|
16000
|
+
connectConfigurationId: string;
|
|
16001
|
+
/**
|
|
16002
|
+
* Whether the configuration should be passive, meaning builds will not run there and only passive Serverless Functions will be deployed
|
|
16003
|
+
*/
|
|
16004
|
+
passive: boolean;
|
|
16005
|
+
/**
|
|
16006
|
+
* Flag saying if project builds should use Secure Compute
|
|
16007
|
+
*/
|
|
16008
|
+
buildsEnabled: boolean;
|
|
16009
|
+
}[] | null;
|
|
15166
16010
|
};
|
|
15167
16011
|
type UpdateProjectVariables = {
|
|
15168
16012
|
body?: UpdateProjectRequestBody;
|
|
@@ -15217,6 +16061,76 @@ type CreateCustomEnvironmentQueryParams = {
|
|
|
15217
16061
|
slug?: string;
|
|
15218
16062
|
};
|
|
15219
16063
|
type CreateCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16064
|
+
type CreateCustomEnvironmentResponse = {
|
|
16065
|
+
/**
|
|
16066
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16067
|
+
*/
|
|
16068
|
+
id: string;
|
|
16069
|
+
/**
|
|
16070
|
+
* URL-friendly name of the environment
|
|
16071
|
+
*/
|
|
16072
|
+
slug: string;
|
|
16073
|
+
/**
|
|
16074
|
+
* The type of environment (production, preview, or development)
|
|
16075
|
+
*/
|
|
16076
|
+
type: 'development' | 'preview' | 'production';
|
|
16077
|
+
/**
|
|
16078
|
+
* Optional description of the environment's purpose
|
|
16079
|
+
*/
|
|
16080
|
+
description?: string;
|
|
16081
|
+
/**
|
|
16082
|
+
* Configuration for matching git branches to this environment
|
|
16083
|
+
*/
|
|
16084
|
+
branchMatcher?: {
|
|
16085
|
+
/**
|
|
16086
|
+
* The type of matching to perform
|
|
16087
|
+
*/
|
|
16088
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16089
|
+
/**
|
|
16090
|
+
* The pattern to match against branch names
|
|
16091
|
+
*/
|
|
16092
|
+
pattern: string;
|
|
16093
|
+
};
|
|
16094
|
+
/**
|
|
16095
|
+
* List of domains associated with this environment
|
|
16096
|
+
*/
|
|
16097
|
+
domains?: {
|
|
16098
|
+
name: string;
|
|
16099
|
+
apexName: string;
|
|
16100
|
+
projectId: string;
|
|
16101
|
+
redirect?: string | null;
|
|
16102
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16103
|
+
gitBranch?: string | null;
|
|
16104
|
+
customEnvironmentId?: string | null;
|
|
16105
|
+
updatedAt?: number;
|
|
16106
|
+
createdAt?: number;
|
|
16107
|
+
/**
|
|
16108
|
+
* `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.
|
|
16109
|
+
*/
|
|
16110
|
+
verified: boolean;
|
|
16111
|
+
/**
|
|
16112
|
+
* 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`.
|
|
16113
|
+
*/
|
|
16114
|
+
verification?: {
|
|
16115
|
+
type: string;
|
|
16116
|
+
domain: string;
|
|
16117
|
+
value: string;
|
|
16118
|
+
reason: string;
|
|
16119
|
+
}[];
|
|
16120
|
+
}[];
|
|
16121
|
+
/**
|
|
16122
|
+
* List of aliases for the current deployment
|
|
16123
|
+
*/
|
|
16124
|
+
currentDeploymentAliases?: string[];
|
|
16125
|
+
/**
|
|
16126
|
+
* Timestamp when the environment was created
|
|
16127
|
+
*/
|
|
16128
|
+
createdAt: number;
|
|
16129
|
+
/**
|
|
16130
|
+
* Timestamp when the environment was last updated
|
|
16131
|
+
*/
|
|
16132
|
+
updatedAt: number;
|
|
16133
|
+
};
|
|
15220
16134
|
type CreateCustomEnvironmentRequestBody = {
|
|
15221
16135
|
/**
|
|
15222
16136
|
* The slug of the custom environment to create.
|
|
@@ -15250,26 +16164,133 @@ type CreateCustomEnvironmentRequestBody = {
|
|
|
15250
16164
|
*/
|
|
15251
16165
|
copyEnvVarsFrom?: string;
|
|
15252
16166
|
};
|
|
15253
|
-
type CreateCustomEnvironmentVariables = {
|
|
15254
|
-
body?: CreateCustomEnvironmentRequestBody;
|
|
15255
|
-
pathParams: CreateCustomEnvironmentPathParams;
|
|
15256
|
-
queryParams?: CreateCustomEnvironmentQueryParams;
|
|
16167
|
+
type CreateCustomEnvironmentVariables = {
|
|
16168
|
+
body?: CreateCustomEnvironmentRequestBody;
|
|
16169
|
+
pathParams: CreateCustomEnvironmentPathParams;
|
|
16170
|
+
queryParams?: CreateCustomEnvironmentQueryParams;
|
|
16171
|
+
} & FetcherExtraProps;
|
|
16172
|
+
/**
|
|
16173
|
+
* Creates a custom environment for the current project. Cannot be named 'Production' or 'Preview'.
|
|
16174
|
+
*/
|
|
16175
|
+
declare const createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
16176
|
+
type GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = {
|
|
16177
|
+
/**
|
|
16178
|
+
* The unique project identifier or the project name
|
|
16179
|
+
*/
|
|
16180
|
+
idOrName: string;
|
|
16181
|
+
};
|
|
16182
|
+
type GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = {
|
|
16183
|
+
/**
|
|
16184
|
+
* Fetch custom environments for a specific git branch
|
|
16185
|
+
*/
|
|
16186
|
+
gitBranch?: string;
|
|
16187
|
+
/**
|
|
16188
|
+
* The Team identifier to perform the request on behalf of.
|
|
16189
|
+
*/
|
|
16190
|
+
teamId?: string;
|
|
16191
|
+
/**
|
|
16192
|
+
* The Team slug to perform the request on behalf of.
|
|
16193
|
+
*/
|
|
16194
|
+
slug?: string;
|
|
16195
|
+
};
|
|
16196
|
+
type GetV9ProjectsIdOrNameCustomEnvironmentsError = ErrorWrapper<undefined>;
|
|
16197
|
+
type GetV9ProjectsIdOrNameCustomEnvironmentsResponse = {
|
|
16198
|
+
/**
|
|
16199
|
+
* The maximum number of custom environments allowed either by the team's plan type or a custom override.
|
|
16200
|
+
*/
|
|
16201
|
+
accountLimit: {
|
|
16202
|
+
total: number;
|
|
16203
|
+
};
|
|
16204
|
+
environments: {
|
|
16205
|
+
/**
|
|
16206
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16207
|
+
*/
|
|
16208
|
+
id: string;
|
|
16209
|
+
/**
|
|
16210
|
+
* URL-friendly name of the environment
|
|
16211
|
+
*/
|
|
16212
|
+
slug: string;
|
|
16213
|
+
/**
|
|
16214
|
+
* The type of environment (production, preview, or development)
|
|
16215
|
+
*/
|
|
16216
|
+
type: 'development' | 'preview' | 'production';
|
|
16217
|
+
/**
|
|
16218
|
+
* Optional description of the environment's purpose
|
|
16219
|
+
*/
|
|
16220
|
+
description?: string;
|
|
16221
|
+
/**
|
|
16222
|
+
* Configuration for matching git branches to this environment
|
|
16223
|
+
*/
|
|
16224
|
+
branchMatcher?: {
|
|
16225
|
+
/**
|
|
16226
|
+
* The type of matching to perform
|
|
16227
|
+
*/
|
|
16228
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16229
|
+
/**
|
|
16230
|
+
* The pattern to match against branch names
|
|
16231
|
+
*/
|
|
16232
|
+
pattern: string;
|
|
16233
|
+
};
|
|
16234
|
+
/**
|
|
16235
|
+
* List of domains associated with this environment
|
|
16236
|
+
*/
|
|
16237
|
+
domains?: {
|
|
16238
|
+
name: string;
|
|
16239
|
+
apexName: string;
|
|
16240
|
+
projectId: string;
|
|
16241
|
+
redirect?: string | null;
|
|
16242
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16243
|
+
gitBranch?: string | null;
|
|
16244
|
+
customEnvironmentId?: string | null;
|
|
16245
|
+
updatedAt?: number;
|
|
16246
|
+
createdAt?: number;
|
|
16247
|
+
/**
|
|
16248
|
+
* `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.
|
|
16249
|
+
*/
|
|
16250
|
+
verified: boolean;
|
|
16251
|
+
/**
|
|
16252
|
+
* 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`.
|
|
16253
|
+
*/
|
|
16254
|
+
verification?: {
|
|
16255
|
+
type: string;
|
|
16256
|
+
domain: string;
|
|
16257
|
+
value: string;
|
|
16258
|
+
reason: string;
|
|
16259
|
+
}[];
|
|
16260
|
+
}[];
|
|
16261
|
+
/**
|
|
16262
|
+
* List of aliases for the current deployment
|
|
16263
|
+
*/
|
|
16264
|
+
currentDeploymentAliases?: string[];
|
|
16265
|
+
/**
|
|
16266
|
+
* Timestamp when the environment was created
|
|
16267
|
+
*/
|
|
16268
|
+
createdAt: number;
|
|
16269
|
+
/**
|
|
16270
|
+
* Timestamp when the environment was last updated
|
|
16271
|
+
*/
|
|
16272
|
+
updatedAt: number;
|
|
16273
|
+
}[];
|
|
16274
|
+
};
|
|
16275
|
+
type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
|
|
16276
|
+
pathParams: GetV9ProjectsIdOrNameCustomEnvironmentsPathParams;
|
|
16277
|
+
queryParams?: GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams;
|
|
15257
16278
|
} & FetcherExtraProps;
|
|
15258
16279
|
/**
|
|
15259
|
-
*
|
|
16280
|
+
* Retrieve custom environments for the project. Must not be named 'Production' or 'Preview'.
|
|
15260
16281
|
*/
|
|
15261
|
-
declare const
|
|
15262
|
-
type
|
|
16282
|
+
declare const getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
16283
|
+
type GetCustomEnvironmentPathParams = {
|
|
15263
16284
|
/**
|
|
15264
16285
|
* The unique project identifier or the project name
|
|
15265
16286
|
*/
|
|
15266
16287
|
idOrName: string;
|
|
15267
|
-
};
|
|
15268
|
-
type GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = {
|
|
15269
16288
|
/**
|
|
15270
|
-
*
|
|
16289
|
+
* The unique custom environment identifier within the project
|
|
15271
16290
|
*/
|
|
15272
|
-
|
|
16291
|
+
environmentSlugOrId: string;
|
|
16292
|
+
};
|
|
16293
|
+
type GetCustomEnvironmentQueryParams = {
|
|
15273
16294
|
/**
|
|
15274
16295
|
* The Team identifier to perform the request on behalf of.
|
|
15275
16296
|
*/
|
|
@@ -15279,45 +16300,77 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = {
|
|
|
15279
16300
|
*/
|
|
15280
16301
|
slug?: string;
|
|
15281
16302
|
};
|
|
15282
|
-
type
|
|
15283
|
-
type
|
|
16303
|
+
type GetCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16304
|
+
type GetCustomEnvironmentResponse = {
|
|
15284
16305
|
/**
|
|
15285
|
-
*
|
|
16306
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
15286
16307
|
*/
|
|
15287
|
-
|
|
15288
|
-
|
|
16308
|
+
id: string;
|
|
16309
|
+
/**
|
|
16310
|
+
* URL-friendly name of the environment
|
|
16311
|
+
*/
|
|
16312
|
+
slug: string;
|
|
16313
|
+
/**
|
|
16314
|
+
* The type of environment (production, preview, or development)
|
|
16315
|
+
*/
|
|
16316
|
+
type: 'development' | 'preview' | 'production';
|
|
16317
|
+
/**
|
|
16318
|
+
* Optional description of the environment's purpose
|
|
16319
|
+
*/
|
|
16320
|
+
description?: string;
|
|
16321
|
+
/**
|
|
16322
|
+
* Configuration for matching git branches to this environment
|
|
16323
|
+
*/
|
|
16324
|
+
branchMatcher?: {
|
|
16325
|
+
/**
|
|
16326
|
+
* The type of matching to perform
|
|
16327
|
+
*/
|
|
16328
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16329
|
+
/**
|
|
16330
|
+
* The pattern to match against branch names
|
|
16331
|
+
*/
|
|
16332
|
+
pattern: string;
|
|
15289
16333
|
};
|
|
15290
|
-
environments: Record<string, any>[];
|
|
15291
|
-
};
|
|
15292
|
-
type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
|
|
15293
|
-
pathParams: GetV9ProjectsIdOrNameCustomEnvironmentsPathParams;
|
|
15294
|
-
queryParams?: GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams;
|
|
15295
|
-
} & FetcherExtraProps;
|
|
15296
|
-
/**
|
|
15297
|
-
* Retrieve custom environments for the project. Must not be named 'Production' or 'Preview'.
|
|
15298
|
-
*/
|
|
15299
|
-
declare const getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
15300
|
-
type GetCustomEnvironmentPathParams = {
|
|
15301
16334
|
/**
|
|
15302
|
-
*
|
|
16335
|
+
* List of domains associated with this environment
|
|
15303
16336
|
*/
|
|
15304
|
-
|
|
16337
|
+
domains?: {
|
|
16338
|
+
name: string;
|
|
16339
|
+
apexName: string;
|
|
16340
|
+
projectId: string;
|
|
16341
|
+
redirect?: string | null;
|
|
16342
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16343
|
+
gitBranch?: string | null;
|
|
16344
|
+
customEnvironmentId?: string | null;
|
|
16345
|
+
updatedAt?: number;
|
|
16346
|
+
createdAt?: number;
|
|
16347
|
+
/**
|
|
16348
|
+
* `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.
|
|
16349
|
+
*/
|
|
16350
|
+
verified: boolean;
|
|
16351
|
+
/**
|
|
16352
|
+
* 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`.
|
|
16353
|
+
*/
|
|
16354
|
+
verification?: {
|
|
16355
|
+
type: string;
|
|
16356
|
+
domain: string;
|
|
16357
|
+
value: string;
|
|
16358
|
+
reason: string;
|
|
16359
|
+
}[];
|
|
16360
|
+
}[];
|
|
15305
16361
|
/**
|
|
15306
|
-
*
|
|
16362
|
+
* List of aliases for the current deployment
|
|
15307
16363
|
*/
|
|
15308
|
-
|
|
15309
|
-
};
|
|
15310
|
-
type GetCustomEnvironmentQueryParams = {
|
|
16364
|
+
currentDeploymentAliases?: string[];
|
|
15311
16365
|
/**
|
|
15312
|
-
*
|
|
16366
|
+
* Timestamp when the environment was created
|
|
15313
16367
|
*/
|
|
15314
|
-
|
|
16368
|
+
createdAt: number;
|
|
15315
16369
|
/**
|
|
15316
|
-
*
|
|
16370
|
+
* Timestamp when the environment was last updated
|
|
15317
16371
|
*/
|
|
15318
|
-
|
|
16372
|
+
updatedAt: number;
|
|
15319
16373
|
};
|
|
15320
|
-
type GetCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
15321
16374
|
type GetCustomEnvironmentVariables = {
|
|
15322
16375
|
pathParams: GetCustomEnvironmentPathParams;
|
|
15323
16376
|
queryParams?: GetCustomEnvironmentQueryParams;
|
|
@@ -15325,7 +16378,7 @@ type GetCustomEnvironmentVariables = {
|
|
|
15325
16378
|
/**
|
|
15326
16379
|
* Retrieve a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
15327
16380
|
*/
|
|
15328
|
-
declare const getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16381
|
+
declare const getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
15329
16382
|
type UpdateCustomEnvironmentPathParams = {
|
|
15330
16383
|
/**
|
|
15331
16384
|
* The unique project identifier or the project name
|
|
@@ -15347,6 +16400,76 @@ type UpdateCustomEnvironmentQueryParams = {
|
|
|
15347
16400
|
slug?: string;
|
|
15348
16401
|
};
|
|
15349
16402
|
type UpdateCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16403
|
+
type UpdateCustomEnvironmentResponse = {
|
|
16404
|
+
/**
|
|
16405
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16406
|
+
*/
|
|
16407
|
+
id: string;
|
|
16408
|
+
/**
|
|
16409
|
+
* URL-friendly name of the environment
|
|
16410
|
+
*/
|
|
16411
|
+
slug: string;
|
|
16412
|
+
/**
|
|
16413
|
+
* The type of environment (production, preview, or development)
|
|
16414
|
+
*/
|
|
16415
|
+
type: 'development' | 'preview' | 'production';
|
|
16416
|
+
/**
|
|
16417
|
+
* Optional description of the environment's purpose
|
|
16418
|
+
*/
|
|
16419
|
+
description?: string;
|
|
16420
|
+
/**
|
|
16421
|
+
* Configuration for matching git branches to this environment
|
|
16422
|
+
*/
|
|
16423
|
+
branchMatcher?: {
|
|
16424
|
+
/**
|
|
16425
|
+
* The type of matching to perform
|
|
16426
|
+
*/
|
|
16427
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16428
|
+
/**
|
|
16429
|
+
* The pattern to match against branch names
|
|
16430
|
+
*/
|
|
16431
|
+
pattern: string;
|
|
16432
|
+
};
|
|
16433
|
+
/**
|
|
16434
|
+
* List of domains associated with this environment
|
|
16435
|
+
*/
|
|
16436
|
+
domains?: {
|
|
16437
|
+
name: string;
|
|
16438
|
+
apexName: string;
|
|
16439
|
+
projectId: string;
|
|
16440
|
+
redirect?: string | null;
|
|
16441
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16442
|
+
gitBranch?: string | null;
|
|
16443
|
+
customEnvironmentId?: string | null;
|
|
16444
|
+
updatedAt?: number;
|
|
16445
|
+
createdAt?: number;
|
|
16446
|
+
/**
|
|
16447
|
+
* `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.
|
|
16448
|
+
*/
|
|
16449
|
+
verified: boolean;
|
|
16450
|
+
/**
|
|
16451
|
+
* 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`.
|
|
16452
|
+
*/
|
|
16453
|
+
verification?: {
|
|
16454
|
+
type: string;
|
|
16455
|
+
domain: string;
|
|
16456
|
+
value: string;
|
|
16457
|
+
reason: string;
|
|
16458
|
+
}[];
|
|
16459
|
+
}[];
|
|
16460
|
+
/**
|
|
16461
|
+
* List of aliases for the current deployment
|
|
16462
|
+
*/
|
|
16463
|
+
currentDeploymentAliases?: string[];
|
|
16464
|
+
/**
|
|
16465
|
+
* Timestamp when the environment was created
|
|
16466
|
+
*/
|
|
16467
|
+
createdAt: number;
|
|
16468
|
+
/**
|
|
16469
|
+
* Timestamp when the environment was last updated
|
|
16470
|
+
*/
|
|
16471
|
+
updatedAt: number;
|
|
16472
|
+
};
|
|
15350
16473
|
type UpdateCustomEnvironmentRequestBody = {
|
|
15351
16474
|
/**
|
|
15352
16475
|
* The slug of the custom environment.
|
|
@@ -15384,7 +16507,7 @@ type UpdateCustomEnvironmentVariables = {
|
|
|
15384
16507
|
/**
|
|
15385
16508
|
* Update a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
15386
16509
|
*/
|
|
15387
|
-
declare const updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16510
|
+
declare const updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
15388
16511
|
type RemoveCustomEnvironmentPathParams = {
|
|
15389
16512
|
/**
|
|
15390
16513
|
* The unique project identifier or the project name
|
|
@@ -15406,6 +16529,76 @@ type RemoveCustomEnvironmentQueryParams = {
|
|
|
15406
16529
|
slug?: string;
|
|
15407
16530
|
};
|
|
15408
16531
|
type RemoveCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
16532
|
+
type RemoveCustomEnvironmentResponse = {
|
|
16533
|
+
/**
|
|
16534
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
16535
|
+
*/
|
|
16536
|
+
id: string;
|
|
16537
|
+
/**
|
|
16538
|
+
* URL-friendly name of the environment
|
|
16539
|
+
*/
|
|
16540
|
+
slug: string;
|
|
16541
|
+
/**
|
|
16542
|
+
* The type of environment (production, preview, or development)
|
|
16543
|
+
*/
|
|
16544
|
+
type: 'development' | 'preview' | 'production';
|
|
16545
|
+
/**
|
|
16546
|
+
* Optional description of the environment's purpose
|
|
16547
|
+
*/
|
|
16548
|
+
description?: string;
|
|
16549
|
+
/**
|
|
16550
|
+
* Configuration for matching git branches to this environment
|
|
16551
|
+
*/
|
|
16552
|
+
branchMatcher?: {
|
|
16553
|
+
/**
|
|
16554
|
+
* The type of matching to perform
|
|
16555
|
+
*/
|
|
16556
|
+
type: 'endsWith' | 'equals' | 'startsWith';
|
|
16557
|
+
/**
|
|
16558
|
+
* The pattern to match against branch names
|
|
16559
|
+
*/
|
|
16560
|
+
pattern: string;
|
|
16561
|
+
};
|
|
16562
|
+
/**
|
|
16563
|
+
* List of domains associated with this environment
|
|
16564
|
+
*/
|
|
16565
|
+
domains?: {
|
|
16566
|
+
name: string;
|
|
16567
|
+
apexName: string;
|
|
16568
|
+
projectId: string;
|
|
16569
|
+
redirect?: string | null;
|
|
16570
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
16571
|
+
gitBranch?: string | null;
|
|
16572
|
+
customEnvironmentId?: string | null;
|
|
16573
|
+
updatedAt?: number;
|
|
16574
|
+
createdAt?: number;
|
|
16575
|
+
/**
|
|
16576
|
+
* `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.
|
|
16577
|
+
*/
|
|
16578
|
+
verified: boolean;
|
|
16579
|
+
/**
|
|
16580
|
+
* 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`.
|
|
16581
|
+
*/
|
|
16582
|
+
verification?: {
|
|
16583
|
+
type: string;
|
|
16584
|
+
domain: string;
|
|
16585
|
+
value: string;
|
|
16586
|
+
reason: string;
|
|
16587
|
+
}[];
|
|
16588
|
+
}[];
|
|
16589
|
+
/**
|
|
16590
|
+
* List of aliases for the current deployment
|
|
16591
|
+
*/
|
|
16592
|
+
currentDeploymentAliases?: string[];
|
|
16593
|
+
/**
|
|
16594
|
+
* Timestamp when the environment was created
|
|
16595
|
+
*/
|
|
16596
|
+
createdAt: number;
|
|
16597
|
+
/**
|
|
16598
|
+
* Timestamp when the environment was last updated
|
|
16599
|
+
*/
|
|
16600
|
+
updatedAt: number;
|
|
16601
|
+
};
|
|
15409
16602
|
type RemoveCustomEnvironmentRequestBody = {
|
|
15410
16603
|
/**
|
|
15411
16604
|
* Delete Environment Variables that are not assigned to any environments.
|
|
@@ -15420,7 +16613,7 @@ type RemoveCustomEnvironmentVariables = {
|
|
|
15420
16613
|
/**
|
|
15421
16614
|
* Remove a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
15422
16615
|
*/
|
|
15423
|
-
declare const removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
16616
|
+
declare const removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
15424
16617
|
type GetProjectDomainsPathParams = {
|
|
15425
16618
|
/**
|
|
15426
16619
|
* The unique project identifier or the project name
|
|
@@ -17432,6 +18625,11 @@ type UpdateProjectProtectionBypassError = ErrorWrapper<undefined>;
|
|
|
17432
18625
|
type UpdateProjectProtectionBypassResponse = {
|
|
17433
18626
|
protectionBypass?: {
|
|
17434
18627
|
[key: string]: {
|
|
18628
|
+
createdAt: number;
|
|
18629
|
+
createdBy: string;
|
|
18630
|
+
scope: 'integration-automation-bypass';
|
|
18631
|
+
integrationId: string;
|
|
18632
|
+
} | {
|
|
17435
18633
|
createdAt: number;
|
|
17436
18634
|
createdBy: string;
|
|
17437
18635
|
scope: 'automation-bypass';
|
|
@@ -17457,7 +18655,7 @@ type UpdateProjectProtectionBypassRequestBody = {
|
|
|
17457
18655
|
*/
|
|
17458
18656
|
generate?: {
|
|
17459
18657
|
/**
|
|
17460
|
-
* Optional value of the secret to generate
|
|
18658
|
+
* Optional value of the secret to generate, don't send it for oauth2 tokens
|
|
17461
18659
|
*
|
|
17462
18660
|
* @pattern ^[a-zA-Z0-9]{32}$
|
|
17463
18661
|
*/
|
|
@@ -18258,36 +19456,36 @@ type GetBypassIpVariables = {
|
|
|
18258
19456
|
*/
|
|
18259
19457
|
declare const getBypassIp: (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
18260
19458
|
result: {
|
|
18261
|
-
OwnerId
|
|
18262
|
-
Id
|
|
18263
|
-
Domain
|
|
18264
|
-
Ip
|
|
19459
|
+
OwnerId?: string;
|
|
19460
|
+
Id?: string;
|
|
19461
|
+
Domain?: string;
|
|
19462
|
+
Ip?: string;
|
|
18265
19463
|
Action?: "block" | "bypass";
|
|
18266
19464
|
ProjectId?: string;
|
|
18267
19465
|
IsProjectRule?: boolean;
|
|
18268
19466
|
Note?: string;
|
|
18269
|
-
CreatedAt
|
|
19467
|
+
CreatedAt?: string;
|
|
18270
19468
|
ActorId?: string;
|
|
18271
|
-
UpdatedAt
|
|
18272
|
-
UpdatedAtHour
|
|
19469
|
+
UpdatedAt?: string;
|
|
19470
|
+
UpdatedAtHour?: string;
|
|
18273
19471
|
DeletedAt?: string;
|
|
18274
19472
|
ExpiresAt?: number | null;
|
|
18275
19473
|
}[];
|
|
18276
19474
|
pagination: void | null;
|
|
18277
19475
|
} | {
|
|
18278
19476
|
result?: {
|
|
18279
|
-
OwnerId
|
|
18280
|
-
Id
|
|
18281
|
-
Domain
|
|
18282
|
-
Ip
|
|
19477
|
+
OwnerId?: string;
|
|
19478
|
+
Id?: string;
|
|
19479
|
+
Domain?: string;
|
|
19480
|
+
Ip?: string;
|
|
18283
19481
|
Action?: "block" | "bypass";
|
|
18284
19482
|
ProjectId?: string;
|
|
18285
19483
|
IsProjectRule?: boolean;
|
|
18286
19484
|
Note?: string;
|
|
18287
|
-
CreatedAt
|
|
19485
|
+
CreatedAt?: string;
|
|
18288
19486
|
ActorId?: string;
|
|
18289
|
-
UpdatedAt
|
|
18290
|
-
UpdatedAtHour
|
|
19487
|
+
UpdatedAt?: string;
|
|
19488
|
+
UpdatedAtHour?: string;
|
|
18291
19489
|
DeletedAt?: string;
|
|
18292
19490
|
ExpiresAt?: number | null;
|
|
18293
19491
|
}[];
|
|
@@ -19530,7 +20728,7 @@ type CreateWebhookResponse = {
|
|
|
19530
20728
|
*
|
|
19531
20729
|
* @example deployment.created
|
|
19532
20730
|
*/
|
|
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')[];
|
|
20731
|
+
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
20732
|
/**
|
|
19535
20733
|
* The webhook id
|
|
19536
20734
|
*
|
|
@@ -19577,7 +20775,7 @@ type CreateWebhookRequestBody = {
|
|
|
19577
20775
|
/**
|
|
19578
20776
|
* @minItems 1
|
|
19579
20777
|
*/
|
|
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')[];
|
|
20778
|
+
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
20779
|
/**
|
|
19582
20780
|
* @minItems 1
|
|
19583
20781
|
* @maxItems 50
|
|
@@ -19625,7 +20823,7 @@ declare const getWebhooks: (variables: GetWebhooksVariables, signal?: AbortSigna
|
|
|
19625
20823
|
*
|
|
19626
20824
|
* @example deployment.created
|
|
19627
20825
|
*/
|
|
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")[];
|
|
20826
|
+
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
20827
|
/**
|
|
19630
20828
|
* The webhook id
|
|
19631
20829
|
*
|
|
@@ -19668,7 +20866,7 @@ declare const getWebhooks: (variables: GetWebhooksVariables, signal?: AbortSigna
|
|
|
19668
20866
|
*
|
|
19669
20867
|
* @example deployment.created
|
|
19670
20868
|
*/
|
|
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")[];
|
|
20869
|
+
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
20870
|
/**
|
|
19673
20871
|
* The webhook id
|
|
19674
20872
|
*
|
|
@@ -19726,7 +20924,7 @@ type GetWebhookResponse = {
|
|
|
19726
20924
|
*
|
|
19727
20925
|
* @example deployment.created
|
|
19728
20926
|
*/
|
|
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')[];
|
|
20927
|
+
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
20928
|
/**
|
|
19731
20929
|
* The webhook id
|
|
19732
20930
|
*
|
|
@@ -20345,9 +21543,92 @@ type DeleteAliasVariables = {
|
|
|
20345
21543
|
queryParams?: DeleteAliasQueryParams;
|
|
20346
21544
|
} & FetcherExtraProps;
|
|
20347
21545
|
/**
|
|
20348
|
-
* Delete an Alias with the specified ID.
|
|
21546
|
+
* Delete an Alias with the specified ID.
|
|
21547
|
+
*/
|
|
21548
|
+
declare const deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
21549
|
+
type PatchUrlProtectionBypassPathParams = {
|
|
21550
|
+
/**
|
|
21551
|
+
* The alias or deployment ID
|
|
21552
|
+
*/
|
|
21553
|
+
id: string;
|
|
21554
|
+
};
|
|
21555
|
+
type PatchUrlProtectionBypassQueryParams = {
|
|
21556
|
+
/**
|
|
21557
|
+
* The Team identifier to perform the request on behalf of.
|
|
21558
|
+
*/
|
|
21559
|
+
teamId?: string;
|
|
21560
|
+
/**
|
|
21561
|
+
* The Team slug to perform the request on behalf of.
|
|
21562
|
+
*/
|
|
21563
|
+
slug?: string;
|
|
21564
|
+
};
|
|
21565
|
+
type PatchUrlProtectionBypassError = ErrorWrapper<undefined>;
|
|
21566
|
+
type PatchUrlProtectionBypassResponse = {
|
|
21567
|
+
[key: string]: any;
|
|
21568
|
+
};
|
|
21569
|
+
type PatchUrlProtectionBypassVariables = {
|
|
21570
|
+
body?: {
|
|
21571
|
+
/**
|
|
21572
|
+
* Optional instructions for revoking and regenerating a shareable link
|
|
21573
|
+
*/
|
|
21574
|
+
revoke?: {
|
|
21575
|
+
/**
|
|
21576
|
+
* Sharebale link to revoked
|
|
21577
|
+
*/
|
|
21578
|
+
secret: string;
|
|
21579
|
+
/**
|
|
21580
|
+
* Whether or not a new shareable link should be created after the provided secret is revoked
|
|
21581
|
+
*/
|
|
21582
|
+
regenerate: boolean;
|
|
21583
|
+
};
|
|
21584
|
+
} | {
|
|
21585
|
+
/**
|
|
21586
|
+
* Instructions for creating a user scoped protection bypass
|
|
21587
|
+
*/
|
|
21588
|
+
scope: {
|
|
21589
|
+
/**
|
|
21590
|
+
* Specified user id for the scoped bypass.
|
|
21591
|
+
*/
|
|
21592
|
+
userId: string;
|
|
21593
|
+
/**
|
|
21594
|
+
* Specified email for the scoped bypass.
|
|
21595
|
+
*
|
|
21596
|
+
* @format email
|
|
21597
|
+
*/
|
|
21598
|
+
email?: string;
|
|
21599
|
+
/**
|
|
21600
|
+
* Invitation status for the user scoped bypass.
|
|
21601
|
+
*/
|
|
21602
|
+
access?: 'denied' | 'granted';
|
|
21603
|
+
} | {
|
|
21604
|
+
/**
|
|
21605
|
+
* Specified user id for the scoped bypass.
|
|
21606
|
+
*/
|
|
21607
|
+
userId?: string;
|
|
21608
|
+
/**
|
|
21609
|
+
* Specified email for the scoped bypass.
|
|
21610
|
+
*
|
|
21611
|
+
* @format email
|
|
21612
|
+
*/
|
|
21613
|
+
email: string;
|
|
21614
|
+
/**
|
|
21615
|
+
* Invitation status for the user scoped bypass.
|
|
21616
|
+
*/
|
|
21617
|
+
access?: 'denied' | 'granted';
|
|
21618
|
+
};
|
|
21619
|
+
} | {
|
|
21620
|
+
override: {
|
|
21621
|
+
scope: 'alias-protection-override';
|
|
21622
|
+
action: 'create' | 'revoke';
|
|
21623
|
+
};
|
|
21624
|
+
};
|
|
21625
|
+
pathParams: PatchUrlProtectionBypassPathParams;
|
|
21626
|
+
queryParams?: PatchUrlProtectionBypassQueryParams;
|
|
21627
|
+
} & FetcherExtraProps;
|
|
21628
|
+
/**
|
|
21629
|
+
* 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).
|
|
20349
21630
|
*/
|
|
20350
|
-
declare const
|
|
21631
|
+
declare const patchUrlProtectionBypass: (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
20351
21632
|
type GetCertsError = ErrorWrapper<undefined>;
|
|
20352
21633
|
type GetCertsResponse = {
|
|
20353
21634
|
certs: {
|
|
@@ -22448,7 +23729,76 @@ declare const operationsByTag: {
|
|
|
22448
23729
|
userAliases?: string[];
|
|
22449
23730
|
previewCommentsEnabled?: boolean;
|
|
22450
23731
|
ttyBuildLogs?: boolean;
|
|
22451
|
-
customEnvironment?:
|
|
23732
|
+
customEnvironment?: {
|
|
23733
|
+
/**
|
|
23734
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
23735
|
+
*/
|
|
23736
|
+
id: string;
|
|
23737
|
+
/**
|
|
23738
|
+
* URL-friendly name of the environment
|
|
23739
|
+
*/
|
|
23740
|
+
slug: string;
|
|
23741
|
+
/**
|
|
23742
|
+
* The type of environment (production, preview, or development)
|
|
23743
|
+
*/
|
|
23744
|
+
type: "production" | "preview" | "development";
|
|
23745
|
+
/**
|
|
23746
|
+
* Optional description of the environment's purpose
|
|
23747
|
+
*/
|
|
23748
|
+
description?: string;
|
|
23749
|
+
/**
|
|
23750
|
+
* Configuration for matching git branches to this environment
|
|
23751
|
+
*/
|
|
23752
|
+
branchMatcher?: {
|
|
23753
|
+
/**
|
|
23754
|
+
* The type of matching to perform
|
|
23755
|
+
*/
|
|
23756
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
23757
|
+
/**
|
|
23758
|
+
* The pattern to match against branch names
|
|
23759
|
+
*/
|
|
23760
|
+
pattern: string;
|
|
23761
|
+
};
|
|
23762
|
+
/**
|
|
23763
|
+
* List of domains associated with this environment
|
|
23764
|
+
*/
|
|
23765
|
+
domains?: {
|
|
23766
|
+
name: string;
|
|
23767
|
+
apexName: string;
|
|
23768
|
+
projectId: string;
|
|
23769
|
+
redirect?: string | null;
|
|
23770
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
23771
|
+
gitBranch?: string | null;
|
|
23772
|
+
customEnvironmentId?: string | null;
|
|
23773
|
+
updatedAt?: number;
|
|
23774
|
+
createdAt?: number;
|
|
23775
|
+
/**
|
|
23776
|
+
* `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.
|
|
23777
|
+
*/
|
|
23778
|
+
verified: boolean;
|
|
23779
|
+
/**
|
|
23780
|
+
* 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`.
|
|
23781
|
+
*/
|
|
23782
|
+
verification?: {
|
|
23783
|
+
type: string;
|
|
23784
|
+
domain: string;
|
|
23785
|
+
value: string;
|
|
23786
|
+
reason: string;
|
|
23787
|
+
}[];
|
|
23788
|
+
}[];
|
|
23789
|
+
/**
|
|
23790
|
+
* List of aliases for the current deployment
|
|
23791
|
+
*/
|
|
23792
|
+
currentDeploymentAliases?: string[];
|
|
23793
|
+
/**
|
|
23794
|
+
* Timestamp when the environment was created
|
|
23795
|
+
*/
|
|
23796
|
+
createdAt: number;
|
|
23797
|
+
/**
|
|
23798
|
+
* Timestamp when the environment was last updated
|
|
23799
|
+
*/
|
|
23800
|
+
updatedAt: number;
|
|
23801
|
+
} | {
|
|
22452
23802
|
id: string;
|
|
22453
23803
|
};
|
|
22454
23804
|
aliasWarning?: {
|
|
@@ -22550,7 +23900,7 @@ declare const operationsByTag: {
|
|
|
22550
23900
|
org?: string;
|
|
22551
23901
|
repo?: string;
|
|
22552
23902
|
} | {
|
|
22553
|
-
type: "github";
|
|
23903
|
+
type: "github-custom-host";
|
|
22554
23904
|
host: string;
|
|
22555
23905
|
ref: string;
|
|
22556
23906
|
sha: string;
|
|
@@ -22825,7 +24175,76 @@ declare const operationsByTag: {
|
|
|
22825
24175
|
userAliases?: string[];
|
|
22826
24176
|
previewCommentsEnabled?: boolean;
|
|
22827
24177
|
ttyBuildLogs?: boolean;
|
|
22828
|
-
customEnvironment?:
|
|
24178
|
+
customEnvironment?: {
|
|
24179
|
+
/**
|
|
24180
|
+
* Unique identifier for the custom environment (format: env_*)
|
|
24181
|
+
*/
|
|
24182
|
+
id: string;
|
|
24183
|
+
/**
|
|
24184
|
+
* URL-friendly name of the environment
|
|
24185
|
+
*/
|
|
24186
|
+
slug: string;
|
|
24187
|
+
/**
|
|
24188
|
+
* The type of environment (production, preview, or development)
|
|
24189
|
+
*/
|
|
24190
|
+
type: "production" | "preview" | "development";
|
|
24191
|
+
/**
|
|
24192
|
+
* Optional description of the environment's purpose
|
|
24193
|
+
*/
|
|
24194
|
+
description?: string;
|
|
24195
|
+
/**
|
|
24196
|
+
* Configuration for matching git branches to this environment
|
|
24197
|
+
*/
|
|
24198
|
+
branchMatcher?: {
|
|
24199
|
+
/**
|
|
24200
|
+
* The type of matching to perform
|
|
24201
|
+
*/
|
|
24202
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
24203
|
+
/**
|
|
24204
|
+
* The pattern to match against branch names
|
|
24205
|
+
*/
|
|
24206
|
+
pattern: string;
|
|
24207
|
+
};
|
|
24208
|
+
/**
|
|
24209
|
+
* List of domains associated with this environment
|
|
24210
|
+
*/
|
|
24211
|
+
domains?: {
|
|
24212
|
+
name: string;
|
|
24213
|
+
apexName: string;
|
|
24214
|
+
projectId: string;
|
|
24215
|
+
redirect?: string | null;
|
|
24216
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
24217
|
+
gitBranch?: string | null;
|
|
24218
|
+
customEnvironmentId?: string | null;
|
|
24219
|
+
updatedAt?: number;
|
|
24220
|
+
createdAt?: number;
|
|
24221
|
+
/**
|
|
24222
|
+
* `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.
|
|
24223
|
+
*/
|
|
24224
|
+
verified: boolean;
|
|
24225
|
+
/**
|
|
24226
|
+
* 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`.
|
|
24227
|
+
*/
|
|
24228
|
+
verification?: {
|
|
24229
|
+
type: string;
|
|
24230
|
+
domain: string;
|
|
24231
|
+
value: string;
|
|
24232
|
+
reason: string;
|
|
24233
|
+
}[];
|
|
24234
|
+
}[];
|
|
24235
|
+
/**
|
|
24236
|
+
* List of aliases for the current deployment
|
|
24237
|
+
*/
|
|
24238
|
+
currentDeploymentAliases?: string[];
|
|
24239
|
+
/**
|
|
24240
|
+
* Timestamp when the environment was created
|
|
24241
|
+
*/
|
|
24242
|
+
createdAt: number;
|
|
24243
|
+
/**
|
|
24244
|
+
* Timestamp when the environment was last updated
|
|
24245
|
+
*/
|
|
24246
|
+
updatedAt: number;
|
|
24247
|
+
} | {
|
|
22829
24248
|
id: string;
|
|
22830
24249
|
};
|
|
22831
24250
|
aliasWarning?: {
|
|
@@ -22927,7 +24346,7 @@ declare const operationsByTag: {
|
|
|
22927
24346
|
org?: string;
|
|
22928
24347
|
repo?: string;
|
|
22929
24348
|
} | {
|
|
22930
|
-
type: "github";
|
|
24349
|
+
type: "github-custom-host";
|
|
22931
24350
|
host: string;
|
|
22932
24351
|
ref: string;
|
|
22933
24352
|
sha: string;
|
|
@@ -23722,11 +25141,11 @@ declare const operationsByTag: {
|
|
|
23722
25141
|
removeProjectMember: (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
|
|
23723
25142
|
};
|
|
23724
25143
|
environment: {
|
|
23725
|
-
createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
25144
|
+
createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
23726
25145
|
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<
|
|
25146
|
+
getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
25147
|
+
updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
25148
|
+
removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
23730
25149
|
};
|
|
23731
25150
|
security: {
|
|
23732
25151
|
updateAttackChallengeMode: (variables: UpdateAttackChallengeModeVariables, signal?: AbortSignal) => Promise<UpdateAttackChallengeModeResponse>;
|
|
@@ -23764,36 +25183,36 @@ declare const operationsByTag: {
|
|
|
23764
25183
|
}>;
|
|
23765
25184
|
getBypassIp: (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
23766
25185
|
result: {
|
|
23767
|
-
OwnerId
|
|
23768
|
-
Id
|
|
23769
|
-
Domain
|
|
23770
|
-
Ip
|
|
25186
|
+
OwnerId?: string;
|
|
25187
|
+
Id?: string;
|
|
25188
|
+
Domain?: string;
|
|
25189
|
+
Ip?: string;
|
|
23771
25190
|
Action?: "block" | "bypass";
|
|
23772
25191
|
ProjectId?: string;
|
|
23773
25192
|
IsProjectRule?: boolean;
|
|
23774
25193
|
Note?: string;
|
|
23775
|
-
CreatedAt
|
|
25194
|
+
CreatedAt?: string;
|
|
23776
25195
|
ActorId?: string;
|
|
23777
|
-
UpdatedAt
|
|
23778
|
-
UpdatedAtHour
|
|
25196
|
+
UpdatedAt?: string;
|
|
25197
|
+
UpdatedAtHour?: string;
|
|
23779
25198
|
DeletedAt?: string;
|
|
23780
25199
|
ExpiresAt?: number | null;
|
|
23781
25200
|
}[];
|
|
23782
25201
|
pagination: void | null;
|
|
23783
25202
|
} | {
|
|
23784
25203
|
result?: {
|
|
23785
|
-
OwnerId
|
|
23786
|
-
Id
|
|
23787
|
-
Domain
|
|
23788
|
-
Ip
|
|
25204
|
+
OwnerId?: string;
|
|
25205
|
+
Id?: string;
|
|
25206
|
+
Domain?: string;
|
|
25207
|
+
Ip?: string;
|
|
23789
25208
|
Action?: "block" | "bypass";
|
|
23790
25209
|
ProjectId?: string;
|
|
23791
25210
|
IsProjectRule?: boolean;
|
|
23792
25211
|
Note?: string;
|
|
23793
|
-
CreatedAt
|
|
25212
|
+
CreatedAt?: string;
|
|
23794
25213
|
ActorId?: string;
|
|
23795
|
-
UpdatedAt
|
|
23796
|
-
UpdatedAtHour
|
|
25214
|
+
UpdatedAt?: string;
|
|
25215
|
+
UpdatedAtHour?: string;
|
|
23797
25216
|
DeletedAt?: string;
|
|
23798
25217
|
ExpiresAt?: number | null;
|
|
23799
25218
|
}[];
|
|
@@ -23907,7 +25326,7 @@ declare const operationsByTag: {
|
|
|
23907
25326
|
*
|
|
23908
25327
|
* @example deployment.created
|
|
23909
25328
|
*/
|
|
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")[];
|
|
25329
|
+
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
25330
|
/**
|
|
23912
25331
|
* The webhook id
|
|
23913
25332
|
*
|
|
@@ -23950,7 +25369,7 @@ declare const operationsByTag: {
|
|
|
23950
25369
|
*
|
|
23951
25370
|
* @example deployment.created
|
|
23952
25371
|
*/
|
|
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")[];
|
|
25372
|
+
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
25373
|
/**
|
|
23955
25374
|
* The webhook id
|
|
23956
25375
|
*
|
|
@@ -23997,6 +25416,7 @@ declare const operationsByTag: {
|
|
|
23997
25416
|
listAliases: (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
23998
25417
|
getAlias: (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
23999
25418
|
deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
25419
|
+
patchUrlProtectionBypass: (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
24000
25420
|
};
|
|
24001
25421
|
certs: {
|
|
24002
25422
|
getCertById: (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
@@ -24087,6 +25507,7 @@ type components_CreateCustomEnvironmentError = CreateCustomEnvironmentError;
|
|
|
24087
25507
|
type components_CreateCustomEnvironmentPathParams = CreateCustomEnvironmentPathParams;
|
|
24088
25508
|
type components_CreateCustomEnvironmentQueryParams = CreateCustomEnvironmentQueryParams;
|
|
24089
25509
|
type components_CreateCustomEnvironmentRequestBody = CreateCustomEnvironmentRequestBody;
|
|
25510
|
+
type components_CreateCustomEnvironmentResponse = CreateCustomEnvironmentResponse;
|
|
24090
25511
|
type components_CreateCustomEnvironmentVariables = CreateCustomEnvironmentVariables;
|
|
24091
25512
|
type components_CreateDeploymentError = CreateDeploymentError;
|
|
24092
25513
|
type components_CreateDeploymentQueryParams = CreateDeploymentQueryParams;
|
|
@@ -24300,6 +25721,7 @@ type components_GetConfigurationsVariables = GetConfigurationsVariables;
|
|
|
24300
25721
|
type components_GetCustomEnvironmentError = GetCustomEnvironmentError;
|
|
24301
25722
|
type components_GetCustomEnvironmentPathParams = GetCustomEnvironmentPathParams;
|
|
24302
25723
|
type components_GetCustomEnvironmentQueryParams = GetCustomEnvironmentQueryParams;
|
|
25724
|
+
type components_GetCustomEnvironmentResponse = GetCustomEnvironmentResponse;
|
|
24303
25725
|
type components_GetCustomEnvironmentVariables = GetCustomEnvironmentVariables;
|
|
24304
25726
|
type components_GetDeploymentError = GetDeploymentError;
|
|
24305
25727
|
type components_GetDeploymentEventsError = GetDeploymentEventsError;
|
|
@@ -24542,6 +25964,11 @@ type components_PatchTeamPathParams = PatchTeamPathParams;
|
|
|
24542
25964
|
type components_PatchTeamQueryParams = PatchTeamQueryParams;
|
|
24543
25965
|
type components_PatchTeamRequestBody = PatchTeamRequestBody;
|
|
24544
25966
|
type components_PatchTeamVariables = PatchTeamVariables;
|
|
25967
|
+
type components_PatchUrlProtectionBypassError = PatchUrlProtectionBypassError;
|
|
25968
|
+
type components_PatchUrlProtectionBypassPathParams = PatchUrlProtectionBypassPathParams;
|
|
25969
|
+
type components_PatchUrlProtectionBypassQueryParams = PatchUrlProtectionBypassQueryParams;
|
|
25970
|
+
type components_PatchUrlProtectionBypassResponse = PatchUrlProtectionBypassResponse;
|
|
25971
|
+
type components_PatchUrlProtectionBypassVariables = PatchUrlProtectionBypassVariables;
|
|
24545
25972
|
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError;
|
|
24546
25973
|
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
|
|
24547
25974
|
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody;
|
|
@@ -24591,6 +26018,7 @@ type components_RemoveCustomEnvironmentError = RemoveCustomEnvironmentError;
|
|
|
24591
26018
|
type components_RemoveCustomEnvironmentPathParams = RemoveCustomEnvironmentPathParams;
|
|
24592
26019
|
type components_RemoveCustomEnvironmentQueryParams = RemoveCustomEnvironmentQueryParams;
|
|
24593
26020
|
type components_RemoveCustomEnvironmentRequestBody = RemoveCustomEnvironmentRequestBody;
|
|
26021
|
+
type components_RemoveCustomEnvironmentResponse = RemoveCustomEnvironmentResponse;
|
|
24594
26022
|
type components_RemoveCustomEnvironmentVariables = RemoveCustomEnvironmentVariables;
|
|
24595
26023
|
type components_RemoveProjectDomainError = RemoveProjectDomainError;
|
|
24596
26024
|
type components_RemoveProjectDomainPathParams = RemoveProjectDomainPathParams;
|
|
@@ -24684,6 +26112,7 @@ type components_UpdateCustomEnvironmentError = UpdateCustomEnvironmentError;
|
|
|
24684
26112
|
type components_UpdateCustomEnvironmentPathParams = UpdateCustomEnvironmentPathParams;
|
|
24685
26113
|
type components_UpdateCustomEnvironmentQueryParams = UpdateCustomEnvironmentQueryParams;
|
|
24686
26114
|
type components_UpdateCustomEnvironmentRequestBody = UpdateCustomEnvironmentRequestBody;
|
|
26115
|
+
type components_UpdateCustomEnvironmentResponse = UpdateCustomEnvironmentResponse;
|
|
24687
26116
|
type components_UpdateCustomEnvironmentVariables = UpdateCustomEnvironmentVariables;
|
|
24688
26117
|
type components_UpdateEdgeConfigError = UpdateEdgeConfigError;
|
|
24689
26118
|
type components_UpdateEdgeConfigPathParams = UpdateEdgeConfigPathParams;
|
|
@@ -24886,6 +26315,7 @@ declare const components_patchDomain: typeof patchDomain;
|
|
|
24886
26315
|
declare const components_patchEdgeConfigItems: typeof patchEdgeConfigItems;
|
|
24887
26316
|
declare const components_patchEdgeConfigSchema: typeof patchEdgeConfigSchema;
|
|
24888
26317
|
declare const components_patchTeam: typeof patchTeam;
|
|
26318
|
+
declare const components_patchUrlProtectionBypass: typeof patchUrlProtectionBypass;
|
|
24889
26319
|
declare const components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: typeof patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId;
|
|
24890
26320
|
declare const components_pauseProject: typeof pauseProject;
|
|
24891
26321
|
declare const components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems: typeof postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems;
|
|
@@ -24934,7 +26364,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
24934
26364
|
declare const components_uploadFile: typeof uploadFile;
|
|
24935
26365
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
24936
26366
|
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 };
|
|
26367
|
+
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_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_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_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_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_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_patchUrlProtectionBypass as patchUrlProtectionBypass, 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 };
|
|
24938
26368
|
}
|
|
24939
26369
|
|
|
24940
26370
|
declare const operationsByPath: {
|
|
@@ -25090,7 +26520,37 @@ declare const operationsByPath: {
|
|
|
25090
26520
|
userAliases?: string[];
|
|
25091
26521
|
previewCommentsEnabled?: boolean;
|
|
25092
26522
|
ttyBuildLogs?: boolean;
|
|
25093
|
-
customEnvironment?:
|
|
26523
|
+
customEnvironment?: {
|
|
26524
|
+
id: string;
|
|
26525
|
+
slug: string;
|
|
26526
|
+
type: "production" | "preview" | "development";
|
|
26527
|
+
description?: string;
|
|
26528
|
+
branchMatcher?: {
|
|
26529
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
26530
|
+
pattern: string;
|
|
26531
|
+
};
|
|
26532
|
+
domains?: {
|
|
26533
|
+
name: string;
|
|
26534
|
+
apexName: string;
|
|
26535
|
+
projectId: string;
|
|
26536
|
+
redirect?: string | null;
|
|
26537
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
26538
|
+
gitBranch?: string | null;
|
|
26539
|
+
customEnvironmentId?: string | null;
|
|
26540
|
+
updatedAt?: number;
|
|
26541
|
+
createdAt?: number;
|
|
26542
|
+
verified: boolean;
|
|
26543
|
+
verification?: {
|
|
26544
|
+
type: string;
|
|
26545
|
+
domain: string;
|
|
26546
|
+
value: string;
|
|
26547
|
+
reason: string;
|
|
26548
|
+
}[];
|
|
26549
|
+
}[];
|
|
26550
|
+
currentDeploymentAliases?: string[];
|
|
26551
|
+
createdAt: number;
|
|
26552
|
+
updatedAt: number;
|
|
26553
|
+
} | {
|
|
25094
26554
|
id: string;
|
|
25095
26555
|
};
|
|
25096
26556
|
aliasWarning?: {
|
|
@@ -25183,7 +26643,7 @@ declare const operationsByPath: {
|
|
|
25183
26643
|
org?: string;
|
|
25184
26644
|
repo?: string;
|
|
25185
26645
|
} | {
|
|
25186
|
-
type: "github";
|
|
26646
|
+
type: "github-custom-host";
|
|
25187
26647
|
host: string;
|
|
25188
26648
|
ref: string;
|
|
25189
26649
|
sha: string;
|
|
@@ -25407,7 +26867,37 @@ declare const operationsByPath: {
|
|
|
25407
26867
|
userAliases?: string[];
|
|
25408
26868
|
previewCommentsEnabled?: boolean;
|
|
25409
26869
|
ttyBuildLogs?: boolean;
|
|
25410
|
-
customEnvironment?:
|
|
26870
|
+
customEnvironment?: {
|
|
26871
|
+
id: string;
|
|
26872
|
+
slug: string;
|
|
26873
|
+
type: "production" | "preview" | "development";
|
|
26874
|
+
description?: string;
|
|
26875
|
+
branchMatcher?: {
|
|
26876
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
26877
|
+
pattern: string;
|
|
26878
|
+
};
|
|
26879
|
+
domains?: {
|
|
26880
|
+
name: string;
|
|
26881
|
+
apexName: string;
|
|
26882
|
+
projectId: string;
|
|
26883
|
+
redirect?: string | null;
|
|
26884
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
26885
|
+
gitBranch?: string | null;
|
|
26886
|
+
customEnvironmentId?: string | null;
|
|
26887
|
+
updatedAt?: number;
|
|
26888
|
+
createdAt?: number;
|
|
26889
|
+
verified: boolean;
|
|
26890
|
+
verification?: {
|
|
26891
|
+
type: string;
|
|
26892
|
+
domain: string;
|
|
26893
|
+
value: string;
|
|
26894
|
+
reason: string;
|
|
26895
|
+
}[];
|
|
26896
|
+
}[];
|
|
26897
|
+
currentDeploymentAliases?: string[];
|
|
26898
|
+
createdAt: number;
|
|
26899
|
+
updatedAt: number;
|
|
26900
|
+
} | {
|
|
25411
26901
|
id: string;
|
|
25412
26902
|
};
|
|
25413
26903
|
aliasWarning?: {
|
|
@@ -25500,7 +26990,7 @@ declare const operationsByPath: {
|
|
|
25500
26990
|
org?: string;
|
|
25501
26991
|
repo?: string;
|
|
25502
26992
|
} | {
|
|
25503
|
-
type: "github";
|
|
26993
|
+
type: "github-custom-host";
|
|
25504
26994
|
host: string;
|
|
25505
26995
|
ref: string;
|
|
25506
26996
|
sha: string;
|
|
@@ -25865,11 +27355,11 @@ declare const operationsByPath: {
|
|
|
25865
27355
|
'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
25866
27356
|
'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
25867
27357
|
'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25868
|
-
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
27358
|
+
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
25869
27359
|
'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<
|
|
27360
|
+
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
27361
|
+
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
27362
|
+
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
25873
27363
|
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
25874
27364
|
domains: {
|
|
25875
27365
|
name: string;
|
|
@@ -26700,36 +28190,36 @@ declare const operationsByPath: {
|
|
|
26700
28190
|
}>;
|
|
26701
28191
|
'GET /v1/security/firewall/bypass': (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
26702
28192
|
result: {
|
|
26703
|
-
OwnerId
|
|
26704
|
-
Id
|
|
26705
|
-
Domain
|
|
26706
|
-
Ip
|
|
28193
|
+
OwnerId?: string;
|
|
28194
|
+
Id?: string;
|
|
28195
|
+
Domain?: string;
|
|
28196
|
+
Ip?: string;
|
|
26707
28197
|
Action?: "block" | "bypass";
|
|
26708
28198
|
ProjectId?: string;
|
|
26709
28199
|
IsProjectRule?: boolean;
|
|
26710
28200
|
Note?: string;
|
|
26711
|
-
CreatedAt
|
|
28201
|
+
CreatedAt?: string;
|
|
26712
28202
|
ActorId?: string;
|
|
26713
|
-
UpdatedAt
|
|
26714
|
-
UpdatedAtHour
|
|
28203
|
+
UpdatedAt?: string;
|
|
28204
|
+
UpdatedAtHour?: string;
|
|
26715
28205
|
DeletedAt?: string;
|
|
26716
28206
|
ExpiresAt?: number | null;
|
|
26717
28207
|
}[];
|
|
26718
28208
|
pagination: void | null;
|
|
26719
28209
|
} | {
|
|
26720
28210
|
result?: {
|
|
26721
|
-
OwnerId
|
|
26722
|
-
Id
|
|
26723
|
-
Domain
|
|
26724
|
-
Ip
|
|
28211
|
+
OwnerId?: string;
|
|
28212
|
+
Id?: string;
|
|
28213
|
+
Domain?: string;
|
|
28214
|
+
Ip?: string;
|
|
26725
28215
|
Action?: "block" | "bypass";
|
|
26726
28216
|
ProjectId?: string;
|
|
26727
28217
|
IsProjectRule?: boolean;
|
|
26728
28218
|
Note?: string;
|
|
26729
|
-
CreatedAt
|
|
28219
|
+
CreatedAt?: string;
|
|
26730
28220
|
ActorId?: string;
|
|
26731
|
-
UpdatedAt
|
|
26732
|
-
UpdatedAtHour
|
|
28221
|
+
UpdatedAt?: string;
|
|
28222
|
+
UpdatedAtHour?: string;
|
|
26733
28223
|
DeletedAt?: string;
|
|
26734
28224
|
ExpiresAt?: number | null;
|
|
26735
28225
|
}[];
|
|
@@ -26813,7 +28303,7 @@ declare const operationsByPath: {
|
|
|
26813
28303
|
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
28304
|
latestDeployment?: string;
|
|
26815
28305
|
}[] | 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")[];
|
|
28306
|
+
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
28307
|
id: string;
|
|
26818
28308
|
url: string;
|
|
26819
28309
|
ownerId: string;
|
|
@@ -26821,7 +28311,7 @@ declare const operationsByPath: {
|
|
|
26821
28311
|
updatedAt: number;
|
|
26822
28312
|
projectIds?: string[];
|
|
26823
28313
|
}[] | {
|
|
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")[];
|
|
28314
|
+
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
28315
|
id: string;
|
|
26826
28316
|
url: string;
|
|
26827
28317
|
ownerId: string;
|
|
@@ -26836,6 +28326,7 @@ declare const operationsByPath: {
|
|
|
26836
28326
|
'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
26837
28327
|
'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
26838
28328
|
'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
28329
|
+
'PATCH /aliases/{id}/protection-bypass': (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
26839
28330
|
'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
|
|
26840
28331
|
'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
26841
28332
|
'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
@@ -27026,7 +28517,37 @@ declare class VercelApi {
|
|
|
27026
28517
|
userAliases?: string[];
|
|
27027
28518
|
previewCommentsEnabled?: boolean;
|
|
27028
28519
|
ttyBuildLogs?: boolean;
|
|
27029
|
-
customEnvironment?:
|
|
28520
|
+
customEnvironment?: {
|
|
28521
|
+
id: string;
|
|
28522
|
+
slug: string;
|
|
28523
|
+
type: "production" | "preview" | "development";
|
|
28524
|
+
description?: string;
|
|
28525
|
+
branchMatcher?: {
|
|
28526
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
28527
|
+
pattern: string;
|
|
28528
|
+
};
|
|
28529
|
+
domains?: {
|
|
28530
|
+
name: string;
|
|
28531
|
+
apexName: string;
|
|
28532
|
+
projectId: string;
|
|
28533
|
+
redirect?: string | null;
|
|
28534
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
28535
|
+
gitBranch?: string | null;
|
|
28536
|
+
customEnvironmentId?: string | null;
|
|
28537
|
+
updatedAt?: number;
|
|
28538
|
+
createdAt?: number;
|
|
28539
|
+
verified: boolean;
|
|
28540
|
+
verification?: {
|
|
28541
|
+
type: string;
|
|
28542
|
+
domain: string;
|
|
28543
|
+
value: string;
|
|
28544
|
+
reason: string;
|
|
28545
|
+
}[];
|
|
28546
|
+
}[];
|
|
28547
|
+
currentDeploymentAliases?: string[];
|
|
28548
|
+
createdAt: number;
|
|
28549
|
+
updatedAt: number;
|
|
28550
|
+
} | {
|
|
27030
28551
|
id: string;
|
|
27031
28552
|
};
|
|
27032
28553
|
aliasWarning?: {
|
|
@@ -27119,7 +28640,7 @@ declare class VercelApi {
|
|
|
27119
28640
|
org?: string;
|
|
27120
28641
|
repo?: string;
|
|
27121
28642
|
} | {
|
|
27122
|
-
type: "github";
|
|
28643
|
+
type: "github-custom-host";
|
|
27123
28644
|
host: string;
|
|
27124
28645
|
ref: string;
|
|
27125
28646
|
sha: string;
|
|
@@ -27343,7 +28864,37 @@ declare class VercelApi {
|
|
|
27343
28864
|
userAliases?: string[];
|
|
27344
28865
|
previewCommentsEnabled?: boolean;
|
|
27345
28866
|
ttyBuildLogs?: boolean;
|
|
27346
|
-
customEnvironment?:
|
|
28867
|
+
customEnvironment?: {
|
|
28868
|
+
id: string;
|
|
28869
|
+
slug: string;
|
|
28870
|
+
type: "production" | "preview" | "development";
|
|
28871
|
+
description?: string;
|
|
28872
|
+
branchMatcher?: {
|
|
28873
|
+
type: "startsWith" | "equals" | "endsWith";
|
|
28874
|
+
pattern: string;
|
|
28875
|
+
};
|
|
28876
|
+
domains?: {
|
|
28877
|
+
name: string;
|
|
28878
|
+
apexName: string;
|
|
28879
|
+
projectId: string;
|
|
28880
|
+
redirect?: string | null;
|
|
28881
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
28882
|
+
gitBranch?: string | null;
|
|
28883
|
+
customEnvironmentId?: string | null;
|
|
28884
|
+
updatedAt?: number;
|
|
28885
|
+
createdAt?: number;
|
|
28886
|
+
verified: boolean;
|
|
28887
|
+
verification?: {
|
|
28888
|
+
type: string;
|
|
28889
|
+
domain: string;
|
|
28890
|
+
value: string;
|
|
28891
|
+
reason: string;
|
|
28892
|
+
}[];
|
|
28893
|
+
}[];
|
|
28894
|
+
currentDeploymentAliases?: string[];
|
|
28895
|
+
createdAt: number;
|
|
28896
|
+
updatedAt: number;
|
|
28897
|
+
} | {
|
|
27347
28898
|
id: string;
|
|
27348
28899
|
};
|
|
27349
28900
|
aliasWarning?: {
|
|
@@ -27436,7 +28987,7 @@ declare class VercelApi {
|
|
|
27436
28987
|
org?: string;
|
|
27437
28988
|
repo?: string;
|
|
27438
28989
|
} | {
|
|
27439
|
-
type: "github";
|
|
28990
|
+
type: "github-custom-host";
|
|
27440
28991
|
host: string;
|
|
27441
28992
|
ref: string;
|
|
27442
28993
|
sha: string;
|
|
@@ -27801,11 +29352,11 @@ declare class VercelApi {
|
|
|
27801
29352
|
'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
27802
29353
|
'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
27803
29354
|
'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27804
|
-
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<
|
|
29355
|
+
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<CreateCustomEnvironmentResponse>;
|
|
27805
29356
|
'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<
|
|
29357
|
+
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<GetCustomEnvironmentResponse>;
|
|
29358
|
+
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<UpdateCustomEnvironmentResponse>;
|
|
29359
|
+
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<RemoveCustomEnvironmentResponse>;
|
|
27809
29360
|
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
27810
29361
|
domains: {
|
|
27811
29362
|
name: string;
|
|
@@ -28636,36 +30187,36 @@ declare class VercelApi {
|
|
|
28636
30187
|
}>;
|
|
28637
30188
|
'GET /v1/security/firewall/bypass': (variables: GetBypassIpVariables, signal?: AbortSignal) => Promise<{
|
|
28638
30189
|
result: {
|
|
28639
|
-
OwnerId
|
|
28640
|
-
Id
|
|
28641
|
-
Domain
|
|
28642
|
-
Ip
|
|
30190
|
+
OwnerId?: string;
|
|
30191
|
+
Id?: string;
|
|
30192
|
+
Domain?: string;
|
|
30193
|
+
Ip?: string;
|
|
28643
30194
|
Action?: "block" | "bypass";
|
|
28644
30195
|
ProjectId?: string;
|
|
28645
30196
|
IsProjectRule?: boolean;
|
|
28646
30197
|
Note?: string;
|
|
28647
|
-
CreatedAt
|
|
30198
|
+
CreatedAt?: string;
|
|
28648
30199
|
ActorId?: string;
|
|
28649
|
-
UpdatedAt
|
|
28650
|
-
UpdatedAtHour
|
|
30200
|
+
UpdatedAt?: string;
|
|
30201
|
+
UpdatedAtHour?: string;
|
|
28651
30202
|
DeletedAt?: string;
|
|
28652
30203
|
ExpiresAt?: number | null;
|
|
28653
30204
|
}[];
|
|
28654
30205
|
pagination: void | null;
|
|
28655
30206
|
} | {
|
|
28656
30207
|
result?: {
|
|
28657
|
-
OwnerId
|
|
28658
|
-
Id
|
|
28659
|
-
Domain
|
|
28660
|
-
Ip
|
|
30208
|
+
OwnerId?: string;
|
|
30209
|
+
Id?: string;
|
|
30210
|
+
Domain?: string;
|
|
30211
|
+
Ip?: string;
|
|
28661
30212
|
Action?: "block" | "bypass";
|
|
28662
30213
|
ProjectId?: string;
|
|
28663
30214
|
IsProjectRule?: boolean;
|
|
28664
30215
|
Note?: string;
|
|
28665
|
-
CreatedAt
|
|
30216
|
+
CreatedAt?: string;
|
|
28666
30217
|
ActorId?: string;
|
|
28667
|
-
UpdatedAt
|
|
28668
|
-
UpdatedAtHour
|
|
30218
|
+
UpdatedAt?: string;
|
|
30219
|
+
UpdatedAtHour?: string;
|
|
28669
30220
|
DeletedAt?: string;
|
|
28670
30221
|
ExpiresAt?: number | null;
|
|
28671
30222
|
}[];
|
|
@@ -28749,7 +30300,7 @@ declare class VercelApi {
|
|
|
28749
30300
|
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
30301
|
latestDeployment?: string;
|
|
28751
30302
|
}[] | 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")[];
|
|
30303
|
+
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
30304
|
id: string;
|
|
28754
30305
|
url: string;
|
|
28755
30306
|
ownerId: string;
|
|
@@ -28757,7 +30308,7 @@ declare class VercelApi {
|
|
|
28757
30308
|
updatedAt: number;
|
|
28758
30309
|
projectIds?: string[];
|
|
28759
30310
|
}[] | {
|
|
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")[];
|
|
30311
|
+
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
30312
|
id: string;
|
|
28762
30313
|
url: string;
|
|
28763
30314
|
ownerId: string;
|
|
@@ -28772,6 +30323,7 @@ declare class VercelApi {
|
|
|
28772
30323
|
'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
28773
30324
|
'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
28774
30325
|
'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
30326
|
+
'PATCH /aliases/{id}/protection-bypass': (variables: PatchUrlProtectionBypassVariables, signal?: AbortSignal) => Promise<PatchUrlProtectionBypassResponse>;
|
|
28775
30327
|
'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
|
|
28776
30328
|
'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
28777
30329
|
'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|