glitch-javascript-sdk 3.10.5 → 3.10.7

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.
@@ -6172,7 +6172,7 @@
6172
6172
  Config._baseUrlLocked = false;
6173
6173
 
6174
6174
  /**
6175
- * Typed SDK for game website hosting, Azure database add-ons, domains, usage,
6175
+ * Typed SDK for game website hosting, managed database add-ons, domains, usage,
6176
6176
  * deployment instructions, and hosted-play attribution.
6177
6177
  */
6178
6178
  class Hosting {
@@ -6189,7 +6189,7 @@
6189
6189
  static billingCheckout(title_id, plan) {
6190
6190
  return Requests.processRoute(HostingRoute.routes.billingCheckout, { plan }, { title_id });
6191
6191
  }
6192
- /** Confirm a paid Stripe Checkout session before provisioning its Azure resource. */
6192
+ /** Confirm a paid Stripe Checkout session before provisioning its add-on. */
6193
6193
  static confirmBillingCheckout(title_id, checkout_session_id) {
6194
6194
  return Requests.processRoute(HostingRoute.routes.confirmBillingCheckout, { checkout_session_id }, { title_id });
6195
6195
  }
@@ -6226,7 +6226,7 @@
6226
6226
  static createUploadUrl(title_id, site_id) {
6227
6227
  return Requests.processRoute(HostingRoute.routes.uploadUrl, {}, { title_id, site_id });
6228
6228
  }
6229
- /** Upload directly to the short-lived Azure URL returned by createUploadUrl. */
6229
+ /** Upload directly to the short-lived signed URL returned by createUploadUrl. */
6230
6230
  static uploadBuild(uploadUrl, file, requiredHeaders = {}, onUploadProgress) {
6231
6231
  return axios.put(uploadUrl, file, {
6232
6232
  headers: Object.assign({ 'x-ms-blob-type': 'BlockBlob', 'Content-Type': 'application/zip' }, requiredHeaders),