vercel-api-js 1.7.2 → 1.8.1
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 +611 -208
- package/dist/index.d.ts +1065 -231
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +587 -188
- package/dist/schemas.cjs +378 -63
- package/dist/schemas.d.mts +326 -29
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +358 -43
- package/dist/types.cjs +106 -2
- package/dist/types.d.mts +622 -73
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +103 -3
- package/package.json +1 -1
package/dist/effect.d.mts
CHANGED
|
@@ -1829,9 +1829,9 @@ declare function dangerouslyDeleteBySrcImages({ queryParams, config, }?: {
|
|
|
1829
1829
|
};
|
|
1830
1830
|
}): Promise<unknown>;
|
|
1831
1831
|
/**
|
|
1832
|
-
* @summary Get
|
|
1833
|
-
* @description Returns all
|
|
1834
|
-
* @link /v1/
|
|
1832
|
+
* @summary Get Global Configs
|
|
1833
|
+
* @description Returns all Global Configs.
|
|
1834
|
+
* @link /v1/global-config
|
|
1835
1835
|
*/
|
|
1836
1836
|
declare function getEdgeConfigs({ queryParams, config, }?: {
|
|
1837
1837
|
queryParams?: {
|
|
@@ -1843,9 +1843,9 @@ declare function getEdgeConfigs({ queryParams, config, }?: {
|
|
|
1843
1843
|
};
|
|
1844
1844
|
}): Promise<unknown>;
|
|
1845
1845
|
/**
|
|
1846
|
-
* @summary Create
|
|
1847
|
-
* @description Creates
|
|
1848
|
-
* @link /v1/
|
|
1846
|
+
* @summary Create a Global Config
|
|
1847
|
+
* @description Creates a Global Config.
|
|
1848
|
+
* @link /v1/global-config
|
|
1849
1849
|
*/
|
|
1850
1850
|
declare function createEdgeConfig({ queryParams, config, }?: {
|
|
1851
1851
|
queryParams?: {
|
|
@@ -1857,9 +1857,9 @@ declare function createEdgeConfig({ queryParams, config, }?: {
|
|
|
1857
1857
|
};
|
|
1858
1858
|
}): Promise<unknown>;
|
|
1859
1859
|
/**
|
|
1860
|
-
* @summary Get
|
|
1861
|
-
* @description Returns
|
|
1862
|
-
* @link /v1/
|
|
1860
|
+
* @summary Get a Global Config
|
|
1861
|
+
* @description Returns a Global Config.
|
|
1862
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
1863
1863
|
*/
|
|
1864
1864
|
declare function getEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
1865
1865
|
pathParams: {
|
|
@@ -1874,9 +1874,9 @@ declare function getEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
|
1874
1874
|
};
|
|
1875
1875
|
}): Promise<unknown>;
|
|
1876
1876
|
/**
|
|
1877
|
-
* @summary Update
|
|
1878
|
-
* @description Updates
|
|
1879
|
-
* @link /v1/
|
|
1877
|
+
* @summary Update a Global Config
|
|
1878
|
+
* @description Updates a Global Config.
|
|
1879
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
1880
1880
|
*/
|
|
1881
1881
|
declare function updateEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
1882
1882
|
pathParams: {
|
|
@@ -1891,9 +1891,9 @@ declare function updateEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
|
1891
1891
|
};
|
|
1892
1892
|
}): Promise<unknown>;
|
|
1893
1893
|
/**
|
|
1894
|
-
* @summary Delete
|
|
1895
|
-
* @description Delete
|
|
1896
|
-
* @link /v1/
|
|
1894
|
+
* @summary Delete a Global Config
|
|
1895
|
+
* @description Delete a Global Config by id.
|
|
1896
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
1897
1897
|
*/
|
|
1898
1898
|
declare function deleteEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
1899
1899
|
pathParams: {
|
|
@@ -1908,9 +1908,9 @@ declare function deleteEdgeConfig({ pathParams, queryParams, config, }?: {
|
|
|
1908
1908
|
};
|
|
1909
1909
|
}): Promise<unknown>;
|
|
1910
1910
|
/**
|
|
1911
|
-
* @summary Get
|
|
1912
|
-
* @description Returns all items of
|
|
1913
|
-
* @link /v1/
|
|
1911
|
+
* @summary Get Global Config items
|
|
1912
|
+
* @description Returns all items of a Global Config.
|
|
1913
|
+
* @link /v1/global-config/{edgeConfigId}/items
|
|
1914
1914
|
*/
|
|
1915
1915
|
declare function getEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
1916
1916
|
pathParams: {
|
|
@@ -1925,9 +1925,9 @@ declare function getEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
|
1925
1925
|
};
|
|
1926
1926
|
}): Promise<unknown>;
|
|
1927
1927
|
/**
|
|
1928
|
-
* @summary Update
|
|
1929
|
-
* @description Update multiple
|
|
1930
|
-
* @link /v1/
|
|
1928
|
+
* @summary Update Global Config items in batch
|
|
1929
|
+
* @description Update multiple Global Config Items in batch.
|
|
1930
|
+
* @link /v1/global-config/{edgeConfigId}/items
|
|
1931
1931
|
*/
|
|
1932
1932
|
declare function patchEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
1933
1933
|
pathParams: {
|
|
@@ -1942,9 +1942,9 @@ declare function patchEdgeConfigItems({ pathParams, queryParams, config, }?: {
|
|
|
1942
1942
|
};
|
|
1943
1943
|
}): Promise<unknown>;
|
|
1944
1944
|
/**
|
|
1945
|
-
* @summary Get
|
|
1946
|
-
* @description Returns the schema of
|
|
1947
|
-
* @link /v1/
|
|
1945
|
+
* @summary Get Global Config schema
|
|
1946
|
+
* @description Returns the schema of a Global Config.
|
|
1947
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
1948
1948
|
*/
|
|
1949
1949
|
declare function getEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
1950
1950
|
pathParams: {
|
|
@@ -1959,9 +1959,9 @@ declare function getEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
|
1959
1959
|
};
|
|
1960
1960
|
}): Promise<unknown>;
|
|
1961
1961
|
/**
|
|
1962
|
-
* @summary Update
|
|
1963
|
-
* @description Update
|
|
1964
|
-
* @link /v1/
|
|
1962
|
+
* @summary Update Global Config schema
|
|
1963
|
+
* @description Update a Global Config's schema.
|
|
1964
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
1965
1965
|
*/
|
|
1966
1966
|
declare function patchEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
1967
1967
|
pathParams: {
|
|
@@ -1977,9 +1977,9 @@ declare function patchEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
|
1977
1977
|
};
|
|
1978
1978
|
}): Promise<unknown>;
|
|
1979
1979
|
/**
|
|
1980
|
-
* @summary Delete
|
|
1981
|
-
* @description Deletes the schema of existing
|
|
1982
|
-
* @link /v1/
|
|
1980
|
+
* @summary Delete a Global Config's schema
|
|
1981
|
+
* @description Deletes the schema of existing Global Config.
|
|
1982
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
1983
1983
|
*/
|
|
1984
1984
|
declare function deleteEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
1985
1985
|
pathParams: {
|
|
@@ -1994,9 +1994,9 @@ declare function deleteEdgeConfigSchema({ pathParams, queryParams, config, }?: {
|
|
|
1994
1994
|
};
|
|
1995
1995
|
}): Promise<unknown>;
|
|
1996
1996
|
/**
|
|
1997
|
-
* @summary Get
|
|
1998
|
-
* @description Returns a specific
|
|
1999
|
-
* @link /v1/
|
|
1997
|
+
* @summary Get a Global Config item
|
|
1998
|
+
* @description Returns a specific Global Config Item.
|
|
1999
|
+
* @link /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}
|
|
2000
2000
|
*/
|
|
2001
2001
|
declare function getEdgeConfigItem({ pathParams, queryParams, config, }?: {
|
|
2002
2002
|
pathParams: {
|
|
@@ -2012,9 +2012,9 @@ declare function getEdgeConfigItem({ pathParams, queryParams, config, }?: {
|
|
|
2012
2012
|
};
|
|
2013
2013
|
}): Promise<unknown>;
|
|
2014
2014
|
/**
|
|
2015
|
-
* @summary Get all tokens of
|
|
2016
|
-
* @description Returns all tokens of
|
|
2017
|
-
* @link /v1/
|
|
2015
|
+
* @summary Get all tokens of a Global Config
|
|
2016
|
+
* @description Returns all tokens of a Global Config.
|
|
2017
|
+
* @link /v1/global-config/{edgeConfigId}/tokens
|
|
2018
2018
|
*/
|
|
2019
2019
|
declare function getEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
2020
2020
|
pathParams: {
|
|
@@ -2029,9 +2029,9 @@ declare function getEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
|
2029
2029
|
};
|
|
2030
2030
|
}): Promise<unknown>;
|
|
2031
2031
|
/**
|
|
2032
|
-
* @summary Delete one or more
|
|
2033
|
-
* @description Deletes one or more tokens of an existing
|
|
2034
|
-
* @link /v1/
|
|
2032
|
+
* @summary Delete one or more Global Config tokens
|
|
2033
|
+
* @description Deletes one or more tokens of an existing Global Config.
|
|
2034
|
+
* @link /v1/global-config/{edgeConfigId}/tokens
|
|
2035
2035
|
*/
|
|
2036
2036
|
declare function deleteEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
2037
2037
|
pathParams: {
|
|
@@ -2046,9 +2046,9 @@ declare function deleteEdgeConfigTokens({ pathParams, queryParams, config, }?: {
|
|
|
2046
2046
|
};
|
|
2047
2047
|
}): Promise<unknown>;
|
|
2048
2048
|
/**
|
|
2049
|
-
* @summary Get
|
|
2050
|
-
* @description Return meta data about
|
|
2051
|
-
* @link /v1/
|
|
2049
|
+
* @summary Get Global Config token meta data
|
|
2050
|
+
* @description Return meta data about a Global Config token.
|
|
2051
|
+
* @link /v1/global-config/{edgeConfigId}/token/{token}
|
|
2052
2052
|
*/
|
|
2053
2053
|
declare function getEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
2054
2054
|
pathParams: {
|
|
@@ -2064,9 +2064,9 @@ declare function getEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
|
2064
2064
|
};
|
|
2065
2065
|
}): Promise<unknown>;
|
|
2066
2066
|
/**
|
|
2067
|
-
* @summary Create
|
|
2068
|
-
* @description Adds a token to an existing
|
|
2069
|
-
* @link /v1/
|
|
2067
|
+
* @summary Create a Global Config token
|
|
2068
|
+
* @description Adds a token to an existing Global Config.
|
|
2069
|
+
* @link /v1/global-config/{edgeConfigId}/token
|
|
2070
2070
|
*/
|
|
2071
2071
|
declare function createEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
2072
2072
|
pathParams: {
|
|
@@ -2081,9 +2081,9 @@ declare function createEdgeConfigToken({ pathParams, queryParams, config, }?: {
|
|
|
2081
2081
|
};
|
|
2082
2082
|
}): Promise<unknown>;
|
|
2083
2083
|
/**
|
|
2084
|
-
* @summary Get
|
|
2085
|
-
* @description Retrieves a specific version of
|
|
2086
|
-
* @link /v1/
|
|
2084
|
+
* @summary Get Global Config backup
|
|
2085
|
+
* @description Retrieves a specific version of a Global Config from backup storage.
|
|
2086
|
+
* @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}
|
|
2087
2087
|
*/
|
|
2088
2088
|
declare function getEdgeConfigBackup({ pathParams, queryParams, config, }?: {
|
|
2089
2089
|
pathParams: {
|
|
@@ -2099,9 +2099,9 @@ declare function getEdgeConfigBackup({ pathParams, queryParams, config, }?: {
|
|
|
2099
2099
|
};
|
|
2100
2100
|
}): Promise<unknown>;
|
|
2101
2101
|
/**
|
|
2102
|
-
* @summary Restore
|
|
2103
|
-
* @description Restores
|
|
2104
|
-
* @link /v1/
|
|
2102
|
+
* @summary Restore Global Config backup
|
|
2103
|
+
* @description Restores a Global Config backup.
|
|
2104
|
+
* @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore
|
|
2105
2105
|
*/
|
|
2106
2106
|
declare function restoreEdgeConfigBackup({ pathParams, queryParams, config, }?: {
|
|
2107
2107
|
pathParams: {
|
|
@@ -2117,9 +2117,9 @@ declare function restoreEdgeConfigBackup({ pathParams, queryParams, config, }?:
|
|
|
2117
2117
|
};
|
|
2118
2118
|
}): Promise<unknown>;
|
|
2119
2119
|
/**
|
|
2120
|
-
* @summary Get
|
|
2121
|
-
* @description Returns backups of
|
|
2122
|
-
* @link /v1/
|
|
2120
|
+
* @summary Get Global Config backups
|
|
2121
|
+
* @description Returns backups of a Global Config.
|
|
2122
|
+
* @link /v1/global-config/{edgeConfigId}/backups
|
|
2123
2123
|
*/
|
|
2124
2124
|
declare function getEdgeConfigBackups({ pathParams, queryParams, config, }?: {
|
|
2125
2125
|
pathParams: {
|
|
@@ -3177,11 +3177,11 @@ declare function deleteInstallationsByIntegrationConfigurationIdResourcesByResou
|
|
|
3177
3177
|
};
|
|
3178
3178
|
}): Promise<unknown>;
|
|
3179
3179
|
/**
|
|
3180
|
-
* @summary Get the data of a user-provided
|
|
3181
|
-
* @description When the user enabled
|
|
3182
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3180
|
+
* @summary Get the data of a user-provided Global Config
|
|
3181
|
+
* @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.
|
|
3182
|
+
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
|
|
3183
3183
|
*/
|
|
3184
|
-
declare function
|
|
3184
|
+
declare function getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config, }?: {
|
|
3185
3185
|
pathParams: {
|
|
3186
3186
|
integrationConfigurationId: string;
|
|
3187
3187
|
resourceId: string;
|
|
@@ -3191,11 +3191,11 @@ declare function getInstallationsByIntegrationConfigurationIdResourcesByResource
|
|
|
3191
3191
|
};
|
|
3192
3192
|
}): Promise<unknown>;
|
|
3193
3193
|
/**
|
|
3194
|
-
* @summary Push data into a user-provided
|
|
3195
|
-
* @description When the user enabled
|
|
3196
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3194
|
+
* @summary Push data into a user-provided Global Config
|
|
3195
|
+
* @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.
|
|
3196
|
+
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
|
|
3197
3197
|
*/
|
|
3198
|
-
declare function
|
|
3198
|
+
declare function replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config, }?: {
|
|
3199
3199
|
pathParams: {
|
|
3200
3200
|
integrationConfigurationId: string;
|
|
3201
3201
|
resourceId: string;
|
|
@@ -6018,7 +6018,7 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6018
6018
|
updateAccessGroupProject: typeof updateAccessGroupProject;
|
|
6019
6019
|
deleteAccessGroupProject: typeof deleteAccessGroupProject;
|
|
6020
6020
|
};
|
|
6021
|
-
|
|
6021
|
+
aiGateway: {
|
|
6022
6022
|
createAiGatewayRule: typeof createAiGatewayRule;
|
|
6023
6023
|
listAiGatewayRules: typeof listAiGatewayRules;
|
|
6024
6024
|
updateAiGatewayRule: typeof updateAiGatewayRule;
|
|
@@ -6163,7 +6163,7 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6163
6163
|
invalidateBySrcImages: typeof invalidateBySrcImages;
|
|
6164
6164
|
dangerouslyDeleteBySrcImages: typeof dangerouslyDeleteBySrcImages;
|
|
6165
6165
|
};
|
|
6166
|
-
|
|
6166
|
+
globalConfig: {
|
|
6167
6167
|
getEdgeConfigs: typeof getEdgeConfigs;
|
|
6168
6168
|
createEdgeConfig: typeof createEdgeConfig;
|
|
6169
6169
|
getEdgeConfig: typeof getEdgeConfig;
|
|
@@ -6247,8 +6247,8 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6247
6247
|
createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems: typeof createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems;
|
|
6248
6248
|
updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId: typeof updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6249
6249
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId: typeof deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6250
|
-
|
|
6251
|
-
|
|
6250
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig: typeof getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6251
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig: typeof replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6252
6252
|
};
|
|
6253
6253
|
authentication: {
|
|
6254
6254
|
exchangeSsoToken: typeof exchangeSsoToken;
|
|
@@ -6267,7 +6267,7 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6267
6267
|
getMicrofrontendsConfigForProject: typeof getMicrofrontendsConfigForProject;
|
|
6268
6268
|
createMicrofrontendsGroupWithApplications: typeof createMicrofrontendsGroupWithApplications;
|
|
6269
6269
|
};
|
|
6270
|
-
|
|
6270
|
+
observability: {
|
|
6271
6271
|
getObservabilityConfigurationProjects: typeof getObservabilityConfigurationProjects;
|
|
6272
6272
|
updateObservabilityConfigurationProject: typeof updateObservabilityConfigurationProject;
|
|
6273
6273
|
};
|
|
@@ -6363,21 +6363,17 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6363
6363
|
};
|
|
6364
6364
|
security: {
|
|
6365
6365
|
updateAttackChallengeMode: typeof updateAttackChallengeMode;
|
|
6366
|
+
getSecurityFirewallConfig: typeof getSecurityFirewallConfig;
|
|
6366
6367
|
putFirewallConfig: typeof putFirewallConfig;
|
|
6367
6368
|
updateFirewallConfig: typeof updateFirewallConfig;
|
|
6368
6369
|
getFirewallConfig: typeof getFirewallConfig;
|
|
6370
|
+
deleteSecurityFirewallConfigByConfigVersion: typeof deleteSecurityFirewallConfigByConfigVersion;
|
|
6371
|
+
createSecurityFirewallConfigByConfigVersionActivate: typeof createSecurityFirewallConfigByConfigVersionActivate;
|
|
6369
6372
|
getActiveAttackStatus: typeof getActiveAttackStatus;
|
|
6370
6373
|
getBypassIp: typeof getBypassIp;
|
|
6371
6374
|
addBypassIp: typeof addBypassIp;
|
|
6372
6375
|
removeBypassIp: typeof removeBypassIp;
|
|
6373
6376
|
getSecurityFirewallEvents: typeof getSecurityFirewallEvents;
|
|
6374
|
-
};
|
|
6375
|
-
apiSecurity: {
|
|
6376
|
-
getSecurityFirewallConfig: typeof getSecurityFirewallConfig;
|
|
6377
|
-
deleteSecurityFirewallConfigByConfigVersion: typeof deleteSecurityFirewallConfigByConfigVersion;
|
|
6378
|
-
createSecurityFirewallConfigByConfigVersionActivate: typeof createSecurityFirewallConfigByConfigVersionActivate;
|
|
6379
|
-
};
|
|
6380
|
-
firewall: {
|
|
6381
6377
|
generateFirewallRule: typeof generateFirewallRule;
|
|
6382
6378
|
};
|
|
6383
6379
|
teams: {
|
|
@@ -6545,24 +6541,24 @@ declare const effectByPath: _sferadev_openapi_utils_effect.EffectByPath<{
|
|
|
6545
6541
|
"POST /v1/edge-cache/dangerously-delete-by-tags": typeof dangerouslyDeleteByTags;
|
|
6546
6542
|
"POST /v1/edge-cache/invalidate-by-src-images": typeof invalidateBySrcImages;
|
|
6547
6543
|
"POST /v1/edge-cache/dangerously-delete-by-src-images": typeof dangerouslyDeleteBySrcImages;
|
|
6548
|
-
"GET /v1/
|
|
6549
|
-
"POST /v1/
|
|
6550
|
-
"GET /v1/
|
|
6551
|
-
"PUT /v1/
|
|
6552
|
-
"DELETE /v1/
|
|
6553
|
-
"GET /v1/
|
|
6554
|
-
"PATCH /v1/
|
|
6555
|
-
"GET /v1/
|
|
6556
|
-
"POST /v1/
|
|
6557
|
-
"DELETE /v1/
|
|
6558
|
-
"GET /v1/
|
|
6559
|
-
"GET /v1/
|
|
6560
|
-
"DELETE /v1/
|
|
6561
|
-
"GET /v1/
|
|
6562
|
-
"POST /v1/
|
|
6563
|
-
"GET /v1/
|
|
6564
|
-
"POST /v1/
|
|
6565
|
-
"GET /v1/
|
|
6544
|
+
"GET /v1/global-config": typeof getEdgeConfigs;
|
|
6545
|
+
"POST /v1/global-config": typeof createEdgeConfig;
|
|
6546
|
+
"GET /v1/global-config/{edgeConfigId}": typeof getEdgeConfig;
|
|
6547
|
+
"PUT /v1/global-config/{edgeConfigId}": typeof updateEdgeConfig;
|
|
6548
|
+
"DELETE /v1/global-config/{edgeConfigId}": typeof deleteEdgeConfig;
|
|
6549
|
+
"GET /v1/global-config/{edgeConfigId}/items": typeof getEdgeConfigItems;
|
|
6550
|
+
"PATCH /v1/global-config/{edgeConfigId}/items": typeof patchEdgeConfigItems;
|
|
6551
|
+
"GET /v1/global-config/{edgeConfigId}/schema": typeof getEdgeConfigSchema;
|
|
6552
|
+
"POST /v1/global-config/{edgeConfigId}/schema": typeof patchEdgeConfigSchema;
|
|
6553
|
+
"DELETE /v1/global-config/{edgeConfigId}/schema": typeof deleteEdgeConfigSchema;
|
|
6554
|
+
"GET /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}": typeof getEdgeConfigItem;
|
|
6555
|
+
"GET /v1/global-config/{edgeConfigId}/tokens": typeof getEdgeConfigTokens;
|
|
6556
|
+
"DELETE /v1/global-config/{edgeConfigId}/tokens": typeof deleteEdgeConfigTokens;
|
|
6557
|
+
"GET /v1/global-config/{edgeConfigId}/token/{token}": typeof getEdgeConfigToken;
|
|
6558
|
+
"POST /v1/global-config/{edgeConfigId}/token": typeof createEdgeConfigToken;
|
|
6559
|
+
"GET /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}": typeof getEdgeConfigBackup;
|
|
6560
|
+
"POST /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore": typeof restoreEdgeConfigBackup;
|
|
6561
|
+
"GET /v1/global-config/{edgeConfigId}/backups": typeof getEdgeConfigBackups;
|
|
6566
6562
|
"POST /v1/env": typeof createSharedEnvVariable;
|
|
6567
6563
|
"GET /v1/env": typeof listSharedEnvVariable;
|
|
6568
6564
|
"PATCH /v1/env": typeof updateSharedEnvVariable;
|
|
@@ -6626,8 +6622,8 @@ declare const effectByPath: _sferadev_openapi_utils_effect.EffectByPath<{
|
|
|
6626
6622
|
"POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items": typeof createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems;
|
|
6627
6623
|
"PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": typeof updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6628
6624
|
"DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": typeof deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
6629
|
-
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
6630
|
-
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
6625
|
+
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": typeof getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6626
|
+
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": typeof replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig;
|
|
6631
6627
|
"GET /v1/microfrontends/groups": typeof getMicrofrontendsGroups;
|
|
6632
6628
|
"GET /v1/microfrontends/groups/{groupId}/projects": typeof getMicrofrontendsInGroup;
|
|
6633
6629
|
"GET /v1/microfrontends/{deploymentId}/config": typeof getMicrofrontendsConfig;
|