@vercel/sdk 1.6.10 → 1.6.11

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.
Files changed (99) hide show
  1. package/README.md +31 -17
  2. package/bin/mcp-server.js +1510 -1189
  3. package/bin/mcp-server.js.map +17 -17
  4. package/docs/sdks/aliases/README.md +84 -0
  5. package/docs/sdks/vercel/README.md +0 -77
  6. package/esm/__tests__/aliases.test.js +17 -0
  7. package/esm/__tests__/aliases.test.js.map +1 -1
  8. package/esm/__tests__/projects.test.js +15 -13
  9. package/esm/__tests__/projects.test.js.map +1 -1
  10. package/esm/__tests__/vercel.test.js +3 -16
  11. package/esm/__tests__/vercel.test.js.map +1 -1
  12. package/esm/funcs/{patchAliasesIdProtectionBypass.d.ts → aliasesPatchUrlProtectionBypass.d.ts} +7 -4
  13. package/esm/funcs/aliasesPatchUrlProtectionBypass.d.ts.map +1 -0
  14. package/esm/funcs/{patchAliasesIdProtectionBypass.js → aliasesPatchUrlProtectionBypass.js} +22 -9
  15. package/esm/funcs/aliasesPatchUrlProtectionBypass.js.map +1 -0
  16. package/esm/lib/config.d.ts +2 -2
  17. package/esm/lib/config.js +2 -2
  18. package/esm/mcp-server/mcp-server.js +1 -1
  19. package/esm/mcp-server/server.js +3 -3
  20. package/esm/mcp-server/server.js.map +1 -1
  21. package/esm/mcp-server/tools/aliasesPatchUrlProtectionBypass.d.ts +7 -0
  22. package/esm/mcp-server/tools/aliasesPatchUrlProtectionBypass.d.ts.map +1 -0
  23. package/esm/mcp-server/tools/aliasesPatchUrlProtectionBypass.js +28 -0
  24. package/esm/mcp-server/tools/aliasesPatchUrlProtectionBypass.js.map +1 -0
  25. package/esm/models/createprojectop.d.ts +206 -28
  26. package/esm/models/createprojectop.d.ts.map +1 -1
  27. package/esm/models/createprojectop.js +195 -31
  28. package/esm/models/createprojectop.js.map +1 -1
  29. package/esm/models/createrecordop.d.ts +43 -43
  30. package/esm/models/createrecordop.d.ts.map +1 -1
  31. package/esm/models/createrecordop.js +51 -51
  32. package/esm/models/createrecordop.js.map +1 -1
  33. package/esm/models/getaliasop.d.ts +62 -62
  34. package/esm/models/getaliasop.d.ts.map +1 -1
  35. package/esm/models/getaliasop.js +84 -83
  36. package/esm/models/getaliasop.js.map +1 -1
  37. package/esm/models/getprojectsop.d.ts +87 -13
  38. package/esm/models/getprojectsop.d.ts.map +1 -1
  39. package/esm/models/getprojectsop.js +99 -16
  40. package/esm/models/getprojectsop.js.map +1 -1
  41. package/esm/models/listdeploymentaliasesop.d.ts +32 -32
  42. package/esm/models/listdeploymentaliasesop.d.ts.map +1 -1
  43. package/esm/models/listdeploymentaliasesop.js +50 -50
  44. package/esm/models/listdeploymentaliasesop.js.map +1 -1
  45. package/esm/models/{patchaliasesidprotectionbypassop.d.ts → patchurlprotectionbypassop.d.ts} +86 -76
  46. package/esm/models/patchurlprotectionbypassop.d.ts.map +1 -0
  47. package/esm/models/{patchaliasesidprotectionbypassop.js → patchurlprotectionbypassop.js} +95 -91
  48. package/esm/models/patchurlprotectionbypassop.js.map +1 -0
  49. package/esm/models/updateprojectdatacacheop.d.ts +103 -29
  50. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  51. package/esm/models/updateprojectdatacacheop.js +126 -42
  52. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  53. package/esm/models/updateprojectop.d.ts +238 -60
  54. package/esm/models/updateprojectop.d.ts.map +1 -1
  55. package/esm/models/updateprojectop.js +248 -80
  56. package/esm/models/updateprojectop.js.map +1 -1
  57. package/esm/models/updateprojectprotectionbypassop.d.ts +88 -14
  58. package/esm/models/updateprojectprotectionbypassop.d.ts.map +1 -1
  59. package/esm/models/updateprojectprotectionbypassop.js +100 -17
  60. package/esm/models/updateprojectprotectionbypassop.js.map +1 -1
  61. package/esm/sdk/aliases.d.ts +10 -0
  62. package/esm/sdk/aliases.d.ts.map +1 -1
  63. package/esm/sdk/aliases.js +10 -0
  64. package/esm/sdk/aliases.js.map +1 -1
  65. package/esm/sdk/sdk.d.ts +1 -8
  66. package/esm/sdk/sdk.d.ts.map +1 -1
  67. package/esm/sdk/sdk.js +0 -8
  68. package/esm/sdk/sdk.js.map +1 -1
  69. package/jsr.json +1 -1
  70. package/package.json +1 -1
  71. package/src/__tests__/aliases.test.ts +20 -0
  72. package/src/__tests__/projects.test.ts +15 -13
  73. package/src/__tests__/vercel.test.ts +4 -19
  74. package/src/funcs/{patchAliasesIdProtectionBypass.ts → aliasesPatchUrlProtectionBypass.ts} +27 -13
  75. package/src/lib/config.ts +2 -2
  76. package/src/mcp-server/mcp-server.ts +1 -1
  77. package/src/mcp-server/server.ts +3 -3
  78. package/src/mcp-server/tools/aliasesPatchUrlProtectionBypass.ts +38 -0
  79. package/src/models/createprojectop.ts +401 -55
  80. package/src/models/createrecordop.ts +84 -96
  81. package/src/models/getaliasop.ts +130 -126
  82. package/src/models/getprojectsop.ts +205 -29
  83. package/src/models/listdeploymentaliasesop.ts +78 -78
  84. package/src/models/{patchaliasesidprotectionbypassop.ts → patchurlprotectionbypassop.ts} +191 -156
  85. package/src/models/updateprojectdatacacheop.ts +247 -65
  86. package/src/models/updateprojectop.ts +486 -125
  87. package/src/models/updateprojectprotectionbypassop.ts +239 -31
  88. package/src/sdk/aliases.ts +19 -0
  89. package/src/sdk/sdk.ts +1 -18
  90. package/vercel-spec.json +417 -112
  91. package/esm/funcs/patchAliasesIdProtectionBypass.d.ts.map +0 -1
  92. package/esm/funcs/patchAliasesIdProtectionBypass.js.map +0 -1
  93. package/esm/mcp-server/tools/patchAliasesIdProtectionBypass.d.ts +0 -7
  94. package/esm/mcp-server/tools/patchAliasesIdProtectionBypass.d.ts.map +0 -1
  95. package/esm/mcp-server/tools/patchAliasesIdProtectionBypass.js +0 -26
  96. package/esm/mcp-server/tools/patchAliasesIdProtectionBypass.js.map +0 -1
  97. package/esm/models/patchaliasesidprotectionbypassop.d.ts.map +0 -1
  98. package/esm/models/patchaliasesidprotectionbypassop.js.map +0 -1
  99. package/src/mcp-server/tools/patchAliasesIdProtectionBypass.ts +0 -37
package/vercel-spec.json CHANGED
@@ -7496,26 +7496,56 @@
7496
7496
  },
7497
7497
  "protectionBypass": {
7498
7498
  "additionalProperties": {
7499
- "properties": {
7500
- "createdAt": {
7501
- "type": "number"
7502
- },
7503
- "createdBy": {
7504
- "type": "string"
7499
+ "oneOf": [
7500
+ {
7501
+ "properties": {
7502
+ "createdAt": {
7503
+ "type": "number"
7504
+ },
7505
+ "createdBy": {
7506
+ "type": "string"
7507
+ },
7508
+ "scope": {
7509
+ "type": "string",
7510
+ "enum": [
7511
+ "integration-automation-bypass"
7512
+ ]
7513
+ },
7514
+ "integrationId": {
7515
+ "type": "string"
7516
+ }
7517
+ },
7518
+ "required": [
7519
+ "createdAt",
7520
+ "createdBy",
7521
+ "scope",
7522
+ "integrationId"
7523
+ ],
7524
+ "type": "object"
7505
7525
  },
7506
- "scope": {
7507
- "type": "string",
7508
- "enum": [
7509
- "automation-bypass"
7510
- ]
7526
+ {
7527
+ "properties": {
7528
+ "createdAt": {
7529
+ "type": "number"
7530
+ },
7531
+ "createdBy": {
7532
+ "type": "string"
7533
+ },
7534
+ "scope": {
7535
+ "type": "string",
7536
+ "enum": [
7537
+ "automation-bypass"
7538
+ ]
7539
+ }
7540
+ },
7541
+ "required": [
7542
+ "createdAt",
7543
+ "createdBy",
7544
+ "scope"
7545
+ ],
7546
+ "type": "object"
7511
7547
  }
7512
- },
7513
- "required": [
7514
- "createdAt",
7515
- "createdBy",
7516
- "scope"
7517
- ],
7518
- "type": "object"
7548
+ ]
7519
7549
  },
7520
7550
  "type": "object"
7521
7551
  },
@@ -30009,26 +30039,56 @@
30009
30039
  },
30010
30040
  "protectionBypass": {
30011
30041
  "additionalProperties": {
30012
- "properties": {
30013
- "createdAt": {
30014
- "type": "number"
30015
- },
30016
- "createdBy": {
30017
- "type": "string"
30042
+ "oneOf": [
30043
+ {
30044
+ "properties": {
30045
+ "createdAt": {
30046
+ "type": "number"
30047
+ },
30048
+ "createdBy": {
30049
+ "type": "string"
30050
+ },
30051
+ "scope": {
30052
+ "type": "string",
30053
+ "enum": [
30054
+ "integration-automation-bypass"
30055
+ ]
30056
+ },
30057
+ "integrationId": {
30058
+ "type": "string"
30059
+ }
30060
+ },
30061
+ "required": [
30062
+ "createdAt",
30063
+ "createdBy",
30064
+ "scope",
30065
+ "integrationId"
30066
+ ],
30067
+ "type": "object"
30018
30068
  },
30019
- "scope": {
30020
- "type": "string",
30021
- "enum": [
30022
- "automation-bypass"
30023
- ]
30069
+ {
30070
+ "properties": {
30071
+ "createdAt": {
30072
+ "type": "number"
30073
+ },
30074
+ "createdBy": {
30075
+ "type": "string"
30076
+ },
30077
+ "scope": {
30078
+ "type": "string",
30079
+ "enum": [
30080
+ "automation-bypass"
30081
+ ]
30082
+ }
30083
+ },
30084
+ "required": [
30085
+ "createdAt",
30086
+ "createdBy",
30087
+ "scope"
30088
+ ],
30089
+ "type": "object"
30024
30090
  }
30025
- },
30026
- "required": [
30027
- "createdAt",
30028
- "createdBy",
30029
- "scope"
30030
- ],
30031
- "type": "object"
30091
+ ]
30032
30092
  },
30033
30093
  "type": "object"
30034
30094
  },
@@ -34041,26 +34101,56 @@
34041
34101
  },
34042
34102
  "protectionBypass": {
34043
34103
  "additionalProperties": {
34044
- "properties": {
34045
- "createdAt": {
34046
- "type": "number"
34047
- },
34048
- "createdBy": {
34049
- "type": "string"
34104
+ "oneOf": [
34105
+ {
34106
+ "properties": {
34107
+ "createdAt": {
34108
+ "type": "number"
34109
+ },
34110
+ "createdBy": {
34111
+ "type": "string"
34112
+ },
34113
+ "scope": {
34114
+ "type": "string",
34115
+ "enum": [
34116
+ "integration-automation-bypass"
34117
+ ]
34118
+ },
34119
+ "integrationId": {
34120
+ "type": "string"
34121
+ }
34122
+ },
34123
+ "required": [
34124
+ "createdAt",
34125
+ "createdBy",
34126
+ "scope",
34127
+ "integrationId"
34128
+ ],
34129
+ "type": "object"
34050
34130
  },
34051
- "scope": {
34052
- "type": "string",
34053
- "enum": [
34054
- "automation-bypass"
34055
- ]
34131
+ {
34132
+ "properties": {
34133
+ "createdAt": {
34134
+ "type": "number"
34135
+ },
34136
+ "createdBy": {
34137
+ "type": "string"
34138
+ },
34139
+ "scope": {
34140
+ "type": "string",
34141
+ "enum": [
34142
+ "automation-bypass"
34143
+ ]
34144
+ }
34145
+ },
34146
+ "required": [
34147
+ "createdAt",
34148
+ "createdBy",
34149
+ "scope"
34150
+ ],
34151
+ "type": "object"
34056
34152
  }
34057
- },
34058
- "required": [
34059
- "createdAt",
34060
- "createdBy",
34061
- "scope"
34062
- ],
34063
- "type": "object"
34153
+ ]
34064
34154
  },
34065
34155
  "type": "object"
34066
34156
  },
@@ -34879,6 +34969,55 @@
34879
34969
  "enableAffectedProjectsDeployments": {
34880
34970
  "description": "Opt-in to skip deployments when there are no changes to the root directory and its dependencies",
34881
34971
  "type": "boolean"
34972
+ },
34973
+ "resourceConfig": {
34974
+ "type": "object",
34975
+ "description": "Specifies resource override configuration for the project",
34976
+ "properties": {
34977
+ "fluid": {
34978
+ "type": "boolean"
34979
+ },
34980
+ "functionDefaultRegions": {
34981
+ "description": "The regions to deploy Vercel Functions to for this project",
34982
+ "type": "array",
34983
+ "minItems": 1,
34984
+ "uniqueItems": true,
34985
+ "items": {
34986
+ "type": "string",
34987
+ "maxLength": 4
34988
+ }
34989
+ },
34990
+ "functionDefaultTimeout": {
34991
+ "type": "number",
34992
+ "maximum": 900,
34993
+ "minimum": 1
34994
+ },
34995
+ "functionDefaultMemoryType": {
34996
+ "enum": [
34997
+ "standard_legacy",
34998
+ "standard",
34999
+ "performance"
35000
+ ]
35001
+ },
35002
+ "functionZeroConfigFailover": {
35003
+ "description": "Specifies whether Zero Config Failover is enabled for this project.",
35004
+ "oneOf": [
35005
+ {
35006
+ "type": "boolean"
35007
+ }
35008
+ ]
35009
+ },
35010
+ "elasticConcurrencyEnabled": {
35011
+ "type": "boolean"
35012
+ },
35013
+ "buildMachineType": {
35014
+ "enum": [
35015
+ "enhanced",
35016
+ "ultra"
35017
+ ]
35018
+ }
35019
+ },
35020
+ "additionalProperties": false
34882
35021
  }
34883
35022
  },
34884
35023
  "required": [
@@ -38210,26 +38349,56 @@
38210
38349
  },
38211
38350
  "protectionBypass": {
38212
38351
  "additionalProperties": {
38213
- "properties": {
38214
- "createdAt": {
38215
- "type": "number"
38216
- },
38217
- "createdBy": {
38218
- "type": "string"
38352
+ "oneOf": [
38353
+ {
38354
+ "properties": {
38355
+ "createdAt": {
38356
+ "type": "number"
38357
+ },
38358
+ "createdBy": {
38359
+ "type": "string"
38360
+ },
38361
+ "scope": {
38362
+ "type": "string",
38363
+ "enum": [
38364
+ "integration-automation-bypass"
38365
+ ]
38366
+ },
38367
+ "integrationId": {
38368
+ "type": "string"
38369
+ }
38370
+ },
38371
+ "required": [
38372
+ "createdAt",
38373
+ "createdBy",
38374
+ "scope",
38375
+ "integrationId"
38376
+ ],
38377
+ "type": "object"
38219
38378
  },
38220
- "scope": {
38221
- "type": "string",
38222
- "enum": [
38223
- "automation-bypass"
38224
- ]
38379
+ {
38380
+ "properties": {
38381
+ "createdAt": {
38382
+ "type": "number"
38383
+ },
38384
+ "createdBy": {
38385
+ "type": "string"
38386
+ },
38387
+ "scope": {
38388
+ "type": "string",
38389
+ "enum": [
38390
+ "automation-bypass"
38391
+ ]
38392
+ }
38393
+ },
38394
+ "required": [
38395
+ "createdAt",
38396
+ "createdBy",
38397
+ "scope"
38398
+ ],
38399
+ "type": "object"
38225
38400
  }
38226
- },
38227
- "required": [
38228
- "createdAt",
38229
- "createdBy",
38230
- "scope"
38231
- ],
38232
- "type": "object"
38401
+ ]
38233
38402
  },
38234
38403
  "type": "object"
38235
38404
  },
@@ -42132,26 +42301,56 @@
42132
42301
  },
42133
42302
  "protectionBypass": {
42134
42303
  "additionalProperties": {
42135
- "properties": {
42136
- "createdAt": {
42137
- "type": "number"
42138
- },
42139
- "createdBy": {
42140
- "type": "string"
42304
+ "oneOf": [
42305
+ {
42306
+ "properties": {
42307
+ "createdAt": {
42308
+ "type": "number"
42309
+ },
42310
+ "createdBy": {
42311
+ "type": "string"
42312
+ },
42313
+ "scope": {
42314
+ "type": "string",
42315
+ "enum": [
42316
+ "integration-automation-bypass"
42317
+ ]
42318
+ },
42319
+ "integrationId": {
42320
+ "type": "string"
42321
+ }
42322
+ },
42323
+ "required": [
42324
+ "createdAt",
42325
+ "createdBy",
42326
+ "scope",
42327
+ "integrationId"
42328
+ ],
42329
+ "type": "object"
42141
42330
  },
42142
- "scope": {
42143
- "type": "string",
42144
- "enum": [
42145
- "automation-bypass"
42146
- ]
42331
+ {
42332
+ "properties": {
42333
+ "createdAt": {
42334
+ "type": "number"
42335
+ },
42336
+ "createdBy": {
42337
+ "type": "string"
42338
+ },
42339
+ "scope": {
42340
+ "type": "string",
42341
+ "enum": [
42342
+ "automation-bypass"
42343
+ ]
42344
+ }
42345
+ },
42346
+ "required": [
42347
+ "createdAt",
42348
+ "createdBy",
42349
+ "scope"
42350
+ ],
42351
+ "type": "object"
42147
42352
  }
42148
- },
42149
- "required": [
42150
- "createdAt",
42151
- "createdBy",
42152
- "scope"
42153
- ],
42154
- "type": "object"
42353
+ ]
42155
42354
  },
42156
42355
  "type": "object"
42157
42356
  },
@@ -42896,6 +43095,56 @@
42896
43095
  "type": "boolean",
42897
43096
  "nullable": true
42898
43097
  },
43098
+ "resourceConfig": {
43099
+ "properties": {
43100
+ "buildMachineType": {
43101
+ "enum": [
43102
+ null,
43103
+ "enhanced",
43104
+ "ultra"
43105
+ ]
43106
+ },
43107
+ "fluid": {
43108
+ "type": "boolean"
43109
+ },
43110
+ "functionDefaultRegions": {
43111
+ "description": "The regions to deploy Vercel Functions to for this project",
43112
+ "type": "array",
43113
+ "minItems": 1,
43114
+ "uniqueItems": true,
43115
+ "items": {
43116
+ "type": "string",
43117
+ "maxLength": 4
43118
+ }
43119
+ },
43120
+ "functionDefaultTimeout": {
43121
+ "type": "number",
43122
+ "maximum": 900,
43123
+ "minimum": 1
43124
+ },
43125
+ "functionDefaultMemoryType": {
43126
+ "enum": [
43127
+ "standard_legacy",
43128
+ "standard",
43129
+ "performance"
43130
+ ]
43131
+ },
43132
+ "functionZeroConfigFailover": {
43133
+ "description": "Specifies whether Zero Config Failover is enabled for this project.",
43134
+ "oneOf": [
43135
+ {
43136
+ "type": "boolean"
43137
+ }
43138
+ ]
43139
+ },
43140
+ "elasticConcurrencyEnabled": {
43141
+ "type": "boolean"
43142
+ }
43143
+ },
43144
+ "type": "object",
43145
+ "description": "Specifies resource override configuration for the project",
43146
+ "additionalProperties": false
43147
+ },
42899
43148
  "rootDirectory": {
42900
43149
  "description": "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",
42901
43150
  "maxLength": 256,
@@ -52096,26 +52345,56 @@
52096
52345
  "properties": {
52097
52346
  "protectionBypass": {
52098
52347
  "additionalProperties": {
52099
- "properties": {
52100
- "createdAt": {
52101
- "type": "number"
52102
- },
52103
- "createdBy": {
52104
- "type": "string"
52348
+ "oneOf": [
52349
+ {
52350
+ "properties": {
52351
+ "createdAt": {
52352
+ "type": "number"
52353
+ },
52354
+ "createdBy": {
52355
+ "type": "string"
52356
+ },
52357
+ "scope": {
52358
+ "type": "string",
52359
+ "enum": [
52360
+ "integration-automation-bypass"
52361
+ ]
52362
+ },
52363
+ "integrationId": {
52364
+ "type": "string"
52365
+ }
52366
+ },
52367
+ "required": [
52368
+ "createdAt",
52369
+ "createdBy",
52370
+ "scope",
52371
+ "integrationId"
52372
+ ],
52373
+ "type": "object"
52105
52374
  },
52106
- "scope": {
52107
- "type": "string",
52108
- "enum": [
52109
- "automation-bypass"
52110
- ]
52375
+ {
52376
+ "properties": {
52377
+ "createdAt": {
52378
+ "type": "number"
52379
+ },
52380
+ "createdBy": {
52381
+ "type": "string"
52382
+ },
52383
+ "scope": {
52384
+ "type": "string",
52385
+ "enum": [
52386
+ "automation-bypass"
52387
+ ]
52388
+ }
52389
+ },
52390
+ "required": [
52391
+ "createdAt",
52392
+ "createdBy",
52393
+ "scope"
52394
+ ],
52395
+ "type": "object"
52111
52396
  }
52112
- },
52113
- "required": [
52114
- "createdAt",
52115
- "createdBy",
52116
- "scope"
52117
- ],
52118
- "type": "object"
52397
+ ]
52119
52398
  },
52120
52399
  "type": "object"
52121
52400
  }
@@ -52221,7 +52500,7 @@
52221
52500
  "type": "object",
52222
52501
  "properties": {
52223
52502
  "secret": {
52224
- "description": "Optional value of the secret to generate",
52503
+ "description": "Optional value of the secret to generate, don't send it for oauth2 tokens",
52225
52504
  "type": "string",
52226
52505
  "pattern": "^[a-zA-Z0-9]{32}$"
52227
52506
  }
@@ -61916,9 +62195,17 @@
61916
62195
  },
61917
62196
  "/aliases/{id}/protection-bypass": {
61918
62197
  "patch": {
61919
- "description": "Update the protection bypass for the alias (used for user access \u0026 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).",
61920
- "security": [],
61921
- "tags": [],
62198
+ "description": "Update the protection bypass for the alias or deployment URL (used for user access \u0026 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).",
62199
+ "operationId": "patchUrlProtectionBypass",
62200
+ "security": [
62201
+ {
62202
+ "bearerToken": []
62203
+ }
62204
+ ],
62205
+ "summary": "Update the protection bypass for a URL",
62206
+ "tags": [
62207
+ "aliases"
62208
+ ],
61922
62209
  "responses": {
61923
62210
  "200": {
61924
62211
  "description": "",
@@ -61984,6 +62271,24 @@
61984
62271
  "type": "string",
61985
62272
  "description": "The alias or deployment ID"
61986
62273
  }
62274
+ },
62275
+ {
62276
+ "description": "The Team identifier to perform the request on behalf of.",
62277
+ "in": "query",
62278
+ "name": "teamId",
62279
+ "schema": {
62280
+ "type": "string",
62281
+ "example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
62282
+ }
62283
+ },
62284
+ {
62285
+ "description": "The Team slug to perform the request on behalf of.",
62286
+ "in": "query",
62287
+ "name": "slug",
62288
+ "schema": {
62289
+ "type": "string",
62290
+ "example": "my-team-url-slug"
62291
+ }
61987
62292
  }
61988
62293
  ],
61989
62294
  "requestBody": {
@@ -1 +0,0 @@
1
- {"version":3,"file":"patchAliasesIdProtectionBypass.d.ts","sourceRoot":"","sources":["../../src/funcs/patchAliasesIdProtectionBypass.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKxC,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAEhD,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,qCAAqC,EAEtC,MAAM,+CAA+C,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,qBAAqB,EAEtB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EACL,oBAAoB,EAErB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EACL,mBAAmB,EAEpB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAW,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAgB,8BAA8B,CAC5C,MAAM,EAAE,UAAU,EAClB,OAAO,EAAE,qCAAqC,EAC9C,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CACX,MAAM,CACJ;IAAE,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE,EAClB,qBAAqB,GACrB,oBAAoB,GACpB,mBAAmB,GACnB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CAClB,CACF,CAMA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"patchAliasesIdProtectionBypass.js","sourceRoot":"","sources":["../../src/funcs/patchAliasesIdProtectionBypass.ts"],"names":[],"mappings":"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"}
@@ -1,7 +0,0 @@
1
- import { ToolDefinition } from "../tools.js";
2
- declare const args: {
3
- request: import("zod").ZodType<import("../../models/patchaliasesidprotectionbypassop.js").PatchAliasesIdProtectionBypassRequest, import("zod").ZodTypeDef, unknown>;
4
- };
5
- export declare const tool$patchAliasesIdProtectionBypass: ToolDefinition<typeof args>;
6
- export {};
7
- //# sourceMappingURL=patchAliasesIdProtectionBypass.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"patchAliasesIdProtectionBypass.d.ts","sourceRoot":"","sources":["../../../src/mcp-server/tools/patchAliasesIdProtectionBypass.ts"],"names":[],"mappings":"AAMA,OAAO,EAAgB,cAAc,EAAE,MAAM,aAAa,CAAC;AAE3D,QAAA,MAAM,IAAI;;CAET,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,cAAc,CAAC,OAAO,IAAI,CAwBzE,CAAC"}