@seamapi/http 1.68.0 → 1.69.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/connect.cjs CHANGED
@@ -4039,6 +4039,15 @@ var _SeamHttpDevicesSimulate = class _SeamHttpDevicesSimulate {
4039
4039
  options
4040
4040
  });
4041
4041
  }
4042
+ paidSubscription(parameters, options = {}) {
4043
+ return new SeamHttpRequest(this, {
4044
+ pathname: "/devices/simulate/paid_subscription",
4045
+ method: "POST",
4046
+ body: parameters,
4047
+ responseKey: void 0,
4048
+ options
4049
+ });
4050
+ }
4042
4051
  remove(parameters, options = {}) {
4043
4052
  return new SeamHttpRequest(this, {
4044
4053
  pathname: "/devices/simulate/remove",
@@ -9331,6 +9340,13 @@ var _SeamHttpEndpoints = class _SeamHttpEndpoints {
9331
9340
  return seam.disconnectFromHub(...args);
9332
9341
  };
9333
9342
  }
9343
+ get ["/devices/simulate/paid_subscription"]() {
9344
+ const { client, defaults } = this;
9345
+ return function devicesSimulatePaidSubscription(...args) {
9346
+ const seam = SeamHttpDevicesSimulate.fromClient(client, defaults);
9347
+ return seam.paidSubscription(...args);
9348
+ };
9349
+ }
9334
9350
  get ["/devices/simulate/remove"]() {
9335
9351
  const { client, defaults } = this;
9336
9352
  return function devicesSimulateRemove(...args) {