arky-sdk 0.9.11 → 0.9.13

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.
@@ -450,6 +450,14 @@ var createStorefrontApi = (apiConfig, updateContactSession) => {
450
450
  options
451
451
  );
452
452
  },
453
+ checkContentAccess(params, options) {
454
+ const { store_id, ...payload } = params;
455
+ return apiConfig.httpClient.post(
456
+ `${base(store_id)}/contact-lists/access`,
457
+ payload,
458
+ options
459
+ );
460
+ },
453
461
  unsubscribe(token, options) {
454
462
  return apiConfig.httpClient.post(
455
463
  `${base()}/contact-lists/unsubscribe`,