@@ -38,7 +38,7 @@ interface PlanOperations {
3838 @ operationId ("list-plans" )
3939 @ summary ("List plans" )
4040 @ extension (Shared .UnstableExtension , true )
41- @ extension (Shared .PrivateExtension , true )
41+ @ extension (Shared .InternalExtension , true )
4242 listPlans (
4343 ... Common .PagePaginationQuery ,
4444
@@ -68,7 +68,7 @@ interface PlanOperations {
6868 @ operationId ("create-plan" )
6969 @ summary ("Create plan" )
7070 @ extension (Shared .UnstableExtension , true )
71- @ extension (Shared .PrivateExtension , true )
71+ @ extension (Shared .InternalExtension , true )
7272 createPlan (
7373 @ body plan : Shared .CreateRequest <Plan >,
7474 ): Shared .CreateResponse <Plan > | Common .ErrorResponses ;
@@ -81,7 +81,7 @@ interface PlanOperations {
8181 @ operationId ("update-plan" )
8282 @ summary ("Update plan" )
8383 @ extension (Shared .UnstableExtension , true )
84- @ extension (Shared .PrivateExtension , true )
84+ @ extension (Shared .InternalExtension , true )
8585 updatePlan (
8686 @ path planId : Shared .ULID ,
8787 @ body plan : Shared .UpsertRequest <Plan >,
@@ -99,7 +99,7 @@ interface PlanOperations {
9999 @ operationId ("get-plan" )
100100 @ summary ("Get plan" )
101101 @ extension (Shared .UnstableExtension , true )
102- @ extension (Shared .PrivateExtension , true )
102+ @ extension (Shared .InternalExtension , true )
103103 getPlan (@ path planId : Shared .ULID ):
104104 | Shared .GetResponse <Plan >
105105 | Common .ErrorResponses
@@ -114,7 +114,7 @@ interface PlanOperations {
114114 @ operationId ("delete-plan" )
115115 @ summary ("Delete plan" )
116116 @ extension (Shared .UnstableExtension , true )
117- @ extension (Shared .PrivateExtension , true )
117+ @ extension (Shared .InternalExtension , true )
118118 deletePlan (
119119 @ path planId : Shared .ULID ,
120120 ): Shared .DeleteResponse | Common .ErrorResponses | Common .NotFound ;
@@ -127,7 +127,7 @@ interface PlanOperations {
127127 @ operationId ("archive-plan" )
128128 @ summary ("Archive plan version" )
129129 @ extension (Shared .UnstableExtension , true )
130- @ extension (Shared .PrivateExtension , true )
130+ @ extension (Shared .InternalExtension , true )
131131 archivePlan (
132132 @ path planId : Shared .ULID ,
133133 ): Shared .UpdateResponse <Plan > | Common .ErrorResponses | Common .NotFound ;
@@ -140,7 +140,7 @@ interface PlanOperations {
140140 @ operationId ("publish-plan" )
141141 @ summary ("Publish plan version" )
142142 @ extension (Shared .UnstableExtension , true )
143- @ extension (Shared .PrivateExtension , true )
143+ @ extension (Shared .InternalExtension , true )
144144 publishPlan (
145145 @ path planId : Shared .ULID ,
146146 ): Shared .UpdateResponse <Plan > | Common .ErrorResponses | Common .NotFound ;
@@ -171,7 +171,7 @@ interface AddonOperations {
171171 @ operationId ("list-addons" )
172172 @ summary ("List add-ons" )
173173 @ extension (Shared .UnstableExtension , true )
174- @ extension (Shared .PrivateExtension , true )
174+ @ extension (Shared .InternalExtension , true )
175175 listAddons (
176176 ... Common .PagePaginationQuery ,
177177
@@ -204,7 +204,7 @@ interface AddonOperations {
204204 @ operationId ("create-addon" )
205205 @ summary ("Create add-on" )
206206 @ extension (Shared .UnstableExtension , true )
207- @ extension (Shared .PrivateExtension , true )
207+ @ extension (Shared .InternalExtension , true )
208208 createAddon (
209209 @ body addon : Shared .CreateRequest <Addon >,
210210 ): Shared .CreateResponse <Addon > | Common .ErrorResponses ;
@@ -217,7 +217,7 @@ interface AddonOperations {
217217 @ operationId ("update-addon" )
218218 @ summary ("Update add-on" )
219219 @ extension (Shared .UnstableExtension , true )
220- @ extension (Shared .PrivateExtension , true )
220+ @ extension (Shared .InternalExtension , true )
221221 updateAddon (
222222 @ path addonId : Shared .ULID ,
223223 @ body addon : Shared .UpsertRequest <Addon >,
@@ -235,7 +235,7 @@ interface AddonOperations {
235235 @ operationId ("get-addon" )
236236 @ summary ("Get add-on" )
237237 @ extension (Shared .UnstableExtension , true )
238- @ extension (Shared .PrivateExtension , true )
238+ @ extension (Shared .InternalExtension , true )
239239 getAddon (@ path addonId : Shared .ULID ):
240240 | Shared .GetResponse <Addon >
241241 | Common .ErrorResponses
@@ -250,7 +250,7 @@ interface AddonOperations {
250250 @ operationId ("delete-addon" )
251251 @ summary ("Soft delete add-on" )
252252 @ extension (Shared .UnstableExtension , true )
253- @ extension (Shared .PrivateExtension , true )
253+ @ extension (Shared .InternalExtension , true )
254254 deleteAddon (
255255 @ path addonId : Shared .ULID ,
256256 ): Shared .DeleteResponse | Common .ErrorResponses | Common .NotFound ;
@@ -263,7 +263,7 @@ interface AddonOperations {
263263 @ operationId ("archive-addon" )
264264 @ summary ("Archive add-on version" )
265265 @ extension (Shared .UnstableExtension , true )
266- @ extension (Shared .PrivateExtension , true )
266+ @ extension (Shared .InternalExtension , true )
267267 archiveAddon (
268268 @ path addonId : Shared .ULID ,
269269 ): Shared .UpdateResponse <Addon > | Common .ErrorResponses | Common .NotFound ;
@@ -276,7 +276,7 @@ interface AddonOperations {
276276 @ operationId ("publish-addon" )
277277 @ summary ("Publish add-on version" )
278278 @ extension (Shared .UnstableExtension , true )
279- @ extension (Shared .PrivateExtension , true )
279+ @ extension (Shared .InternalExtension , true )
280280 publishAddon (
281281 @ path addonId : Shared .ULID ,
282282 ): Shared .UpdateResponse <Addon > | Common .ErrorResponses | Common .NotFound ;
@@ -290,7 +290,7 @@ interface PlanAddonOperations {
290290 @ operationId ("list-plan-addons" )
291291 @ summary ("List add-ons for plan" )
292292 @ extension (Shared .UnstableExtension , true )
293- @ extension (Shared .PrivateExtension , true )
293+ @ extension (Shared .InternalExtension , true )
294294 listPlanAddons (
295295 @ path planId : Shared .ULID ,
296296 ... Common .PagePaginationQuery ,
@@ -303,7 +303,7 @@ interface PlanAddonOperations {
303303 @ operationId ("create-plan-addon" )
304304 @ summary ("Add add-on to plan" )
305305 @ extension (Shared .UnstableExtension , true )
306- @ extension (Shared .PrivateExtension , true )
306+ @ extension (Shared .InternalExtension , true )
307307 createPlanAddon (
308308 @ path planId : Shared .ULID ,
309309 @ body plan_addon : Shared .CreateRequest <PlanAddon >,
@@ -317,7 +317,7 @@ interface PlanAddonOperations {
317317 @ operationId ("get-plan-addon" )
318318 @ summary ("Get add-on association for plan" )
319319 @ extension (Shared .UnstableExtension , true )
320- @ extension (Shared .PrivateExtension , true )
320+ @ extension (Shared .InternalExtension , true )
321321 getPlanAddon (
322322 @ path planId : Shared .ULID ,
323323 @ path planAddonId : Shared .ULID ,
@@ -331,7 +331,7 @@ interface PlanAddonOperations {
331331 @ operationId ("update-plan-addon" )
332332 @ summary ("Update add-on association for plan" )
333333 @ extension (Shared .UnstableExtension , true )
334- @ extension (Shared .PrivateExtension , true )
334+ @ extension (Shared .InternalExtension , true )
335335 updatePlanAddon (
336336 @ path planId : Shared .ULID ,
337337 @ path planAddonId : Shared .ULID ,
@@ -346,7 +346,7 @@ interface PlanAddonOperations {
346346 @ operationId ("delete-plan-addon" )
347347 @ summary ("Remove add-on from plan" )
348348 @ extension (Shared .UnstableExtension , true )
349- @ extension (Shared .PrivateExtension , true )
349+ @ extension (Shared .InternalExtension , true )
350350 deletePlanAddon (
351351 @ path planId : Shared .ULID ,
352352 @ path planAddonId : Shared .ULID ,
0 commit comments