feeef 0.12.6 → 0.12.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.
package/build/index.js CHANGED
@@ -2966,6 +2966,14 @@ var StoreTemplatesRepository = class extends ModelRepository {
2966
2966
  });
2967
2967
  return toListResponse3(res.data);
2968
2968
  }
2969
+ /**
2970
+ * Platform default Lithium theme (`GET /store_templates/default`).
2971
+ * Configured via `templateMarketplace.defaultTemplateId`.
2972
+ */
2973
+ async getDefault() {
2974
+ const res = await this.client.get(`/${this.resource}/default`);
2975
+ return res.data;
2976
+ }
2969
2977
  async fork(options) {
2970
2978
  const res = await this.client.post(`/${this.resource}/${options.fromId}/fork`, {
2971
2979
  storeId: options.storeId,