vercel-api-js 1.7.2 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.cjs +129 -145
- package/dist/components.d.mts +99 -111
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +128 -144
- package/dist/effect.cjs +111 -115
- package/dist/effect.d.mts +90 -94
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +111 -115
- package/dist/index.cjs +429 -206
- package/dist/index.d.ts +618 -229
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +406 -186
- package/dist/schemas.cjs +236 -63
- package/dist/schemas.d.mts +198 -29
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +216 -43
- package/dist/types.cjs +66 -0
- package/dist/types.d.mts +303 -71
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +64 -1
- package/package.json +1 -1
package/dist/components.d.mts
CHANGED
|
@@ -1826,9 +1826,9 @@ declare function dangerouslyDeleteBySrcImages({ queryParams, config, }?: {
|
|
|
1826
1826
|
};
|
|
1827
1827
|
}): Promise<unknown>;
|
|
1828
1828
|
/**
|
|
1829
|
-
* @summary Get
|
|
1830
|
-
* @description Returns all
|
|
1831
|
-
* @link /v1/
|
|
1829
|
+
* @summary Get Global Configs
|
|
1830
|
+
* @description Returns all Global Configs.
|
|
1831
|
+
* @link /v1/global-config
|
|
1832
1832
|
*/
|
|
1833
1833
|
declare function getEdgeConfigs({ queryParams, config, }?: {
|
|
1834
1834
|
queryParams?: {
|
|
@@ -1840,9 +1840,9 @@ declare function getEdgeConfigs({ queryParams, config, }?: {
|
|
|
1840
1840
|
};
|
|
1841
1841
|
}): Promise<unknown>;
|
|
1842
1842
|
/**
|
|
1843
|
-
* @summary Create
|
|
1844
|
-
* @description Creates
|
|
1845
|
-
* @link /v1/
|
|
1843
|
+
* @summary Create a Global Config
|
|
1844
|
+
* @description Creates a Global Config.
|
|
1845
|
+
* @link /v1/global-config
|
|
1846
1846
|
*/
|
|
1847
1847
|
declare function createEdgeConfig({ queryParams, config, }?: {
|
|
1848
1848
|
queryParams?: {
|
|
@@ -1854,9 +1854,9 @@ declare function createEdgeConfig({ queryParams, config, }?: {
|
|
|
1854
1854
|
};
|
|
1855
1855
|
}): Promise<unknown>;
|
|
1856
1856
|
/**
|
|
1857
|
-
* @summary Get
|
|
1858
|
-
* @description Returns
|
|
1859
|
-
* @link /v1/
|
|
1857
|
+
* @summary Get a Global Config
|
|
1858
|
+
* @description Returns a Global Config.
|
|
1859
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
1860
1860
|
*/
|
|
1861
1861
|
declare function getEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
1862
1862
|
pathParams: {
|
|
@@ -1871,9 +1871,9 @@ declare function getEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
|
1871
1871
|
};
|
|
1872
1872
|
}): Promise<unknown>;
|
|
1873
1873
|
/**
|
|
1874
|
-
* @summary Update
|
|
1875
|
-
* @description Updates
|
|
1876
|
-
* @link /v1/
|
|
1874
|
+
* @summary Update a Global Config
|
|
1875
|
+
* @description Updates a Global Config.
|
|
1876
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
1877
1877
|
*/
|
|
1878
1878
|
declare function updateEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
1879
1879
|
pathParams: {
|
|
@@ -1888,9 +1888,9 @@ declare function updateEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
|
1888
1888
|
};
|
|
1889
1889
|
}): Promise<unknown>;
|
|
1890
1890
|
/**
|
|
1891
|
-
* @summary Delete
|
|
1892
|
-
* @description Delete
|
|
1893
|
-
* @link /v1/
|
|
1891
|
+
* @summary Delete a Global Config
|
|
1892
|
+
* @description Delete a Global Config by id.
|
|
1893
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
1894
1894
|
*/
|
|
1895
1895
|
declare function deleteEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
1896
1896
|
pathParams: {
|
|
@@ -1905,9 +1905,9 @@ declare function deleteEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
|
1905
1905
|
};
|
|
1906
1906
|
}): Promise<unknown>;
|
|
1907
1907
|
/**
|
|
1908
|
-
* @summary Get
|
|
1909
|
-
* @description Returns all items of
|
|
1910
|
-
* @link /v1/
|
|
1908
|
+
* @summary Get Global Config items
|
|
1909
|
+
* @description Returns all items of a Global Config.
|
|
1910
|
+
* @link /v1/global-config/{edgeConfigId}/items
|
|
1911
1911
|
*/
|
|
1912
1912
|
declare function getEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
1913
1913
|
pathParams: {
|
|
@@ -1922,9 +1922,9 @@ declare function getEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
|
1922
1922
|
};
|
|
1923
1923
|
}): Promise<unknown>;
|
|
1924
1924
|
/**
|
|
1925
|
-
* @summary Update
|
|
1926
|
-
* @description Update multiple
|
|
1927
|
-
* @link /v1/
|
|
1925
|
+
* @summary Update Global Config items in batch
|
|
1926
|
+
* @description Update multiple Global Config Items in batch.
|
|
1927
|
+
* @link /v1/global-config/{edgeConfigId}/items
|
|
1928
1928
|
*/
|
|
1929
1929
|
declare function patchEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
1930
1930
|
pathParams: {
|
|
@@ -1939,9 +1939,9 @@ declare function patchEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
|
1939
1939
|
};
|
|
1940
1940
|
}): Promise<unknown>;
|
|
1941
1941
|
/**
|
|
1942
|
-
* @summary Get
|
|
1943
|
-
* @description Returns the schema of
|
|
1944
|
-
* @link /v1/
|
|
1942
|
+
* @summary Get Global Config schema
|
|
1943
|
+
* @description Returns the schema of a Global Config.
|
|
1944
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
1945
1945
|
*/
|
|
1946
1946
|
declare function getEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
1947
1947
|
pathParams: {
|
|
@@ -1956,9 +1956,9 @@ declare function getEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
|
1956
1956
|
};
|
|
1957
1957
|
}): Promise<unknown>;
|
|
1958
1958
|
/**
|
|
1959
|
-
* @summary Update
|
|
1960
|
-
* @description Update
|
|
1961
|
-
* @link /v1/
|
|
1959
|
+
* @summary Update Global Config schema
|
|
1960
|
+
* @description Update a Global Config's schema.
|
|
1961
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
1962
1962
|
*/
|
|
1963
1963
|
declare function patchEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
1964
1964
|
pathParams: {
|
|
@@ -1974,9 +1974,9 @@ declare function patchEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
|
1974
1974
|
};
|
|
1975
1975
|
}): Promise<unknown>;
|
|
1976
1976
|
/**
|
|
1977
|
-
* @summary Delete
|
|
1978
|
-
* @description Deletes the schema of existing
|
|
1979
|
-
* @link /v1/
|
|
1977
|
+
* @summary Delete a Global Config's schema
|
|
1978
|
+
* @description Deletes the schema of existing Global Config.
|
|
1979
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
1980
1980
|
*/
|
|
1981
1981
|
declare function deleteEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
1982
1982
|
pathParams: {
|
|
@@ -1991,9 +1991,9 @@ declare function deleteEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
|
1991
1991
|
};
|
|
1992
1992
|
}): Promise<unknown>;
|
|
1993
1993
|
/**
|
|
1994
|
-
* @summary Get
|
|
1995
|
-
* @description Returns a specific
|
|
1996
|
-
* @link /v1/
|
|
1994
|
+
* @summary Get a Global Config item
|
|
1995
|
+
* @description Returns a specific Global Config Item.
|
|
1996
|
+
* @link /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}
|
|
1997
1997
|
*/
|
|
1998
1998
|
declare function getEdgeConfigItem({ pathParams, queryParams, config, }?: {
|
|
1999
1999
|
pathParams: {
|
|
@@ -2009,9 +2009,9 @@ declare function getEdgeConfigItem({ pathParams, queryParams, config, }?: {
|
|
|
2009
2009
|
};
|
|
2010
2010
|
}): Promise<unknown>;
|
|
2011
2011
|
/**
|
|
2012
|
-
* @summary Get all tokens of
|
|
2013
|
-
* @description Returns all tokens of
|
|
2014
|
-
* @link /v1/
|
|
2012
|
+
* @summary Get all tokens of a Global Config
|
|
2013
|
+
* @description Returns all tokens of a Global Config.
|
|
2014
|
+
* @link /v1/global-config/{edgeConfigId}/tokens
|
|
2015
2015
|
*/
|
|
2016
2016
|
declare function getEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
2017
2017
|
pathParams: {
|
|
@@ -2026,9 +2026,9 @@ declare function getEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
|
2026
2026
|
};
|
|
2027
2027
|
}): Promise<unknown>;
|
|
2028
2028
|
/**
|
|
2029
|
-
* @summary Delete one or more
|
|
2030
|
-
* @description Deletes one or more tokens of an existing
|
|
2031
|
-
* @link /v1/
|
|
2029
|
+
* @summary Delete one or more Global Config tokens
|
|
2030
|
+
* @description Deletes one or more tokens of an existing Global Config.
|
|
2031
|
+
* @link /v1/global-config/{edgeConfigId}/tokens
|
|
2032
2032
|
*/
|
|
2033
2033
|
declare function deleteEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
2034
2034
|
pathParams: {
|
|
@@ -2043,9 +2043,9 @@ declare function deleteEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
|
2043
2043
|
};
|
|
2044
2044
|
}): Promise<unknown>;
|
|
2045
2045
|
/**
|
|
2046
|
-
* @summary Get
|
|
2047
|
-
* @description Return meta data about
|
|
2048
|
-
* @link /v1/
|
|
2046
|
+
* @summary Get Global Config token meta data
|
|
2047
|
+
* @description Return meta data about a Global Config token.
|
|
2048
|
+
* @link /v1/global-config/{edgeConfigId}/token/{token}
|
|
2049
2049
|
*/
|
|
2050
2050
|
declare function getEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
2051
2051
|
pathParams: {
|
|
@@ -2061,9 +2061,9 @@ declare function getEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
|
2061
2061
|
};
|
|
2062
2062
|
}): Promise<unknown>;
|
|
2063
2063
|
/**
|
|
2064
|
-
* @summary Create
|
|
2065
|
-
* @description Adds a token to an existing
|
|
2066
|
-
* @link /v1/
|
|
2064
|
+
* @summary Create a Global Config token
|
|
2065
|
+
* @description Adds a token to an existing Global Config.
|
|
2066
|
+
* @link /v1/global-config/{edgeConfigId}/token
|
|
2067
2067
|
*/
|
|
2068
2068
|
declare function createEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
2069
2069
|
pathParams: {
|
|
@@ -2078,9 +2078,9 @@ declare function createEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
|
2078
2078
|
};
|
|
2079
2079
|
}): Promise<unknown>;
|
|
2080
2080
|
/**
|
|
2081
|
-
* @summary Get
|
|
2082
|
-
* @description Retrieves a specific version of
|
|
2083
|
-
* @link /v1/
|
|
2081
|
+
* @summary Get Global Config backup
|
|
2082
|
+
* @description Retrieves a specific version of a Global Config from backup storage.
|
|
2083
|
+
* @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}
|
|
2084
2084
|
*/
|
|
2085
2085
|
declare function getEdgeConfigBackup({ pathParams, queryParams, config, }?: {
|
|
2086
2086
|
pathParams: {
|
|
@@ -2096,9 +2096,9 @@ declare function getEdgeConfigBackup({ pathParams, queryParams, config, }?: {
|
|
|
2096
2096
|
};
|
|
2097
2097
|
}): Promise<unknown>;
|
|
2098
2098
|
/**
|
|
2099
|
-
* @summary Restore
|
|
2100
|
-
* @description Restores
|
|
2101
|
-
* @link /v1/
|
|
2099
|
+
* @summary Restore Global Config backup
|
|
2100
|
+
* @description Restores a Global Config backup.
|
|
2101
|
+
* @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore
|
|
2102
2102
|
*/
|
|
2103
2103
|
declare function restoreEdgeConfigBackup({ pathParams, queryParams, config, }?: {
|
|
2104
2104
|
pathParams: {
|
|
@@ -2114,9 +2114,9 @@ declare function restoreEdgeConfigBackup({ pathParams, queryParams, config, }?:
|
|
|
2114
2114
|
};
|
|
2115
2115
|
}): Promise<unknown>;
|
|
2116
2116
|
/**
|
|
2117
|
-
* @summary Get
|
|
2118
|
-
* @description Returns backups of
|
|
2119
|
-
* @link /v1/
|
|
2117
|
+
* @summary Get Global Config backups
|
|
2118
|
+
* @description Returns backups of a Global Config.
|
|
2119
|
+
* @link /v1/global-config/{edgeConfigId}/backups
|
|
2120
2120
|
*/
|
|
2121
2121
|
declare function getEdgeConfigBackups({ pathParams, queryParams, config, }?: {
|
|
2122
2122
|
pathParams: {
|
|
@@ -3174,11 +3174,11 @@ declare function deleteInstallationsByIntegrationConfigurationIdResourcesByResou
|
|
|
3174
3174
|
};
|
|
3175
3175
|
}): Promise<unknown>;
|
|
3176
3176
|
/**
|
|
3177
|
-
* @summary Get the data of a user-provided
|
|
3178
|
-
* @description When the user enabled
|
|
3179
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3177
|
+
* @summary Get the data of a user-provided Global Config
|
|
3178
|
+
* @description When the user enabled Global Config syncing, then this endpoint can be used by the partner to fetch the contents of the Global Config.
|
|
3179
|
+
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
|
|
3180
3180
|
*/
|
|
3181
|
-
declare function
|
|
3181
|
+
declare function getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config, }?: {
|
|
3182
3182
|
pathParams: {
|
|
3183
3183
|
integrationConfigurationId: string;
|
|
3184
3184
|
resourceId: string;
|
|
@@ -3188,11 +3188,11 @@ declare function getInstallationsByIntegrationConfigurationIdResourcesByResource
|
|
|
3188
3188
|
};
|
|
3189
3189
|
}): Promise<unknown>;
|
|
3190
3190
|
/**
|
|
3191
|
-
* @summary Push data into a user-provided
|
|
3192
|
-
* @description When the user enabled
|
|
3193
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3191
|
+
* @summary Push data into a user-provided Global Config
|
|
3192
|
+
* @description When the user enabled Global Config syncing, then this endpoint can be used by the partner to push their configuration data into the relevant Global Config.
|
|
3193
|
+
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
|
|
3194
3194
|
*/
|
|
3195
|
-
declare function
|
|
3195
|
+
declare function replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config, }?: {
|
|
3196
3196
|
pathParams: {
|
|
3197
3197
|
integrationConfigurationId: string;
|
|
3198
3198
|
resourceId: string;
|
|
@@ -6108,24 +6108,24 @@ declare const operationsByPath: {
|
|
|
6108
6108
|
"POST /v1/edge-cache/dangerously-delete-by-tags": typeof dangerouslyDeleteByTags;
|
|
6109
6109
|
"POST /v1/edge-cache/invalidate-by-src-images": typeof invalidateBySrcImages;
|
|
6110
6110
|
"POST /v1/edge-cache/dangerously-delete-by-src-images": typeof dangerouslyDeleteBySrcImages;
|
|
6111
|
-
"GET /v1/
|
|
6112
|
-
"POST /v1/
|
|
6113
|
-
"GET /v1/
|
|
6114
|
-
"PUT /v1/
|
|
6115
|
-
"DELETE /v1/
|
|
6116
|
-
"GET /v1/
|
|
6117
|
-
"PATCH /v1/
|
|
6118
|
-
"GET /v1/
|
|
6119
|
-
"POST /v1/
|
|
6120
|
-
"DELETE /v1/
|
|
6121
|
-
"GET /v1/
|
|
6122
|
-
"GET /v1/
|
|
6123
|
-
"DELETE /v1/
|
|
6124
|
-
"GET /v1/
|
|
6125
|
-
"POST /v1/
|
|
6126
|
-
"GET /v1/
|
|
6127
|
-
"POST /v1/
|
|
6128
|
-
"GET /v1/
|
|
6111
|
+
"GET /v1/global-config": typeof getEdgeConfigs;
|
|
6112
|
+
"POST /v1/global-config": typeof createEdgeConfig;
|
|
6113
|
+
"GET /v1/global-config/{edgeConfigId}": typeof getEdgeConfig;
|
|
6114
|
+
"PUT /v1/global-config/{edgeConfigId}": typeof updateEdgeConfig;
|
|
6115
|
+
"DELETE /v1/global-config/{edgeConfigId}": typeof deleteEdgeConfig;
|
|
6116
|
+
"GET /v1/global-config/{edgeConfigId}/items": typeof getEdgeConfigItems;
|
|
6117
|
+
"PATCH /v1/global-config/{edgeConfigId}/items": typeof patchEdgeConfigItems;
|
|
6118
|
+
"GET /v1/global-config/{edgeConfigId}/schema": typeof getEdgeConfigSchema;
|
|
6119
|
+
"POST /v1/global-config/{edgeConfigId}/schema": typeof patchEdgeConfigSchema;
|
|
6120
|
+
"DELETE /v1/global-config/{edgeConfigId}/schema": typeof deleteEdgeConfigSchema;
|
|
6121
|
+
"GET /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}": typeof getEdgeConfigItem;
|
|
6122
|
+
"GET /v1/global-config/{edgeConfigId}/tokens": typeof getEdgeConfigTokens;
|
|
6123
|
+
"DELETE /v1/global-config/{edgeConfigId}/tokens": typeof deleteEdgeConfigTokens;
|
|
6124
|
+
"GET /v1/global-config/{edgeConfigId}/token/{token}": typeof getEdgeConfigToken;
|
|
6125
|
+
"POST /v1/global-config/{edgeConfigId}/token": typeof createEdgeConfigToken;
|
|
6126
|
+
"GET /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}": typeof getEdgeConfigBackup;
|
|
6127
|
+
"POST /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore": typeof restoreEdgeConfigBackup;
|
|
6128
|
+
"GET /v1/global-config/{edgeConfigId}/backups": typeof getEdgeConfigBackups;
|
|
6129
6129
|
"POST /v1/env": typeof createSharedEnvVariable;
|
|
6130
6130
|
"GET /v1/env": typeof listSharedEnvVariable;
|
|
6131
6131
|
"PATCH /v1/env": typeof updateSharedEnvVariable;
|
|
@@ -6189,8 +6189,8 @@ declare const operationsByPath: {
|
|
|
6189
6189
|
"POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items": typeof createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems;
|
|
6190
6190
|
"PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": typeof updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6191
6191
|
"DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": typeof deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6192
|
-
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
6193
|
-
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
6192
|
+
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": typeof getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6193
|
+
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": typeof replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6194
6194
|
"GET /v1/microfrontends/groups": typeof getMicrofrontendsGroups;
|
|
6195
6195
|
"GET /v1/microfrontends/groups/{groupId}/projects": typeof getMicrofrontendsInGroup;
|
|
6196
6196
|
"GET /v1/microfrontends/{deploymentId}/config": typeof getMicrofrontendsConfig;
|
|
@@ -6373,7 +6373,7 @@ declare const operationsByTag: {
|
|
|
6373
6373
|
updateAccessGroupProject: typeof updateAccessGroupProject;
|
|
6374
6374
|
deleteAccessGroupProject: typeof deleteAccessGroupProject;
|
|
6375
6375
|
};
|
|
6376
|
-
|
|
6376
|
+
aiGateway: {
|
|
6377
6377
|
createAiGatewayRule: typeof createAiGatewayRule;
|
|
6378
6378
|
listAiGatewayRules: typeof listAiGatewayRules;
|
|
6379
6379
|
updateAiGatewayRule: typeof updateAiGatewayRule;
|
|
@@ -6518,7 +6518,7 @@ declare const operationsByTag: {
|
|
|
6518
6518
|
invalidateBySrcImages: typeof invalidateBySrcImages;
|
|
6519
6519
|
dangerouslyDeleteBySrcImages: typeof dangerouslyDeleteBySrcImages;
|
|
6520
6520
|
};
|
|
6521
|
-
|
|
6521
|
+
globalConfig: {
|
|
6522
6522
|
getEdgeConfigs: typeof getEdgeConfigs;
|
|
6523
6523
|
createEdgeConfig: typeof createEdgeConfig;
|
|
6524
6524
|
getEdgeConfig: typeof getEdgeConfig;
|
|
@@ -6602,8 +6602,8 @@ declare const operationsByTag: {
|
|
|
6602
6602
|
createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems: typeof createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems;
|
|
6603
6603
|
updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId: typeof updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6604
6604
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId: typeof deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6605
|
-
|
|
6606
|
-
|
|
6605
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig: typeof getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6606
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig: typeof replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6607
6607
|
};
|
|
6608
6608
|
authentication: {
|
|
6609
6609
|
exchangeSsoToken: typeof exchangeSsoToken;
|
|
@@ -6622,7 +6622,7 @@ declare const operationsByTag: {
|
|
|
6622
6622
|
getMicrofrontendsConfigForProject: typeof getMicrofrontendsConfigForProject;
|
|
6623
6623
|
createMicrofrontendsGroupWithApplications: typeof createMicrofrontendsGroupWithApplications;
|
|
6624
6624
|
};
|
|
6625
|
-
|
|
6625
|
+
observability: {
|
|
6626
6626
|
getObservabilityConfigurationProjects: typeof getObservabilityConfigurationProjects;
|
|
6627
6627
|
updateObservabilityConfigurationProject: typeof updateObservabilityConfigurationProject;
|
|
6628
6628
|
};
|
|
@@ -6718,21 +6718,17 @@ declare const operationsByTag: {
|
|
|
6718
6718
|
};
|
|
6719
6719
|
security: {
|
|
6720
6720
|
updateAttackChallengeMode: typeof updateAttackChallengeMode;
|
|
6721
|
+
getSecurityFirewallConfig: typeof getSecurityFirewallConfig;
|
|
6721
6722
|
putFirewallConfig: typeof putFirewallConfig;
|
|
6722
6723
|
updateFirewallConfig: typeof updateFirewallConfig;
|
|
6723
6724
|
getFirewallConfig: typeof getFirewallConfig;
|
|
6725
|
+
deleteSecurityFirewallConfigByConfigVersion: typeof deleteSecurityFirewallConfigByConfigVersion;
|
|
6726
|
+
createSecurityFirewallConfigByConfigVersionActivate: typeof createSecurityFirewallConfigByConfigVersionActivate;
|
|
6724
6727
|
getActiveAttackStatus: typeof getActiveAttackStatus;
|
|
6725
6728
|
getBypassIp: typeof getBypassIp;
|
|
6726
6729
|
addBypassIp: typeof addBypassIp;
|
|
6727
6730
|
removeBypassIp: typeof removeBypassIp;
|
|
6728
6731
|
getSecurityFirewallEvents: typeof getSecurityFirewallEvents;
|
|
6729
|
-
};
|
|
6730
|
-
apiSecurity: {
|
|
6731
|
-
getSecurityFirewallConfig: typeof getSecurityFirewallConfig;
|
|
6732
|
-
deleteSecurityFirewallConfigByConfigVersion: typeof deleteSecurityFirewallConfigByConfigVersion;
|
|
6733
|
-
createSecurityFirewallConfigByConfigVersionActivate: typeof createSecurityFirewallConfigByConfigVersionActivate;
|
|
6734
|
-
};
|
|
6735
|
-
firewall: {
|
|
6736
6732
|
generateFirewallRule: typeof generateFirewallRule;
|
|
6737
6733
|
};
|
|
6738
6734
|
teams: {
|
|
@@ -6799,7 +6795,7 @@ declare const tagDictionary: {
|
|
|
6799
6795
|
readonly DELETE: readonly ["deleteAccessGroup", "deleteAccessGroupProject"];
|
|
6800
6796
|
readonly PATCH: readonly ["updateAccessGroupProject"];
|
|
6801
6797
|
};
|
|
6802
|
-
readonly
|
|
6798
|
+
readonly aiGateway: {
|
|
6803
6799
|
readonly POST: readonly ["createAiGatewayRule"];
|
|
6804
6800
|
readonly GET: readonly ["listAiGatewayRules"];
|
|
6805
6801
|
readonly PATCH: readonly ["updateAiGatewayRule"];
|
|
@@ -6885,7 +6881,7 @@ declare const tagDictionary: {
|
|
|
6885
6881
|
readonly edgeCache: {
|
|
6886
6882
|
readonly POST: readonly ["invalidateByTags", "dangerouslyDeleteByTags", "invalidateBySrcImages", "dangerouslyDeleteBySrcImages"];
|
|
6887
6883
|
};
|
|
6888
|
-
readonly
|
|
6884
|
+
readonly globalConfig: {
|
|
6889
6885
|
readonly GET: readonly ["getEdgeConfigs", "getEdgeConfig", "getEdgeConfigItems", "getEdgeConfigSchema", "getEdgeConfigItem", "getEdgeConfigTokens", "getEdgeConfigToken", "getEdgeConfigBackup", "getEdgeConfigBackups"];
|
|
6890
6886
|
readonly POST: readonly ["createEdgeConfig", "patchEdgeConfigSchema", "createEdgeConfigToken", "restoreEdgeConfigBackup"];
|
|
6891
6887
|
readonly PUT: readonly ["updateEdgeConfig"];
|
|
@@ -6910,10 +6906,10 @@ declare const tagDictionary: {
|
|
|
6910
6906
|
};
|
|
6911
6907
|
readonly marketplace: {
|
|
6912
6908
|
readonly PATCH: readonly ["updateInstallation", "updateResource", "updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId"];
|
|
6913
|
-
readonly GET: readonly ["getAccountInfo", "getMember", "getIntegrationResources", "getIntegrationResource", "getInvoice", "
|
|
6909
|
+
readonly GET: readonly ["getAccountInfo", "getMember", "getIntegrationResources", "getIntegrationResource", "getInvoice", "getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"];
|
|
6914
6910
|
readonly POST: readonly ["createEvent", "submitBillingData", "submitInvoice", "finalizeInstallation", "updateInvoice", "submitPrepaymentBalances", "exchangeSsoToken", "createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems"];
|
|
6915
6911
|
readonly DELETE: readonly ["deleteIntegrationResource", "deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId"];
|
|
6916
|
-
readonly PUT: readonly ["importResource", "updateResourceSecrets", "updateResourceSecretsById", "
|
|
6912
|
+
readonly PUT: readonly ["importResource", "updateResourceSecrets", "updateResourceSecretsById", "replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"];
|
|
6917
6913
|
};
|
|
6918
6914
|
readonly authentication: {
|
|
6919
6915
|
readonly POST: readonly ["exchangeSsoToken", "createAuthToken"];
|
|
@@ -6927,7 +6923,7 @@ declare const tagDictionary: {
|
|
|
6927
6923
|
readonly GET: readonly ["getMicrofrontendsGroups", "getMicrofrontendsInGroup", "getMicrofrontendsConfig", "getMicrofrontendsConfigForProject"];
|
|
6928
6924
|
readonly POST: readonly ["createMicrofrontendsGroupWithApplications"];
|
|
6929
6925
|
};
|
|
6930
|
-
readonly
|
|
6926
|
+
readonly observability: {
|
|
6931
6927
|
readonly GET: readonly ["getObservabilityConfigurationProjects"];
|
|
6932
6928
|
readonly PUT: readonly ["updateObservabilityConfigurationProject"];
|
|
6933
6929
|
};
|
|
@@ -6966,19 +6962,11 @@ declare const tagDictionary: {
|
|
|
6966
6962
|
readonly PATCH: readonly ["updateSandbox"];
|
|
6967
6963
|
};
|
|
6968
6964
|
readonly security: {
|
|
6969
|
-
readonly POST: readonly ["updateAttackChallengeMode", "addBypassIp"];
|
|
6965
|
+
readonly POST: readonly ["updateAttackChallengeMode", "createSecurityFirewallConfigByConfigVersionActivate", "addBypassIp", "generateFirewallRule"];
|
|
6966
|
+
readonly GET: readonly ["getSecurityFirewallConfig", "getFirewallConfig", "getActiveAttackStatus", "getBypassIp", "getSecurityFirewallEvents"];
|
|
6970
6967
|
readonly PUT: readonly ["putFirewallConfig"];
|
|
6971
6968
|
readonly PATCH: readonly ["updateFirewallConfig"];
|
|
6972
|
-
readonly
|
|
6973
|
-
readonly DELETE: readonly ["removeBypassIp"];
|
|
6974
|
-
};
|
|
6975
|
-
readonly apiSecurity: {
|
|
6976
|
-
readonly GET: readonly ["getSecurityFirewallConfig"];
|
|
6977
|
-
readonly DELETE: readonly ["deleteSecurityFirewallConfigByConfigVersion"];
|
|
6978
|
-
readonly POST: readonly ["createSecurityFirewallConfigByConfigVersionActivate"];
|
|
6979
|
-
};
|
|
6980
|
-
readonly firewall: {
|
|
6981
|
-
readonly POST: readonly ["generateFirewallRule"];
|
|
6969
|
+
readonly DELETE: readonly ["deleteSecurityFirewallConfigByConfigVersion", "removeBypassIp"];
|
|
6982
6970
|
};
|
|
6983
6971
|
readonly teams: {
|
|
6984
6972
|
readonly GET: readonly ["getTeamMembers", "getTeamAccessRequest", "getTeam", "getTeams"];
|
|
@@ -7013,5 +7001,5 @@ declare const tagDictionary: {
|
|
|
7013
7001
|
};
|
|
7014
7002
|
};
|
|
7015
7003
|
|
|
7016
|
-
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxes, createSandboxesByNameFork, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings,
|
|
7004
|
+
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxes, createSandboxesByNameFork, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importConnectorTokens, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryTags, listSandboxes, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeTeamMember, renewDomain, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, runSessionCommand, searchRepo, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAttackChallengeMode, updateCheck, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, verifyProjectDomain, writeSessionFiles };
|
|
7017
7005
|
//# sourceMappingURL=components.d.mts.map
|