vercel-api-js 0.23.1 → 0.23.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +15 -0
- package/dist/index.cjs +1 -3
- package/dist/index.d.cts +252 -97
- package/dist/index.d.mts +252 -97
- package/dist/index.d.ts +252 -97
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -318,7 +318,6 @@ const gitNamespaces = (variables, signal) => fetch$1({
|
|
|
318
318
|
signal
|
|
319
319
|
});
|
|
320
320
|
const searchRepo = (variables, signal) => fetch$1({ url: "/v1/integrations/search-repo", method: "get", ...variables, signal });
|
|
321
|
-
const getV1ExperimentationItems = (variables, signal) => fetch$1({ url: "/v1/experimentation/items", method: "get", ...variables, signal });
|
|
322
321
|
const postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems = (variables, signal) => fetch$1({
|
|
323
322
|
url: "/v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items",
|
|
324
323
|
method: "post",
|
|
@@ -433,7 +432,7 @@ const getBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall
|
|
|
433
432
|
const addBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "post", ...variables, signal });
|
|
434
433
|
const removeBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "delete", ...variables, signal });
|
|
435
434
|
const getTeamMembers = (variables, signal) => fetch$1({
|
|
436
|
-
url: "/
|
|
435
|
+
url: "/v3/teams/{teamId}/members",
|
|
437
436
|
method: "get",
|
|
438
437
|
...variables,
|
|
439
438
|
signal
|
|
@@ -752,7 +751,6 @@ const operationsByTag = {
|
|
|
752
751
|
putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig
|
|
753
752
|
},
|
|
754
753
|
authentication: { exchangeSsoToken, listAuthTokens, createAuthToken, getAuthToken, deleteAuthToken },
|
|
755
|
-
apiExperimentation: { getV1ExperimentationItems },
|
|
756
754
|
projectMembers: { getProjectMembers, addProjectMember, removeProjectMember },
|
|
757
755
|
environment: {
|
|
758
756
|
createCustomEnvironment,
|