@medusajs/js-sdk 2.12.4-snapshot-20251218153040 → 2.12.4-snapshot-20251219090201

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.
@@ -122,6 +122,44 @@ export declare class Translation {
122
122
  * ```
123
123
  */
124
124
  settings(query?: HttpTypes.AdminTranslationSettingsParams, headers?: ClientHeaders): Promise<HttpTypes.AdminTranslationSettingsResponse>;
125
+ /**
126
+ * This method retrieves a paginated list of entities for a given entity type with only their
127
+ * translatable fields.
128
+ * It sends a request to the
129
+ * Get Translation Entities API route.
130
+ *
131
+ * @param query - The query parameters including the entity type and pagination configurations.
132
+ * @param headers - Headers to pass in the request.
133
+ * @returns The paginated list of entities with their translatable fields.
134
+ *
135
+ * @example
136
+ * To retrieve the entities for a given entity type:
137
+ *
138
+ * ```ts
139
+ * sdk.admin.translation.entities({
140
+ * type: "product"
141
+ * })
142
+ * .then(({ data, count, offset, limit }) => {
143
+ * console.log(data)
144
+ * })
145
+ * ```
146
+ *
147
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
148
+ *
149
+ * For example, to retrieve only 10 items and skip 10 items:
150
+ *
151
+ * ```ts
152
+ * sdk.admin.translation.entities({
153
+ * type: "product",
154
+ * limit: 10,
155
+ * offset: 10
156
+ * })
157
+ * .then(({ data, count, offset, limit }) => {
158
+ * console.log(data)
159
+ * })
160
+ * ```
161
+ */
162
+ entities(query: HttpTypes.AdminTranslationEntitiesParams, headers?: ClientHeaders): Promise<HttpTypes.AdminTranslationEntitiesResponse>;
125
163
  /**
126
164
  * This method retrieves the statistics for the translations for a given entity type or all entity types if no entity type is provided.
127
165
  * It sends a request to the
@@ -1 +1 @@
1
- {"version":3,"file":"translation.d.ts","sourceRoot":"","sources":["../../src/admin/translation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,WAAW;IACtB;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,2BAA2B,EAC7C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE,aAAa;IAW3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,QAAQ,CACZ,KAAK,CAAC,EAAE,SAAS,CAAC,8BAA8B,EAChD,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,UAAU,CACd,KAAK,CAAC,EAAE,SAAS,CAAC,gCAAgC,EAClD,OAAO,CAAC,EAAE,aAAa;CAU1B"}
1
+ {"version":3,"file":"translation.d.ts","sourceRoot":"","sources":["../../src/admin/translation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,WAAW;IACtB;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,2BAA2B,EAC7C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE,aAAa;IAW3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,QAAQ,CACZ,KAAK,CAAC,EAAE,SAAS,CAAC,8BAA8B,EAChD,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoCG;IACG,QAAQ,CACZ,KAAK,EAAE,SAAS,CAAC,8BAA8B,EAC/C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,UAAU,CACd,KAAK,CAAC,EAAE,SAAS,CAAC,gCAAgC,EAClD,OAAO,CAAC,EAAE,aAAa;CAU1B"}
@@ -136,6 +136,49 @@ class Translation {
136
136
  query,
137
137
  });
138
138
  }
139
+ /**
140
+ * This method retrieves a paginated list of entities for a given entity type with only their
141
+ * translatable fields.
142
+ * It sends a request to the
143
+ * Get Translation Entities API route.
144
+ *
145
+ * @param query - The query parameters including the entity type and pagination configurations.
146
+ * @param headers - Headers to pass in the request.
147
+ * @returns The paginated list of entities with their translatable fields.
148
+ *
149
+ * @example
150
+ * To retrieve the entities for a given entity type:
151
+ *
152
+ * ```ts
153
+ * sdk.admin.translation.entities({
154
+ * type: "product"
155
+ * })
156
+ * .then(({ data, count, offset, limit }) => {
157
+ * console.log(data)
158
+ * })
159
+ * ```
160
+ *
161
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
162
+ *
163
+ * For example, to retrieve only 10 items and skip 10 items:
164
+ *
165
+ * ```ts
166
+ * sdk.admin.translation.entities({
167
+ * type: "product",
168
+ * limit: 10,
169
+ * offset: 10
170
+ * })
171
+ * .then(({ data, count, offset, limit }) => {
172
+ * console.log(data)
173
+ * })
174
+ * ```
175
+ */
176
+ async entities(query, headers) {
177
+ return await this.client.fetch(`/admin/translations/entities`, {
178
+ headers,
179
+ query,
180
+ });
181
+ }
139
182
  /**
140
183
  * This method retrieves the statistics for the translations for a given entity type or all entity types if no entity type is provided.
141
184
  * It sends a request to the
@@ -1 +1 @@
1
- {"version":3,"file":"translation.js","sourceRoot":"","sources":["../../src/admin/translation.ts"],"names":[],"mappings":";;;AAIA,MAAa,WAAW;IAMtB;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACH,KAAK,CAAC,IAAI,CACR,KAA6C,EAC7C,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,qBAAqB,EACrB;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACH,KAAK,CAAC,KAAK,CAAC,IAAsC,EAAE,OAAuB;QACzE,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,2BAA2B,EAC3B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;SACL,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACH,KAAK,CAAC,QAAQ,CACZ,KAAgD,EAChD,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,8BAA8B,EAC9B;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACH,KAAK,CAAC,UAAU,CACd,KAAkD,EAClD,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,gCAAgC,EAChC;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;CACF;AAzMD,kCAyMC"}
1
+ {"version":3,"file":"translation.js","sourceRoot":"","sources":["../../src/admin/translation.ts"],"names":[],"mappings":";;;AAIA,MAAa,WAAW;IAMtB;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACH,KAAK,CAAC,IAAI,CACR,KAA6C,EAC7C,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,qBAAqB,EACrB;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACH,KAAK,CAAC,KAAK,CAAC,IAAsC,EAAE,OAAuB;QACzE,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,2BAA2B,EAC3B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;SACL,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACH,KAAK,CAAC,QAAQ,CACZ,KAAgD,EAChD,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,8BAA8B,EAC9B;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoCG;IACH,KAAK,CAAC,QAAQ,CACZ,KAA+C,EAC/C,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,8BAA8B,EAC9B;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACH,KAAK,CAAC,UAAU,CACd,KAAkD,EAClD,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,gCAAgC,EAChC;YACE,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;CACF;AA3PD,kCA2PC"}
@@ -122,6 +122,44 @@ export declare class Translation {
122
122
  * ```
123
123
  */
124
124
  settings(query?: HttpTypes.AdminTranslationSettingsParams, headers?: ClientHeaders): Promise<HttpTypes.AdminTranslationSettingsResponse>;
125
+ /**
126
+ * This method retrieves a paginated list of entities for a given entity type with only their
127
+ * translatable fields.
128
+ * It sends a request to the
129
+ * Get Translation Entities API route.
130
+ *
131
+ * @param query - The query parameters including the entity type and pagination configurations.
132
+ * @param headers - Headers to pass in the request.
133
+ * @returns The paginated list of entities with their translatable fields.
134
+ *
135
+ * @example
136
+ * To retrieve the entities for a given entity type:
137
+ *
138
+ * ```ts
139
+ * sdk.admin.translation.entities({
140
+ * type: "product"
141
+ * })
142
+ * .then(({ data, count, offset, limit }) => {
143
+ * console.log(data)
144
+ * })
145
+ * ```
146
+ *
147
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
148
+ *
149
+ * For example, to retrieve only 10 items and skip 10 items:
150
+ *
151
+ * ```ts
152
+ * sdk.admin.translation.entities({
153
+ * type: "product",
154
+ * limit: 10,
155
+ * offset: 10
156
+ * })
157
+ * .then(({ data, count, offset, limit }) => {
158
+ * console.log(data)
159
+ * })
160
+ * ```
161
+ */
162
+ entities(query: HttpTypes.AdminTranslationEntitiesParams, headers?: ClientHeaders): Promise<HttpTypes.AdminTranslationEntitiesResponse>;
125
163
  /**
126
164
  * This method retrieves the statistics for the translations for a given entity type or all entity types if no entity type is provided.
127
165
  * It sends a request to the
@@ -1 +1 @@
1
- {"version":3,"file":"translation.d.ts","sourceRoot":"","sources":["../../../src/admin/translation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,WAAW;IACtB;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,2BAA2B,EAC7C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE,aAAa;IAW3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,QAAQ,CACZ,KAAK,CAAC,EAAE,SAAS,CAAC,8BAA8B,EAChD,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,UAAU,CACd,KAAK,CAAC,EAAE,SAAS,CAAC,gCAAgC,EAClD,OAAO,CAAC,EAAE,aAAa;CAU1B"}
1
+ {"version":3,"file":"translation.d.ts","sourceRoot":"","sources":["../../../src/admin/translation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,WAAW;IACtB;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,2BAA2B,EAC7C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE,aAAa;IAW3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,QAAQ,CACZ,KAAK,CAAC,EAAE,SAAS,CAAC,8BAA8B,EAChD,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoCG;IACG,QAAQ,CACZ,KAAK,EAAE,SAAS,CAAC,8BAA8B,EAC/C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,UAAU,CACd,KAAK,CAAC,EAAE,SAAS,CAAC,gCAAgC,EAClD,OAAO,CAAC,EAAE,aAAa;CAU1B"}
@@ -148,6 +148,51 @@ export class Translation {
148
148
  });
149
149
  });
150
150
  }
151
+ /**
152
+ * This method retrieves a paginated list of entities for a given entity type with only their
153
+ * translatable fields.
154
+ * It sends a request to the
155
+ * Get Translation Entities API route.
156
+ *
157
+ * @param query - The query parameters including the entity type and pagination configurations.
158
+ * @param headers - Headers to pass in the request.
159
+ * @returns The paginated list of entities with their translatable fields.
160
+ *
161
+ * @example
162
+ * To retrieve the entities for a given entity type:
163
+ *
164
+ * ```ts
165
+ * sdk.admin.translation.entities({
166
+ * type: "product"
167
+ * })
168
+ * .then(({ data, count, offset, limit }) => {
169
+ * console.log(data)
170
+ * })
171
+ * ```
172
+ *
173
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
174
+ *
175
+ * For example, to retrieve only 10 items and skip 10 items:
176
+ *
177
+ * ```ts
178
+ * sdk.admin.translation.entities({
179
+ * type: "product",
180
+ * limit: 10,
181
+ * offset: 10
182
+ * })
183
+ * .then(({ data, count, offset, limit }) => {
184
+ * console.log(data)
185
+ * })
186
+ * ```
187
+ */
188
+ entities(query, headers) {
189
+ return __awaiter(this, void 0, void 0, function* () {
190
+ return yield this.client.fetch(`/admin/translations/entities`, {
191
+ headers,
192
+ query,
193
+ });
194
+ });
195
+ }
151
196
  /**
152
197
  * This method retrieves the statistics for the translations for a given entity type or all entity types if no entity type is provided.
153
198
  * It sends a request to the
@@ -1 +1 @@
1
- {"version":3,"file":"translation.js","sourceRoot":"","sources":["../../../src/admin/translation.ts"],"names":[],"mappings":";;;;;;;;;AAIA,MAAM,OAAO,WAAW;IAMtB;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAA6C,EAC7C,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,qBAAqB,EACrB;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,KAAK,CAAC,IAAsC,EAAE,OAAuB;;YACzE,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,2BAA2B,EAC3B;gBACE,MAAM,EAAE,MAAM;gBACd,OAAO;gBACP,IAAI;aACL,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,QAAQ,CACZ,KAAgD,EAChD,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,8BAA8B,EAC9B;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,UAAU,CACd,KAAkD,EAClD,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,gCAAgC,EAChC;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;CACF"}
1
+ {"version":3,"file":"translation.js","sourceRoot":"","sources":["../../../src/admin/translation.ts"],"names":[],"mappings":";;;;;;;;;AAIA,MAAM,OAAO,WAAW;IAMtB;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAA6C,EAC7C,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,qBAAqB,EACrB;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,KAAK,CAAC,IAAsC,EAAE,OAAuB;;YACzE,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,2BAA2B,EAC3B;gBACE,MAAM,EAAE,MAAM;gBACd,OAAO;gBACP,IAAI;aACL,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,QAAQ,CACZ,KAAgD,EAChD,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,8BAA8B,EAC9B;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoCG;IACG,QAAQ,CACZ,KAA+C,EAC/C,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,8BAA8B,EAC9B;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,UAAU,CACd,KAAkD,EAClD,OAAuB;;YAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,gCAAgC,EAChC;gBACE,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/js-sdk",
3
- "version": "2.12.4-snapshot-20251218153040",
3
+ "version": "2.12.4-snapshot-20251219090201",
4
4
  "description": "SDK for the Medusa API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -29,7 +29,7 @@
29
29
  "author": "Medusa",
30
30
  "license": "MIT",
31
31
  "devDependencies": {
32
- "@medusajs/types": "2.12.4-snapshot-20251218153040"
32
+ "@medusajs/types": "2.12.4-snapshot-20251219090201"
33
33
  },
34
34
  "dependencies": {
35
35
  "fetch-event-stream": "^0.1.5",