@gitbeaker/core 39.18.0 → 39.19.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/index.js CHANGED
@@ -359,6 +359,7 @@ var ApplicationPlanLimits = class extends requesterUtils.BaseResource {
359
359
  ...opts
360
360
  } = options;
361
361
  return RequestHelper.put()(this, "application/plan_limits", {
362
+ ...opts,
362
363
  searchParams: {
363
364
  planName,
364
365
  ciPipelineSize,
@@ -378,8 +379,7 @@ var ApplicationPlanLimits = class extends requesterUtils.BaseResource {
378
379
  pypiMaxFileSize,
379
380
  terraformModuleMaxFileSize,
380
381
  storageSizeLimit
381
- },
382
- opts
382
+ }
383
383
  });
384
384
  }
385
385
  };
package/dist/index.mjs CHANGED
@@ -353,6 +353,7 @@ var ApplicationPlanLimits = class extends BaseResource {
353
353
  ...opts
354
354
  } = options;
355
355
  return RequestHelper.put()(this, "application/plan_limits", {
356
+ ...opts,
356
357
  searchParams: {
357
358
  planName,
358
359
  ciPipelineSize,
@@ -372,8 +373,7 @@ var ApplicationPlanLimits = class extends BaseResource {
372
373
  pypiMaxFileSize,
373
374
  terraformModuleMaxFileSize,
374
375
  storageSizeLimit
375
- },
376
- opts
376
+ }
377
377
  });
378
378
  }
379
379
  };