@medusajs/types 3.0.0-snapshot-20251215083939 → 3.0.0-snapshot-20251216103925

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.
@@ -1,3 +1,4 @@
1
1
  export * from "./admin";
2
+ export * from "./store";
2
3
  export * from "./common";
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/http/locale/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/http/locale/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA"}
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./admin"), exports);
18
+ __exportStar(require("./store"), exports);
18
19
  __exportStar(require("./common"), exports);
19
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/http/locale/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAuB;AACvB,2CAAwB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/http/locale/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAuB;AACvB,0CAAuB;AACvB,2CAAwB"}
@@ -0,0 +1,4 @@
1
+ import { BaseLocale } from "../common";
2
+ export interface StoreLocale extends Pick<BaseLocale, "code" | "name"> {
3
+ }
4
+ //# sourceMappingURL=entities.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../../src/http/locale/store/entities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;CAAG"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=entities.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entities.js","sourceRoot":"","sources":["../../../../src/http/locale/store/entities.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export * from "./entities";
2
+ export * from "./responses";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/http/locale/store/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,aAAa,CAAA"}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./entities"), exports);
18
+ __exportStar(require("./responses"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/http/locale/store/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,8CAA2B"}
@@ -0,0 +1,5 @@
1
+ import { StoreLocale } from "./entities";
2
+ export interface StoreLocaleListResponse {
3
+ locales: StoreLocale[];
4
+ }
5
+ //# sourceMappingURL=responses.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../../../src/http/locale/store/responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAEzC,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,WAAW,EAAE,CAAA;CACvB"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=responses.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responses.js","sourceRoot":"","sources":["../../../../src/http/locale/store/responses.ts"],"names":[],"mappings":""}
@@ -11,6 +11,12 @@ export interface AdminUpdateOrder {
11
11
  * The order's billing address.
12
12
  */
13
13
  billing_address?: OrderAddress;
14
+ /**
15
+ * The order's locale code. Items in the
16
+ * order will be translated to the given locale,
17
+ * if translations are available.
18
+ */
19
+ locale?: string | null;
14
20
  /**
15
21
  * The order's metadata.
16
22
  */
@@ -1 +1 @@
1
- {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../src/http/order/admin/payload.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"payload.d.ts","sourceRoot":"","sources":["../../../../src/http/order/admin/payload.ts"],"names":[],"mappings":"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"}
@@ -18,4 +18,26 @@ export interface AdminTranslationsListParams extends FindParams, BaseFilterable<
18
18
  */
19
19
  locale_code?: string | string[];
20
20
  }
21
+ /**
22
+ * Request body for translation statistics endpoint.
23
+ */
24
+ export interface AdminTranslationStatisticsParams {
25
+ /**
26
+ * The locales to check translations for (e.g., ["en-US", "fr-FR"]).
27
+ */
28
+ locales: string[];
29
+ /**
30
+ * The entity types to get statistics for (e.g., ["product", "product_variant"]).
31
+ */
32
+ entity_types: string[];
33
+ }
34
+ /**
35
+ * Query parameters for translation settings endpoint.
36
+ */
37
+ export interface AdminTranslationSettingsParams {
38
+ /**
39
+ * The entity type to get the settings for (e.g., "product").
40
+ */
41
+ entity_type?: string;
42
+ }
21
43
  //# sourceMappingURL=queries.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../../../../src/http/translations/admin/queries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,MAAM,WAAW,2BACf,SAAQ,UAAU,EAChB,cAAc,CAAC,2BAA2B,CAAC;IAC7C;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,CAAA;IACV;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CAChC"}
1
+ {"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../../../../src/http/translations/admin/queries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,MAAM,WAAW,2BACf,SAAQ,UAAU,EAChB,cAAc,CAAC,2BAA2B,CAAC;IAC7C;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,CAAA;IACV;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC/C;;OAEG;IACH,OAAO,EAAE,MAAM,EAAE,CAAA;IAEjB;;OAEG;IACH,YAAY,EAAE,MAAM,EAAE,CAAA;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB"}
@@ -30,4 +30,54 @@ export interface AdminTranslationsBatchResponse {
30
30
  deleted: boolean;
31
31
  };
32
32
  }
33
+ /**
34
+ * Statistics for a specific locale.
35
+ */
36
+ export interface AdminTranslationLocaleStatistics {
37
+ /**
38
+ * Expected number of translated fields.
39
+ */
40
+ expected: number;
41
+ /**
42
+ * Actual number of translated fields.
43
+ */
44
+ translated: number;
45
+ /**
46
+ * Number of missing translations.
47
+ */
48
+ missing: number;
49
+ }
50
+ /**
51
+ * Statistics for an entity type.
52
+ */
53
+ export interface AdminTranslationEntityStatistics extends AdminTranslationLocaleStatistics {
54
+ /**
55
+ * Breakdown of statistics by locale.
56
+ */
57
+ by_locale: Record<string, AdminTranslationLocaleStatistics>;
58
+ }
59
+ /**
60
+ * Response for translation statistics endpoint.
61
+ */
62
+ export interface AdminTranslationStatisticsResponse {
63
+ /**
64
+ * Statistics by entity type.
65
+ */
66
+ statistics: Record<string, AdminTranslationEntityStatistics>;
67
+ }
68
+ /**
69
+ * Response for translation settings endpoint.
70
+ */
71
+ export interface AdminTranslationSettingsResponse {
72
+ /**
73
+ * A mapping of entity types to their translatable field names.
74
+ *
75
+ * @example
76
+ * {
77
+ * "product": ["title", "description", "subtitle", "status"],
78
+ * "product_variant": ["title", "material"]
79
+ * }
80
+ */
81
+ translatable_fields: Record<string, string[]>;
82
+ }
33
83
  //# sourceMappingURL=responses.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../../../src/http/translations/admin/responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAE7C,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,MAAM,MAAM,6BAA6B,GAAG,iBAAiB,CAAC;IAC5D;;OAEG;IACH,YAAY,EAAE,gBAAgB,EAAE,CAAA;CACjC,CAAC,CAAA;AAEF,MAAM,WAAW,8BAA8B;IAC7C;;OAEG;IACH,OAAO,EAAE,gBAAgB,EAAE,CAAA;IAC3B;;OAEG;IACH,OAAO,EAAE,gBAAgB,EAAE,CAAA;IAC3B;;OAEG;IACH,OAAO,EAAE;QACP,GAAG,EAAE,MAAM,EAAE,CAAA;QACb,MAAM,EAAE,aAAa,CAAA;QACrB,OAAO,EAAE,OAAO,CAAA;KACjB,CAAA;CACF"}
1
+ {"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../../../src/http/translations/admin/responses.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAE7C,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,WAAW,EAAE,gBAAgB,CAAA;CAC9B;AAED,MAAM,MAAM,6BAA6B,GAAG,iBAAiB,CAAC;IAC5D;;OAEG;IACH,YAAY,EAAE,gBAAgB,EAAE,CAAA;CACjC,CAAC,CAAA;AAEF,MAAM,WAAW,8BAA8B;IAC7C;;OAEG;IACH,OAAO,EAAE,gBAAgB,EAAE,CAAA;IAC3B;;OAEG;IACH,OAAO,EAAE,gBAAgB,EAAE,CAAA;IAC3B;;OAEG;IACH,OAAO,EAAE;QACP,GAAG,EAAE,MAAM,EAAE,CAAA;QACb,MAAM,EAAE,aAAa,CAAA;QACrB,OAAO,EAAE,OAAO,CAAA;KACjB,CAAA;CACF;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC/C;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAA;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,gCACf,SAAQ,gCAAgC;IACxC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAA;CAC5D;AAED;;GAEG;AACH,MAAM,WAAW,kCAAkC;IACjD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,gCAAgC,CAAC,CAAA;CAC7D;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC/C;;;;;;;;OAQG;IACH,mBAAmB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAA;CAC9C"}
@@ -108,4 +108,51 @@ export interface FilterableTranslationProps extends BaseFilterable<FilterableTra
108
108
  */
109
109
  locale_code?: string | string[] | OperatorMap<string>;
110
110
  }
111
+ /**
112
+ * Input for getStatistics method.
113
+ */
114
+ export interface TranslationStatisticsInput {
115
+ /**
116
+ * Locales to check translations for (e.g., ["en-US", "fr-FR"]).
117
+ */
118
+ locales: string[];
119
+ /**
120
+ * Entity types with their total counts.
121
+ * Key is the entity type (e.g., "product"), value contains the count of entities.
122
+ */
123
+ entities: Record<string, {
124
+ count: number;
125
+ }>;
126
+ }
127
+ /**
128
+ * Statistics for a specific locale.
129
+ */
130
+ export interface LocaleStatistics {
131
+ /**
132
+ * Expected number of translated fields.
133
+ */
134
+ expected: number;
135
+ /**
136
+ * Actual number of translated fields (non-null, non-empty).
137
+ */
138
+ translated: number;
139
+ /**
140
+ * Number of missing translations (expected - translated).
141
+ */
142
+ missing: number;
143
+ }
144
+ /**
145
+ * Statistics for an entity type.
146
+ */
147
+ export interface EntityTypeStatistics extends LocaleStatistics {
148
+ /**
149
+ * Breakdown of statistics by locale.
150
+ */
151
+ by_locale: Record<string, LocaleStatistics>;
152
+ }
153
+ /**
154
+ * Output of getStatistics method.
155
+ * Maps entity types to their translation statistics.
156
+ */
157
+ export type TranslationStatisticsOutput = Record<string, EntityTypeStatistics>;
111
158
  //# sourceMappingURL=common.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/translation/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAA;AAEpD;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAA;IAEzB;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAA;IAEzB;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,GAAG,IAAI,CAAA;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,YAAY,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAA;IAEnB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAErC;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAA;IAEzB;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAA;IAEzB;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,GAAG,IAAI,CAAA;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,qBACf,SAAQ,cAAc,CAAC,qBAAqB,CAAC;IAC7C;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,WAAW,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,CAAA;IAEvD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAE9C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,0BACf,SAAQ,cAAc,CAAC,0BAA0B,CAAC;IAClD;;;OAGG;IACH,CAAC,CAAC,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,WAAW,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,CAAA;IAEvD;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAEtD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAEnD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;CACtD"}
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/translation/common.ts"],"names":[],"mappings":"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"}
@@ -2,7 +2,7 @@ import { FindConfig } from "../common";
2
2
  import { RestoreReturn, SoftDeleteReturn } from "../dal";
3
3
  import { IModuleService } from "../modules-sdk";
4
4
  import { Context } from "../shared-context";
5
- import { FilterableLocaleProps, FilterableTranslationProps, LocaleDTO, TranslationDTO } from "./common";
5
+ import { FilterableLocaleProps, FilterableTranslationProps, LocaleDTO, TranslationDTO, TranslationStatisticsInput, TranslationStatisticsOutput } from "./common";
6
6
  import { CreateLocaleDTO, CreateTranslationDTO, UpdateLocaleDTO, UpdateLocaleDataDTO, UpdateTranslationDTO, UpdateTranslationDataDTO } from "./mutations";
7
7
  /**
8
8
  * The main service interface for the Translation Module.
@@ -185,5 +185,53 @@ export interface ITranslationModuleService extends IModuleService {
185
185
  * @returns {Promise<Record<string, string[]> | void>} An object with IDs of related records that were restored.
186
186
  */
187
187
  restoreTranslations<TReturnableLinkableKeys extends string = string>(primaryKeyValues: string | object | string[] | object[], config?: RestoreReturn<TReturnableLinkableKeys>, sharedContext?: Context): Promise<Record<string, string[]> | void>;
188
+ /**
189
+ * This method retrieves translation statistics for the given entities and locales.
190
+ * It counts translated fields at a granular level, providing both aggregated
191
+ * and per-locale breakdowns.
192
+ *
193
+ * @param {TranslationStatisticsInput} input - The entities and locales to check.
194
+ * @param {Context} sharedContext
195
+ * @returns {Promise<TranslationStatisticsOutput>} Statistics by entity type.
196
+ *
197
+ * @example
198
+ * const stats = await translationService.getStatistics({
199
+ * locales: ["en-US", "fr-FR"],
200
+ * entities: {
201
+ * product: { count: 2 },
202
+ * product_variant: { count: 5 }
203
+ * }
204
+ * })
205
+ * // Returns:
206
+ * // {
207
+ * // product: {
208
+ * // expected: 20, // 2 products × 5 fields × 2 locales
209
+ * // translated: 15,
210
+ * // missing: 5,
211
+ * // by_locale: {
212
+ * // "en-US": { expected: 10, translated: 8, missing: 2 },
213
+ * // "fr-FR": { expected: 10, translated: 7, missing: 3 }
214
+ * // }
215
+ * // }
216
+ * // }
217
+ */
218
+ getStatistics(input: TranslationStatisticsInput, sharedContext?: Context): Promise<TranslationStatisticsOutput>;
219
+ /**
220
+ * This method retrieves the translatable fields configuration.
221
+ * Returns a mapping of entity types to their translatable field names.
222
+ *
223
+ * @param {string} entityType - Optional entity type to filter by. If not provided, returns all.
224
+ * @returns {Record<string, string[]>} A mapping of entity types to their translatable fields.
225
+ *
226
+ * @example
227
+ * // Get all translatable fields
228
+ * const allFields = translationService.getTranslatableFields()
229
+ * // Returns: { product: ["title", "description", ...], product_variant: ["title", ...] }
230
+ *
231
+ * // Get fields for a specific entity type
232
+ * const productFields = translationService.getTranslatableFields("product")
233
+ * // Returns: { product: ["title", "description", "subtitle", "status"] }
234
+ */
235
+ getTranslatableFields(entityType?: string): Record<string, string[]>;
188
236
  }
189
237
  //# sourceMappingURL=service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../../src/translation/service.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../../src/translation/service.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"root":["../src/bundles.ts","../src/index.ts","../src/shared-context.ts","../src/address/common.ts","../src/address/index.ts","../src/admin/extensions.ts","../src/admin/index.ts","../src/analytics/index.ts","../src/analytics/mutations.ts","../src/analytics/provider.ts","../src/analytics/service.ts","../src/analytics/providers/index.ts","../src/analytics/providers/local.ts","../src/analytics/providers/posthog.ts","../src/api-key/index.ts","../src/api-key/service.ts","../src/api-key/common/api-key.ts","../src/api-key/common/index.ts","../src/api-key/mutations/api-key.ts","../src/api-key/mutations/index.ts","../src/auth/index.ts","../src/auth/provider.ts","../src/auth/service.ts","../src/auth/common/auth-identity.ts","../src/auth/common/index.ts","../src/auth/common/provider.ts","../src/auth/providers/emailpass.ts","../src/auth/providers/github.ts","../src/auth/providers/google.ts","../src/auth/providers/index.ts","../src/cache/index.ts","../src/cache/service.ts","../src/caching/index.ts","../src/cart/common.ts","../src/cart/index.ts","../src/cart/mutations.ts","../src/cart/service.ts","../src/cart/workflows.ts","../src/common/batch.ts","../src/common/camel-case.ts","../src/common/common.ts","../src/common/config-file.ts","../src/common/config-module.ts","../src/common/index.ts","../src/common/medusa-cli.ts","../src/common/medusa-container.ts","../src/common/rule.ts","../src/common/with-calculated.ts","../src/common/__tests__/pluralize.spec.ts","../src/currency/index.ts","../src/currency/service.ts","../src/currency/common/currency.ts","../src/currency/common/index.ts","../src/customer/common.ts","../src/customer/index.ts","../src/customer/mutations.ts","../src/customer/service.ts","../src/dal/entity.ts","../src/dal/index.ts","../src/dal/repository-service.ts","../src/dal/utils.ts","../src/dml/index.ts","../src/event-bus/common.ts","../src/event-bus/event-bus-module.ts","../src/event-bus/event-bus.ts","../src/event-bus/index.ts","../src/feature-flag/common.ts","../src/feature-flag/index.ts","../src/file/common.ts","../src/file/index.ts","../src/file/mutations.ts","../src/file/provider.ts","../src/file/service.ts","../src/file/providers/index.ts","../src/file/providers/local.ts","../src/file/providers/s3.ts","../src/file-service/index.ts","../src/fulfillment/index.ts","../src/fulfillment/provider.ts","../src/fulfillment/service.ts","../src/fulfillment/workflows.ts","../src/fulfillment/common/address.ts","../src/fulfillment/common/cart.ts","../src/fulfillment/common/fulfillment-item.ts","../src/fulfillment/common/fulfillment-label.ts","../src/fulfillment/common/fulfillment-provider.ts","../src/fulfillment/common/fulfillment-set.ts","../src/fulfillment/common/fulfillment.ts","../src/fulfillment/common/geo-zone.ts","../src/fulfillment/common/index.ts","../src/fulfillment/common/order.ts","../src/fulfillment/common/service-zone.ts","../src/fulfillment/common/shipping-option-rule.ts","../src/fulfillment/common/shipping-option-type.ts","../src/fulfillment/common/shipping-option.ts","../src/fulfillment/common/shipping-profile.ts","../src/fulfillment/mutations/fulfillment-address.ts","../src/fulfillment/mutations/fulfillment-item.ts","../src/fulfillment/mutations/fulfillment-label.ts","../src/fulfillment/mutations/fulfillment-set.ts","../src/fulfillment/mutations/fulfillment.ts","../src/fulfillment/mutations/geo-zone.ts","../src/fulfillment/mutations/index.ts","../src/fulfillment/mutations/service-zone.ts","../src/fulfillment/mutations/shipping-option-rule.ts","../src/fulfillment/mutations/shipping-option-type.ts","../src/fulfillment/mutations/shipping-option.ts","../src/fulfillment/mutations/shipping-profile.ts","../src/http/index.ts","../src/http/address/entities.ts","../src/http/address/index.ts","../src/http/api-key/index.ts","../src/http/api-key/admin/index.ts","../src/http/api-key/admin/payloads.ts","../src/http/api-key/admin/queries.ts","../src/http/api-key/admin/responses.ts","../src/http/auth/index.ts","../src/http/auth/payloads.ts","../src/http/campaign/index.ts","../src/http/campaign/admin/index.ts","../src/http/campaign/admin/payloads.ts","../src/http/campaign/admin/queries.ts","../src/http/campaign/admin/responses.ts","../src/http/cart/common.ts","../src/http/cart/index.ts","../src/http/cart/store/entities.ts","../src/http/cart/store/index.ts","../src/http/cart/store/payloads.ts","../src/http/cart/store/responses.ts","../src/http/claim/common.ts","../src/http/claim/index.ts","../src/http/claim/admin/entities.ts","../src/http/claim/admin/index.ts","../src/http/claim/admin/payloads.ts","../src/http/claim/admin/queries.ts","../src/http/claim/admin/responses.ts","../src/http/collection/common.ts","../src/http/collection/index.ts","../src/http/collection/admin/entities.ts","../src/http/collection/admin/index.ts","../src/http/collection/admin/payloads.ts","../src/http/collection/admin/queries.ts","../src/http/collection/admin/responses.ts","../src/http/collection/store/entities.ts","../src/http/collection/store/index.ts","../src/http/collection/store/queries.ts","../src/http/collection/store/responses.ts","../src/http/common/additional_data.ts","../src/http/common/index.ts","../src/http/common/request.ts","../src/http/common/response.ts","../src/http/currency/common.ts","../src/http/currency/index.ts","../src/http/currency/admin/entities.ts","../src/http/currency/admin/index.ts","../src/http/currency/admin/queries.ts","../src/http/currency/admin/responses.ts","../src/http/currency/store/entities.ts","../src/http/currency/store/index.ts","../src/http/currency/store/queries.ts","../src/http/currency/store/responses.ts","../src/http/customer/common.ts","../src/http/customer/index.ts","../src/http/customer/admin/entities.ts","../src/http/customer/admin/index.ts","../src/http/customer/admin/payloads.ts","../src/http/customer/admin/queries.ts","../src/http/customer/admin/responses.ts","../src/http/customer/store/entities.ts","../src/http/customer/store/index.ts","../src/http/customer/store/payloads.ts","../src/http/customer/store/queries.ts","../src/http/customer/store/responses.ts","../src/http/customer-group/common.ts","../src/http/customer-group/index.ts","../src/http/customer-group/admin/entities.ts","../src/http/customer-group/admin/index.ts","../src/http/customer-group/admin/payloads.ts","../src/http/customer-group/admin/queries.ts","../src/http/customer-group/admin/responses.ts","../src/http/draft-order/index.ts","../src/http/draft-order/admin/entities.ts","../src/http/draft-order/admin/index.ts","../src/http/draft-order/admin/payloads.ts","../src/http/draft-order/admin/queries.ts","../src/http/draft-order/admin/responses.ts","../src/http/exchange/common.ts","../src/http/exchange/index.ts","../src/http/exchange/admin/entities.ts","../src/http/exchange/admin/index.ts","../src/http/exchange/admin/payloads.ts","../src/http/exchange/admin/queries.ts","../src/http/exchange/admin/responses.ts","../src/http/file/common.ts","../src/http/file/index.ts","../src/http/file/store.ts","../src/http/file/admin/entities.ts","../src/http/file/admin/index.ts","../src/http/file/admin/payloads.ts","../src/http/file/admin/responses.ts","../src/http/fulfillment/index.ts","../src/http/fulfillment/admin/entitites.ts","../src/http/fulfillment/admin/index.ts","../src/http/fulfillment/admin/payloads.ts","../src/http/fulfillment/admin/responses.ts","../src/http/fulfillment/store/index.ts","../src/http/fulfillment-provider/common.ts","../src/http/fulfillment-provider/index.ts","../src/http/fulfillment-provider/admin/entities.ts","../src/http/fulfillment-provider/admin/index.ts","../src/http/fulfillment-provider/admin/queries.ts","../src/http/fulfillment-provider/admin/responses.ts","../src/http/fulfillment-set/index.ts","../src/http/fulfillment-set/admin/entities.ts","../src/http/fulfillment-set/admin/index.ts","../src/http/fulfillment-set/admin/payloads.ts","../src/http/fulfillment-set/admin/queries.ts","../src/http/fulfillment-set/admin/responses.ts","../src/http/index/index.ts","../src/http/index/admin/payload.ts","../src/http/index/admin/responses.ts","../src/http/inventory/index.ts","../src/http/inventory/admin/entities.ts","../src/http/inventory/admin/index.ts","../src/http/inventory/admin/payloads.ts","../src/http/inventory/admin/queries.ts","../src/http/inventory/admin/responses.ts","../src/http/inventory-level/index.ts","../src/http/inventory-level/admin/entities.ts","../src/http/inventory-level/admin/index.ts","../src/http/inventory-level/admin/payloads.ts","../src/http/inventory-level/admin/queries.ts","../src/http/inventory-level/admin/responses.ts","../src/http/invite/index.ts","../src/http/invite/admin/entities.ts","../src/http/invite/admin/index.ts","../src/http/invite/admin/payloads.ts","../src/http/invite/admin/queries.ts","../src/http/invite/admin/responses.ts","../src/http/locale/common.ts","../src/http/locale/index.ts","../src/http/locale/admin/entities.ts","../src/http/locale/admin/index.ts","../src/http/locale/admin/queries.ts","../src/http/locale/admin/responses.ts","../src/http/notification/index.ts","../src/http/notification/admin/entities.ts","../src/http/notification/admin/index.ts","../src/http/notification/admin/queries.ts","../src/http/notification/admin/responses.ts","../src/http/order/common.ts","../src/http/order/index.ts","../src/http/order/admin/entities.ts","../src/http/order/admin/index.ts","../src/http/order/admin/payload.ts","../src/http/order/admin/queries.ts","../src/http/order/admin/responses.ts","../src/http/order/store/entities.ts","../src/http/order/store/index.ts","../src/http/order/store/payloads.ts","../src/http/order/store/queries.ts","../src/http/order/store/responses.ts","../src/http/order-edit/common.ts","../src/http/order-edit/index.ts","../src/http/order-edit/admin/index.ts","../src/http/order-edit/admin/payloads.ts","../src/http/order-edit/admin/responses.ts","../src/http/payment/common.ts","../src/http/payment/index.ts","../src/http/payment/admin/entities.ts","../src/http/payment/admin/index.ts","../src/http/payment/admin/payloads.ts","../src/http/payment/admin/queries.ts","../src/http/payment/admin/responses.ts","../src/http/payment/store/entities.ts","../src/http/payment/store/index.ts","../src/http/payment/store/payloads.ts","../src/http/payment/store/queries.ts","../src/http/payment/store/responses.ts","../src/http/plugins/index.ts","../src/http/plugins/admin/responses.ts","../src/http/price-list/index.ts","../src/http/price-list/admin/entities.ts","../src/http/price-list/admin/index.ts","../src/http/price-list/admin/payloads.ts","../src/http/price-list/admin/queries.ts","../src/http/price-list/admin/responses.ts","../src/http/pricing/common.ts","../src/http/pricing/index.ts","../src/http/pricing/admin/entities.ts","../src/http/pricing/admin/index.ts","../src/http/pricing/admin/payloads.ts","../src/http/pricing/admin/queries.ts","../src/http/pricing/admin/responses.ts","../src/http/pricing/store/entities.ts","../src/http/pricing/store/index.ts","../src/http/product/common.ts","../src/http/product/index.ts","../src/http/product/admin/entitites.ts","../src/http/product/admin/index.ts","../src/http/product/admin/payloads.ts","../src/http/product/admin/queries.ts","../src/http/product/admin/responses.ts","../src/http/product/store/entitites.ts","../src/http/product/store/index.ts","../src/http/product/store/queries.ts","../src/http/product/store/responses.ts","../src/http/product-category/common.ts","../src/http/product-category/index.ts","../src/http/product-category/admin/entities.ts","../src/http/product-category/admin/index.ts","../src/http/product-category/admin/payloads.ts","../src/http/product-category/admin/queries.ts","../src/http/product-category/admin/responses.ts","../src/http/product-category/store/entities.ts","../src/http/product-category/store/index.ts","../src/http/product-category/store/queries.ts","../src/http/product-category/store/responses.ts","../src/http/product-tag/common.ts","../src/http/product-tag/index.ts","../src/http/product-tag/admin/entities.ts","../src/http/product-tag/admin/index.ts","../src/http/product-tag/admin/payloads.ts","../src/http/product-tag/admin/queries.ts","../src/http/product-tag/admin/responses.ts","../src/http/product-tag/store/entities.ts","../src/http/product-tag/store/index.ts","../src/http/product-tag/store/queries.ts","../src/http/product-tag/store/responses.ts","../src/http/product-type/common.ts","../src/http/product-type/index.ts","../src/http/product-type/admin/entities.ts","../src/http/product-type/admin/index.ts","../src/http/product-type/admin/payloads.ts","../src/http/product-type/admin/queries.ts","../src/http/product-type/admin/responses.ts","../src/http/product-type/store/entities.ts","../src/http/product-type/store/index.ts","../src/http/product-type/store/queries.ts","../src/http/product-type/store/responses.ts","../src/http/promotion/common.ts","../src/http/promotion/index.ts","../src/http/promotion/store.ts","../src/http/promotion/admin/entities.ts","../src/http/promotion/admin/index.ts","../src/http/promotion/admin/payloads.ts","../src/http/promotion/admin/queries.ts","../src/http/promotion/admin/responses.ts","../src/http/refund-reason/common.ts","../src/http/refund-reason/index.ts","../src/http/refund-reason/admin/entities.ts","../src/http/refund-reason/admin/index.ts","../src/http/refund-reason/admin/payloads.ts","../src/http/refund-reason/admin/queries.ts","../src/http/refund-reason/admin/responses.ts","../src/http/region/common.ts","../src/http/region/index.ts","../src/http/region/admin/entities.ts","../src/http/region/admin/index.ts","../src/http/region/admin/payloads.ts","../src/http/region/admin/queries.ts","../src/http/region/admin/responses.ts","../src/http/region/store/entities.ts","../src/http/region/store/index.ts","../src/http/region/store/queries.ts","../src/http/region/store/responses.ts","../src/http/reservation/index.ts","../src/http/reservation/admin/entities.ts","../src/http/reservation/admin/index.ts","../src/http/reservation/admin/payloads.ts","../src/http/reservation/admin/queries.ts","../src/http/reservation/admin/responses.ts","../src/http/return/common.ts","../src/http/return/index.ts","../src/http/return/admin/entities.ts","../src/http/return/admin/index.ts","../src/http/return/admin/payloads.ts","../src/http/return/admin/queries.ts","../src/http/return/admin/responses.ts","../src/http/return/store/entities.ts","../src/http/return/store/index.ts","../src/http/return/store/payloads.ts","../src/http/return/store/responses.ts","../src/http/return-reason/common.ts","../src/http/return-reason/index.ts","../src/http/return-reason/admin/entities.ts","../src/http/return-reason/admin/index.ts","../src/http/return-reason/admin/payloads.ts","../src/http/return-reason/admin/queries.ts","../src/http/return-reason/admin/responses.ts","../src/http/return-reason/store/entities.ts","../src/http/return-reason/store/index.ts","../src/http/return-reason/store/responses.ts","../src/http/sales-channel/index.ts","../src/http/sales-channel/admin/entities.ts","../src/http/sales-channel/admin/index.ts","../src/http/sales-channel/admin/payloads.ts","../src/http/sales-channel/admin/queries.ts","../src/http/sales-channel/admin/responses.ts","../src/http/shipping-option/index.ts","../src/http/shipping-option/admin/entities.ts","../src/http/shipping-option/admin/index.ts","../src/http/shipping-option/admin/payloads.ts","../src/http/shipping-option/admin/queries.ts","../src/http/shipping-option/admin/responses.ts","../src/http/shipping-option/store/entities.ts","../src/http/shipping-option/store/index.ts","../src/http/shipping-option/store/payloads.ts","../src/http/shipping-option/store/queries.ts","../src/http/shipping-option/store/responses.ts","../src/http/shipping-profile/index.ts","../src/http/shipping-profile/admin/entities.ts","../src/http/shipping-profile/admin/index.ts","../src/http/shipping-profile/admin/payloads.ts","../src/http/shipping-profile/admin/queries.ts","../src/http/shipping-profile/admin/responses.ts","../src/http/stock-locations/index.ts","../src/http/stock-locations/admin/entities.ts","../src/http/stock-locations/admin/index.ts","../src/http/stock-locations/admin/payloads.ts","../src/http/stock-locations/admin/queries.ts","../src/http/stock-locations/admin/responses.ts","../src/http/store/index.ts","../src/http/store/admin/entities.ts","../src/http/store/admin/index.ts","../src/http/store/admin/payloads.ts","../src/http/store/admin/queries.ts","../src/http/store/admin/responses.ts","../src/http/tax-provider/index.ts","../src/http/tax-provider/admin/entities.ts","../src/http/tax-provider/admin/index.ts","../src/http/tax-provider/admin/queries.ts","../src/http/tax-provider/admin/responses.ts","../src/http/tax-rate/index.ts","../src/http/tax-rate/admin/entities.ts","../src/http/tax-rate/admin/index.ts","../src/http/tax-rate/admin/payloads.ts","../src/http/tax-rate/admin/queries.ts","../src/http/tax-rate/admin/responses.ts","../src/http/tax-region/index.ts","../src/http/tax-region/admin/entities.ts","../src/http/tax-region/admin/index.ts","../src/http/tax-region/admin/payloads.ts","../src/http/tax-region/admin/queries.ts","../src/http/tax-region/admin/responses.ts","../src/http/translations/index.ts","../src/http/translations/admin/entities.ts","../src/http/translations/admin/index.ts","../src/http/translations/admin/payloads.ts","../src/http/translations/admin/queries.ts","../src/http/translations/admin/responses.ts","../src/http/user/index.ts","../src/http/user/admin/entities.ts","../src/http/user/admin/index.ts","../src/http/user/admin/payloads.ts","../src/http/user/admin/queries.ts","../src/http/user/admin/responses.ts","../src/http/view-configuration/index.ts","../src/http/view-configuration/admin/columns.ts","../src/http/view-configuration/admin/index.ts","../src/http/view-configuration/admin/payloads.ts","../src/http/view-configuration/admin/queries.ts","../src/http/view-configuration/admin/responses.ts","../src/http/workflow-execution/index.ts","../src/http/workflow-execution/admin/entities.ts","../src/http/workflow-execution/admin/index.ts","../src/http/workflow-execution/admin/queries.ts","../src/http/workflow-execution/admin/responses.ts","../src/index-data/common.ts","../src/index-data/index-operator-map.ts","../src/index-data/index-service-entry-points.ts","../src/index-data/index.ts","../src/index-data/service.ts","../src/index-data/storage-provider.ts","../src/index-data/__fixtures__/index-service-entry-points.ts","../src/index-data/__tests__/index.spec.ts","../src/index-data/query-config/common.ts","../src/index-data/query-config/index.ts","../src/index-data/query-config/query-input-config-fields.ts","../src/index-data/query-config/query-input-config-filters.ts","../src/index-data/query-config/query-input-config-order-by.ts","../src/index-data/query-config/query-input-config.ts","../src/inventory/index.ts","../src/inventory/service.ts","../src/inventory/common/index.ts","../src/inventory/common/inventory-item.ts","../src/inventory/common/inventory-level.ts","../src/inventory/common/reservation-item.ts","../src/inventory/mutations/index.ts","../src/inventory/mutations/inventory-item.ts","../src/inventory/mutations/inventory-level.ts","../src/inventory/mutations/reservation-item.ts","../src/joiner/index.ts","../src/link-modules/index.ts","../src/link-modules/migrations.ts","../src/link-modules/service.ts","../src/locking/index.ts","../src/logger/index.ts","../src/modules-sdk/index.ts","../src/modules-sdk/medusa-internal-service.ts","../src/modules-sdk/module-provider.ts","../src/modules-sdk/object-to-remote-query-fields.ts","../src/modules-sdk/remote-query-entry-points.ts","../src/modules-sdk/remote-query-object-from-string.ts","../src/modules-sdk/remote-query.ts","../src/modules-sdk/to-remote-query.ts","../src/modules-sdk/__fixtures__/remote-query.ts","../src/modules-sdk/__tests__/object-to-remote-query-fields.spec.ts","../src/modules-sdk/__tests__/query.spec.ts","../src/modules-sdk/__tests__/remote-query.spec.ts","../src/notification/common.ts","../src/notification/index.ts","../src/notification/mutations.ts","../src/notification/provider.ts","../src/notification/service.ts","../src/notification/providers/index.ts","../src/notification/providers/logger.ts","../src/notification/providers/sendgrid.ts","../src/order/common.ts","../src/order/index.ts","../src/order/mutations.ts","../src/order/service.ts","../src/order/workflows.ts","../src/payment/common.ts","../src/payment/index.ts","../src/payment/mutations.ts","../src/payment/provider.ts","../src/payment/service.ts","../src/pricing/index.ts","../src/pricing/service.ts","../src/pricing/workflows.ts","../src/pricing/common/index.ts","../src/pricing/common/money-amount.ts","../src/pricing/common/price-list.ts","../src/pricing/common/price-preference.ts","../src/pricing/common/price-rule.ts","../src/pricing/common/price-set.ts","../src/pricing/common/price.ts","../src/pricing/common/pricing-context.ts","../src/product/common.ts","../src/product/index.ts","../src/product/service.ts","../src/product-category/index.ts","../src/product-category/repository.ts","../src/promotion/http.ts","../src/promotion/index.ts","../src/promotion/mutations.ts","../src/promotion/service.ts","../src/promotion/workflows.ts","../src/promotion/common/application-method.ts","../src/promotion/common/campaign-budget.ts","../src/promotion/common/campaign.ts","../src/promotion/common/campaing-budget-usage.ts","../src/promotion/common/compute-actions.ts","../src/promotion/common/index.ts","../src/promotion/common/promotion-rule-value.ts","../src/promotion/common/promotion-rule.ts","../src/promotion/common/promotion.ts","../src/region/common.ts","../src/region/index.ts","../src/region/mutations.ts","../src/region/service.ts","../src/sales-channel/common.ts","../src/sales-channel/index.ts","../src/sales-channel/mutations.ts","../src/sales-channel/service.ts","../src/search/index.ts","../src/search/interface.ts","../src/search/settings.ts","../src/settings/common.ts","../src/settings/index.ts","../src/settings/mutations.ts","../src/settings/service.ts","../src/stock-location/common.ts","../src/stock-location/index.ts","../src/stock-location/service.ts","../src/store/index.ts","../src/store/service.ts","../src/store/common/index.ts","../src/store/common/store.ts","../src/store/mutations/index.ts","../src/store/mutations/store.ts","../src/tax/common.ts","../src/tax/index.ts","../src/tax/mutations.ts","../src/tax/provider.ts","../src/tax/service.ts","../src/totals/big-number.ts","../src/totals/index.ts","../src/transaction-base/index.ts","../src/transaction-base/transaction-base.ts","../src/translation/common.ts","../src/translation/index.ts","../src/translation/mutations.ts","../src/translation/service.ts","../src/user/common.ts","../src/user/index.ts","../src/user/mutations.ts","../src/user/service.ts","../src/workflow/common.ts","../src/workflow/index.ts","../src/workflow/cart/create-cart.ts","../src/workflow/cart/index.ts","../src/workflow/fulfillment/calculate-shipping-options-prices.ts","../src/workflow/fulfillment/create-fulfillment.ts","../src/workflow/fulfillment/create-shipment.ts","../src/workflow/fulfillment/create-shipping-options.ts","../src/workflow/fulfillment/delete-shipping-options.ts","../src/workflow/fulfillment/index.ts","../src/workflow/fulfillment/service-zones.ts","../src/workflow/fulfillment/shipping-profiles.ts","../src/workflow/fulfillment/update-fulfillment.ts","../src/workflow/fulfillment/update-shipping-options.ts","../src/workflow/inventory/create-inventory-items.ts","../src/workflow/inventory/index.ts","../src/workflow/invite/accept-invite.ts","../src/workflow/invite/create-invite.ts","../src/workflow/invite/delete-invite.ts","../src/workflow/invite/index.ts","../src/workflow/invite/resend-invite.ts","../src/workflow/order/accept-transfer.ts","../src/workflow/order/begin-claim-order.ts","../src/workflow/order/begin-exchange-order.ts","../src/workflow/order/begin-order-edit.ts","../src/workflow/order/begin-return-order.ts","../src/workflow/order/cancel-claim.ts","../src/workflow/order/cancel-exchange.ts","../src/workflow/order/cancel-fulfillment.ts","../src/workflow/order/cancel-order.ts","../src/workflow/order/cancel-return.ts","../src/workflow/order/cancel-transfer.ts","../src/workflow/order/create-fulfillment.ts","../src/workflow/order/create-return-order.ts","../src/workflow/order/create-shipment.ts","../src/workflow/order/decline-transfer.ts","../src/workflow/order/index.ts","../src/workflow/order/items.ts","../src/workflow/order/receive-return.ts","../src/workflow/order/request-item-return.ts","../src/workflow/order/request-transfer.ts","../src/workflow/order/shipping-method.ts","../src/workflow/order/update-order.ts","../src/workflow/order/update-return.ts","../src/workflow/price-list/create-price-list.ts","../src/workflow/price-list/index.ts","../src/workflow/price-list/remove-price-list.ts","../src/workflow/pricing/index.ts","../src/workflow/product/create-product-variants.ts","../src/workflow/product/create-products.ts","../src/workflow/product/export-products.ts","../src/workflow/product/import-products.ts","../src/workflow/product/index.ts","../src/workflow/product/update-product-variants.ts","../src/workflow/product/update-products.ts","../src/workflow/product-category/index.ts","../src/workflow/region/create-regions.ts","../src/workflow/region/index.ts","../src/workflow/region/update-regions.ts","../src/workflow/reservation/create-reservations.ts","../src/workflow/reservation/index.ts","../src/workflow/reservation/update-reservations.ts","../src/workflow/store/index.ts","../src/workflow/user/create-user.ts","../src/workflow/user/delete-user.ts","../src/workflow/user/index.ts","../src/workflow/user/update-user.ts","../src/workflows/index.ts","../src/workflows/products/index.ts","../src/workflows/products/mutations.ts","../src/workflows/stock-locations/index.ts","../src/workflows/stock-locations/mutations.ts","../src/workflows-sdk/common.ts","../src/workflows-sdk/index.ts","../src/workflows-sdk/mutations.ts","../src/workflows-sdk/service.ts"],"version":"5.9.3"}
1
+ {"root":["../src/bundles.ts","../src/index.ts","../src/shared-context.ts","../src/address/common.ts","../src/address/index.ts","../src/admin/extensions.ts","../src/admin/index.ts","../src/analytics/index.ts","../src/analytics/mutations.ts","../src/analytics/provider.ts","../src/analytics/service.ts","../src/analytics/providers/index.ts","../src/analytics/providers/local.ts","../src/analytics/providers/posthog.ts","../src/api-key/index.ts","../src/api-key/service.ts","../src/api-key/common/api-key.ts","../src/api-key/common/index.ts","../src/api-key/mutations/api-key.ts","../src/api-key/mutations/index.ts","../src/auth/index.ts","../src/auth/provider.ts","../src/auth/service.ts","../src/auth/common/auth-identity.ts","../src/auth/common/index.ts","../src/auth/common/provider.ts","../src/auth/providers/emailpass.ts","../src/auth/providers/github.ts","../src/auth/providers/google.ts","../src/auth/providers/index.ts","../src/cache/index.ts","../src/cache/service.ts","../src/caching/index.ts","../src/cart/common.ts","../src/cart/index.ts","../src/cart/mutations.ts","../src/cart/service.ts","../src/cart/workflows.ts","../src/common/batch.ts","../src/common/camel-case.ts","../src/common/common.ts","../src/common/config-file.ts","../src/common/config-module.ts","../src/common/index.ts","../src/common/medusa-cli.ts","../src/common/medusa-container.ts","../src/common/rule.ts","../src/common/with-calculated.ts","../src/common/__tests__/pluralize.spec.ts","../src/currency/index.ts","../src/currency/service.ts","../src/currency/common/currency.ts","../src/currency/common/index.ts","../src/customer/common.ts","../src/customer/index.ts","../src/customer/mutations.ts","../src/customer/service.ts","../src/dal/entity.ts","../src/dal/index.ts","../src/dal/repository-service.ts","../src/dal/utils.ts","../src/dml/index.ts","../src/event-bus/common.ts","../src/event-bus/event-bus-module.ts","../src/event-bus/event-bus.ts","../src/event-bus/index.ts","../src/feature-flag/common.ts","../src/feature-flag/index.ts","../src/file/common.ts","../src/file/index.ts","../src/file/mutations.ts","../src/file/provider.ts","../src/file/service.ts","../src/file/providers/index.ts","../src/file/providers/local.ts","../src/file/providers/s3.ts","../src/file-service/index.ts","../src/fulfillment/index.ts","../src/fulfillment/provider.ts","../src/fulfillment/service.ts","../src/fulfillment/workflows.ts","../src/fulfillment/common/address.ts","../src/fulfillment/common/cart.ts","../src/fulfillment/common/fulfillment-item.ts","../src/fulfillment/common/fulfillment-label.ts","../src/fulfillment/common/fulfillment-provider.ts","../src/fulfillment/common/fulfillment-set.ts","../src/fulfillment/common/fulfillment.ts","../src/fulfillment/common/geo-zone.ts","../src/fulfillment/common/index.ts","../src/fulfillment/common/order.ts","../src/fulfillment/common/service-zone.ts","../src/fulfillment/common/shipping-option-rule.ts","../src/fulfillment/common/shipping-option-type.ts","../src/fulfillment/common/shipping-option.ts","../src/fulfillment/common/shipping-profile.ts","../src/fulfillment/mutations/fulfillment-address.ts","../src/fulfillment/mutations/fulfillment-item.ts","../src/fulfillment/mutations/fulfillment-label.ts","../src/fulfillment/mutations/fulfillment-set.ts","../src/fulfillment/mutations/fulfillment.ts","../src/fulfillment/mutations/geo-zone.ts","../src/fulfillment/mutations/index.ts","../src/fulfillment/mutations/service-zone.ts","../src/fulfillment/mutations/shipping-option-rule.ts","../src/fulfillment/mutations/shipping-option-type.ts","../src/fulfillment/mutations/shipping-option.ts","../src/fulfillment/mutations/shipping-profile.ts","../src/http/index.ts","../src/http/address/entities.ts","../src/http/address/index.ts","../src/http/api-key/index.ts","../src/http/api-key/admin/index.ts","../src/http/api-key/admin/payloads.ts","../src/http/api-key/admin/queries.ts","../src/http/api-key/admin/responses.ts","../src/http/auth/index.ts","../src/http/auth/payloads.ts","../src/http/campaign/index.ts","../src/http/campaign/admin/index.ts","../src/http/campaign/admin/payloads.ts","../src/http/campaign/admin/queries.ts","../src/http/campaign/admin/responses.ts","../src/http/cart/common.ts","../src/http/cart/index.ts","../src/http/cart/store/entities.ts","../src/http/cart/store/index.ts","../src/http/cart/store/payloads.ts","../src/http/cart/store/responses.ts","../src/http/claim/common.ts","../src/http/claim/index.ts","../src/http/claim/admin/entities.ts","../src/http/claim/admin/index.ts","../src/http/claim/admin/payloads.ts","../src/http/claim/admin/queries.ts","../src/http/claim/admin/responses.ts","../src/http/collection/common.ts","../src/http/collection/index.ts","../src/http/collection/admin/entities.ts","../src/http/collection/admin/index.ts","../src/http/collection/admin/payloads.ts","../src/http/collection/admin/queries.ts","../src/http/collection/admin/responses.ts","../src/http/collection/store/entities.ts","../src/http/collection/store/index.ts","../src/http/collection/store/queries.ts","../src/http/collection/store/responses.ts","../src/http/common/additional_data.ts","../src/http/common/index.ts","../src/http/common/request.ts","../src/http/common/response.ts","../src/http/currency/common.ts","../src/http/currency/index.ts","../src/http/currency/admin/entities.ts","../src/http/currency/admin/index.ts","../src/http/currency/admin/queries.ts","../src/http/currency/admin/responses.ts","../src/http/currency/store/entities.ts","../src/http/currency/store/index.ts","../src/http/currency/store/queries.ts","../src/http/currency/store/responses.ts","../src/http/customer/common.ts","../src/http/customer/index.ts","../src/http/customer/admin/entities.ts","../src/http/customer/admin/index.ts","../src/http/customer/admin/payloads.ts","../src/http/customer/admin/queries.ts","../src/http/customer/admin/responses.ts","../src/http/customer/store/entities.ts","../src/http/customer/store/index.ts","../src/http/customer/store/payloads.ts","../src/http/customer/store/queries.ts","../src/http/customer/store/responses.ts","../src/http/customer-group/common.ts","../src/http/customer-group/index.ts","../src/http/customer-group/admin/entities.ts","../src/http/customer-group/admin/index.ts","../src/http/customer-group/admin/payloads.ts","../src/http/customer-group/admin/queries.ts","../src/http/customer-group/admin/responses.ts","../src/http/draft-order/index.ts","../src/http/draft-order/admin/entities.ts","../src/http/draft-order/admin/index.ts","../src/http/draft-order/admin/payloads.ts","../src/http/draft-order/admin/queries.ts","../src/http/draft-order/admin/responses.ts","../src/http/exchange/common.ts","../src/http/exchange/index.ts","../src/http/exchange/admin/entities.ts","../src/http/exchange/admin/index.ts","../src/http/exchange/admin/payloads.ts","../src/http/exchange/admin/queries.ts","../src/http/exchange/admin/responses.ts","../src/http/file/common.ts","../src/http/file/index.ts","../src/http/file/store.ts","../src/http/file/admin/entities.ts","../src/http/file/admin/index.ts","../src/http/file/admin/payloads.ts","../src/http/file/admin/responses.ts","../src/http/fulfillment/index.ts","../src/http/fulfillment/admin/entitites.ts","../src/http/fulfillment/admin/index.ts","../src/http/fulfillment/admin/payloads.ts","../src/http/fulfillment/admin/responses.ts","../src/http/fulfillment/store/index.ts","../src/http/fulfillment-provider/common.ts","../src/http/fulfillment-provider/index.ts","../src/http/fulfillment-provider/admin/entities.ts","../src/http/fulfillment-provider/admin/index.ts","../src/http/fulfillment-provider/admin/queries.ts","../src/http/fulfillment-provider/admin/responses.ts","../src/http/fulfillment-set/index.ts","../src/http/fulfillment-set/admin/entities.ts","../src/http/fulfillment-set/admin/index.ts","../src/http/fulfillment-set/admin/payloads.ts","../src/http/fulfillment-set/admin/queries.ts","../src/http/fulfillment-set/admin/responses.ts","../src/http/index/index.ts","../src/http/index/admin/payload.ts","../src/http/index/admin/responses.ts","../src/http/inventory/index.ts","../src/http/inventory/admin/entities.ts","../src/http/inventory/admin/index.ts","../src/http/inventory/admin/payloads.ts","../src/http/inventory/admin/queries.ts","../src/http/inventory/admin/responses.ts","../src/http/inventory-level/index.ts","../src/http/inventory-level/admin/entities.ts","../src/http/inventory-level/admin/index.ts","../src/http/inventory-level/admin/payloads.ts","../src/http/inventory-level/admin/queries.ts","../src/http/inventory-level/admin/responses.ts","../src/http/invite/index.ts","../src/http/invite/admin/entities.ts","../src/http/invite/admin/index.ts","../src/http/invite/admin/payloads.ts","../src/http/invite/admin/queries.ts","../src/http/invite/admin/responses.ts","../src/http/locale/common.ts","../src/http/locale/index.ts","../src/http/locale/admin/entities.ts","../src/http/locale/admin/index.ts","../src/http/locale/admin/queries.ts","../src/http/locale/admin/responses.ts","../src/http/locale/store/entities.ts","../src/http/locale/store/index.ts","../src/http/locale/store/responses.ts","../src/http/notification/index.ts","../src/http/notification/admin/entities.ts","../src/http/notification/admin/index.ts","../src/http/notification/admin/queries.ts","../src/http/notification/admin/responses.ts","../src/http/order/common.ts","../src/http/order/index.ts","../src/http/order/admin/entities.ts","../src/http/order/admin/index.ts","../src/http/order/admin/payload.ts","../src/http/order/admin/queries.ts","../src/http/order/admin/responses.ts","../src/http/order/store/entities.ts","../src/http/order/store/index.ts","../src/http/order/store/payloads.ts","../src/http/order/store/queries.ts","../src/http/order/store/responses.ts","../src/http/order-edit/common.ts","../src/http/order-edit/index.ts","../src/http/order-edit/admin/index.ts","../src/http/order-edit/admin/payloads.ts","../src/http/order-edit/admin/responses.ts","../src/http/payment/common.ts","../src/http/payment/index.ts","../src/http/payment/admin/entities.ts","../src/http/payment/admin/index.ts","../src/http/payment/admin/payloads.ts","../src/http/payment/admin/queries.ts","../src/http/payment/admin/responses.ts","../src/http/payment/store/entities.ts","../src/http/payment/store/index.ts","../src/http/payment/store/payloads.ts","../src/http/payment/store/queries.ts","../src/http/payment/store/responses.ts","../src/http/plugins/index.ts","../src/http/plugins/admin/responses.ts","../src/http/price-list/index.ts","../src/http/price-list/admin/entities.ts","../src/http/price-list/admin/index.ts","../src/http/price-list/admin/payloads.ts","../src/http/price-list/admin/queries.ts","../src/http/price-list/admin/responses.ts","../src/http/pricing/common.ts","../src/http/pricing/index.ts","../src/http/pricing/admin/entities.ts","../src/http/pricing/admin/index.ts","../src/http/pricing/admin/payloads.ts","../src/http/pricing/admin/queries.ts","../src/http/pricing/admin/responses.ts","../src/http/pricing/store/entities.ts","../src/http/pricing/store/index.ts","../src/http/product/common.ts","../src/http/product/index.ts","../src/http/product/admin/entitites.ts","../src/http/product/admin/index.ts","../src/http/product/admin/payloads.ts","../src/http/product/admin/queries.ts","../src/http/product/admin/responses.ts","../src/http/product/store/entitites.ts","../src/http/product/store/index.ts","../src/http/product/store/queries.ts","../src/http/product/store/responses.ts","../src/http/product-category/common.ts","../src/http/product-category/index.ts","../src/http/product-category/admin/entities.ts","../src/http/product-category/admin/index.ts","../src/http/product-category/admin/payloads.ts","../src/http/product-category/admin/queries.ts","../src/http/product-category/admin/responses.ts","../src/http/product-category/store/entities.ts","../src/http/product-category/store/index.ts","../src/http/product-category/store/queries.ts","../src/http/product-category/store/responses.ts","../src/http/product-tag/common.ts","../src/http/product-tag/index.ts","../src/http/product-tag/admin/entities.ts","../src/http/product-tag/admin/index.ts","../src/http/product-tag/admin/payloads.ts","../src/http/product-tag/admin/queries.ts","../src/http/product-tag/admin/responses.ts","../src/http/product-tag/store/entities.ts","../src/http/product-tag/store/index.ts","../src/http/product-tag/store/queries.ts","../src/http/product-tag/store/responses.ts","../src/http/product-type/common.ts","../src/http/product-type/index.ts","../src/http/product-type/admin/entities.ts","../src/http/product-type/admin/index.ts","../src/http/product-type/admin/payloads.ts","../src/http/product-type/admin/queries.ts","../src/http/product-type/admin/responses.ts","../src/http/product-type/store/entities.ts","../src/http/product-type/store/index.ts","../src/http/product-type/store/queries.ts","../src/http/product-type/store/responses.ts","../src/http/promotion/common.ts","../src/http/promotion/index.ts","../src/http/promotion/store.ts","../src/http/promotion/admin/entities.ts","../src/http/promotion/admin/index.ts","../src/http/promotion/admin/payloads.ts","../src/http/promotion/admin/queries.ts","../src/http/promotion/admin/responses.ts","../src/http/refund-reason/common.ts","../src/http/refund-reason/index.ts","../src/http/refund-reason/admin/entities.ts","../src/http/refund-reason/admin/index.ts","../src/http/refund-reason/admin/payloads.ts","../src/http/refund-reason/admin/queries.ts","../src/http/refund-reason/admin/responses.ts","../src/http/region/common.ts","../src/http/region/index.ts","../src/http/region/admin/entities.ts","../src/http/region/admin/index.ts","../src/http/region/admin/payloads.ts","../src/http/region/admin/queries.ts","../src/http/region/admin/responses.ts","../src/http/region/store/entities.ts","../src/http/region/store/index.ts","../src/http/region/store/queries.ts","../src/http/region/store/responses.ts","../src/http/reservation/index.ts","../src/http/reservation/admin/entities.ts","../src/http/reservation/admin/index.ts","../src/http/reservation/admin/payloads.ts","../src/http/reservation/admin/queries.ts","../src/http/reservation/admin/responses.ts","../src/http/return/common.ts","../src/http/return/index.ts","../src/http/return/admin/entities.ts","../src/http/return/admin/index.ts","../src/http/return/admin/payloads.ts","../src/http/return/admin/queries.ts","../src/http/return/admin/responses.ts","../src/http/return/store/entities.ts","../src/http/return/store/index.ts","../src/http/return/store/payloads.ts","../src/http/return/store/responses.ts","../src/http/return-reason/common.ts","../src/http/return-reason/index.ts","../src/http/return-reason/admin/entities.ts","../src/http/return-reason/admin/index.ts","../src/http/return-reason/admin/payloads.ts","../src/http/return-reason/admin/queries.ts","../src/http/return-reason/admin/responses.ts","../src/http/return-reason/store/entities.ts","../src/http/return-reason/store/index.ts","../src/http/return-reason/store/responses.ts","../src/http/sales-channel/index.ts","../src/http/sales-channel/admin/entities.ts","../src/http/sales-channel/admin/index.ts","../src/http/sales-channel/admin/payloads.ts","../src/http/sales-channel/admin/queries.ts","../src/http/sales-channel/admin/responses.ts","../src/http/shipping-option/index.ts","../src/http/shipping-option/admin/entities.ts","../src/http/shipping-option/admin/index.ts","../src/http/shipping-option/admin/payloads.ts","../src/http/shipping-option/admin/queries.ts","../src/http/shipping-option/admin/responses.ts","../src/http/shipping-option/store/entities.ts","../src/http/shipping-option/store/index.ts","../src/http/shipping-option/store/payloads.ts","../src/http/shipping-option/store/queries.ts","../src/http/shipping-option/store/responses.ts","../src/http/shipping-profile/index.ts","../src/http/shipping-profile/admin/entities.ts","../src/http/shipping-profile/admin/index.ts","../src/http/shipping-profile/admin/payloads.ts","../src/http/shipping-profile/admin/queries.ts","../src/http/shipping-profile/admin/responses.ts","../src/http/stock-locations/index.ts","../src/http/stock-locations/admin/entities.ts","../src/http/stock-locations/admin/index.ts","../src/http/stock-locations/admin/payloads.ts","../src/http/stock-locations/admin/queries.ts","../src/http/stock-locations/admin/responses.ts","../src/http/store/index.ts","../src/http/store/admin/entities.ts","../src/http/store/admin/index.ts","../src/http/store/admin/payloads.ts","../src/http/store/admin/queries.ts","../src/http/store/admin/responses.ts","../src/http/tax-provider/index.ts","../src/http/tax-provider/admin/entities.ts","../src/http/tax-provider/admin/index.ts","../src/http/tax-provider/admin/queries.ts","../src/http/tax-provider/admin/responses.ts","../src/http/tax-rate/index.ts","../src/http/tax-rate/admin/entities.ts","../src/http/tax-rate/admin/index.ts","../src/http/tax-rate/admin/payloads.ts","../src/http/tax-rate/admin/queries.ts","../src/http/tax-rate/admin/responses.ts","../src/http/tax-region/index.ts","../src/http/tax-region/admin/entities.ts","../src/http/tax-region/admin/index.ts","../src/http/tax-region/admin/payloads.ts","../src/http/tax-region/admin/queries.ts","../src/http/tax-region/admin/responses.ts","../src/http/translations/index.ts","../src/http/translations/admin/entities.ts","../src/http/translations/admin/index.ts","../src/http/translations/admin/payloads.ts","../src/http/translations/admin/queries.ts","../src/http/translations/admin/responses.ts","../src/http/user/index.ts","../src/http/user/admin/entities.ts","../src/http/user/admin/index.ts","../src/http/user/admin/payloads.ts","../src/http/user/admin/queries.ts","../src/http/user/admin/responses.ts","../src/http/view-configuration/index.ts","../src/http/view-configuration/admin/columns.ts","../src/http/view-configuration/admin/index.ts","../src/http/view-configuration/admin/payloads.ts","../src/http/view-configuration/admin/queries.ts","../src/http/view-configuration/admin/responses.ts","../src/http/workflow-execution/index.ts","../src/http/workflow-execution/admin/entities.ts","../src/http/workflow-execution/admin/index.ts","../src/http/workflow-execution/admin/queries.ts","../src/http/workflow-execution/admin/responses.ts","../src/index-data/common.ts","../src/index-data/index-operator-map.ts","../src/index-data/index-service-entry-points.ts","../src/index-data/index.ts","../src/index-data/service.ts","../src/index-data/storage-provider.ts","../src/index-data/__fixtures__/index-service-entry-points.ts","../src/index-data/__tests__/index.spec.ts","../src/index-data/query-config/common.ts","../src/index-data/query-config/index.ts","../src/index-data/query-config/query-input-config-fields.ts","../src/index-data/query-config/query-input-config-filters.ts","../src/index-data/query-config/query-input-config-order-by.ts","../src/index-data/query-config/query-input-config.ts","../src/inventory/index.ts","../src/inventory/service.ts","../src/inventory/common/index.ts","../src/inventory/common/inventory-item.ts","../src/inventory/common/inventory-level.ts","../src/inventory/common/reservation-item.ts","../src/inventory/mutations/index.ts","../src/inventory/mutations/inventory-item.ts","../src/inventory/mutations/inventory-level.ts","../src/inventory/mutations/reservation-item.ts","../src/joiner/index.ts","../src/link-modules/index.ts","../src/link-modules/migrations.ts","../src/link-modules/service.ts","../src/locking/index.ts","../src/logger/index.ts","../src/modules-sdk/index.ts","../src/modules-sdk/medusa-internal-service.ts","../src/modules-sdk/module-provider.ts","../src/modules-sdk/object-to-remote-query-fields.ts","../src/modules-sdk/remote-query-entry-points.ts","../src/modules-sdk/remote-query-object-from-string.ts","../src/modules-sdk/remote-query.ts","../src/modules-sdk/to-remote-query.ts","../src/modules-sdk/__fixtures__/remote-query.ts","../src/modules-sdk/__tests__/object-to-remote-query-fields.spec.ts","../src/modules-sdk/__tests__/query.spec.ts","../src/modules-sdk/__tests__/remote-query.spec.ts","../src/notification/common.ts","../src/notification/index.ts","../src/notification/mutations.ts","../src/notification/provider.ts","../src/notification/service.ts","../src/notification/providers/index.ts","../src/notification/providers/logger.ts","../src/notification/providers/sendgrid.ts","../src/order/common.ts","../src/order/index.ts","../src/order/mutations.ts","../src/order/service.ts","../src/order/workflows.ts","../src/payment/common.ts","../src/payment/index.ts","../src/payment/mutations.ts","../src/payment/provider.ts","../src/payment/service.ts","../src/pricing/index.ts","../src/pricing/service.ts","../src/pricing/workflows.ts","../src/pricing/common/index.ts","../src/pricing/common/money-amount.ts","../src/pricing/common/price-list.ts","../src/pricing/common/price-preference.ts","../src/pricing/common/price-rule.ts","../src/pricing/common/price-set.ts","../src/pricing/common/price.ts","../src/pricing/common/pricing-context.ts","../src/product/common.ts","../src/product/index.ts","../src/product/service.ts","../src/product-category/index.ts","../src/product-category/repository.ts","../src/promotion/http.ts","../src/promotion/index.ts","../src/promotion/mutations.ts","../src/promotion/service.ts","../src/promotion/workflows.ts","../src/promotion/common/application-method.ts","../src/promotion/common/campaign-budget.ts","../src/promotion/common/campaign.ts","../src/promotion/common/campaing-budget-usage.ts","../src/promotion/common/compute-actions.ts","../src/promotion/common/index.ts","../src/promotion/common/promotion-rule-value.ts","../src/promotion/common/promotion-rule.ts","../src/promotion/common/promotion.ts","../src/region/common.ts","../src/region/index.ts","../src/region/mutations.ts","../src/region/service.ts","../src/sales-channel/common.ts","../src/sales-channel/index.ts","../src/sales-channel/mutations.ts","../src/sales-channel/service.ts","../src/search/index.ts","../src/search/interface.ts","../src/search/settings.ts","../src/settings/common.ts","../src/settings/index.ts","../src/settings/mutations.ts","../src/settings/service.ts","../src/stock-location/common.ts","../src/stock-location/index.ts","../src/stock-location/service.ts","../src/store/index.ts","../src/store/service.ts","../src/store/common/index.ts","../src/store/common/store.ts","../src/store/mutations/index.ts","../src/store/mutations/store.ts","../src/tax/common.ts","../src/tax/index.ts","../src/tax/mutations.ts","../src/tax/provider.ts","../src/tax/service.ts","../src/totals/big-number.ts","../src/totals/index.ts","../src/transaction-base/index.ts","../src/transaction-base/transaction-base.ts","../src/translation/common.ts","../src/translation/index.ts","../src/translation/mutations.ts","../src/translation/service.ts","../src/user/common.ts","../src/user/index.ts","../src/user/mutations.ts","../src/user/service.ts","../src/workflow/common.ts","../src/workflow/index.ts","../src/workflow/cart/create-cart.ts","../src/workflow/cart/index.ts","../src/workflow/fulfillment/calculate-shipping-options-prices.ts","../src/workflow/fulfillment/create-fulfillment.ts","../src/workflow/fulfillment/create-shipment.ts","../src/workflow/fulfillment/create-shipping-options.ts","../src/workflow/fulfillment/delete-shipping-options.ts","../src/workflow/fulfillment/index.ts","../src/workflow/fulfillment/service-zones.ts","../src/workflow/fulfillment/shipping-profiles.ts","../src/workflow/fulfillment/update-fulfillment.ts","../src/workflow/fulfillment/update-shipping-options.ts","../src/workflow/inventory/create-inventory-items.ts","../src/workflow/inventory/index.ts","../src/workflow/invite/accept-invite.ts","../src/workflow/invite/create-invite.ts","../src/workflow/invite/delete-invite.ts","../src/workflow/invite/index.ts","../src/workflow/invite/resend-invite.ts","../src/workflow/order/accept-transfer.ts","../src/workflow/order/begin-claim-order.ts","../src/workflow/order/begin-exchange-order.ts","../src/workflow/order/begin-order-edit.ts","../src/workflow/order/begin-return-order.ts","../src/workflow/order/cancel-claim.ts","../src/workflow/order/cancel-exchange.ts","../src/workflow/order/cancel-fulfillment.ts","../src/workflow/order/cancel-order.ts","../src/workflow/order/cancel-return.ts","../src/workflow/order/cancel-transfer.ts","../src/workflow/order/create-fulfillment.ts","../src/workflow/order/create-return-order.ts","../src/workflow/order/create-shipment.ts","../src/workflow/order/decline-transfer.ts","../src/workflow/order/index.ts","../src/workflow/order/items.ts","../src/workflow/order/receive-return.ts","../src/workflow/order/request-item-return.ts","../src/workflow/order/request-transfer.ts","../src/workflow/order/shipping-method.ts","../src/workflow/order/update-order.ts","../src/workflow/order/update-return.ts","../src/workflow/price-list/create-price-list.ts","../src/workflow/price-list/index.ts","../src/workflow/price-list/remove-price-list.ts","../src/workflow/pricing/index.ts","../src/workflow/product/create-product-variants.ts","../src/workflow/product/create-products.ts","../src/workflow/product/export-products.ts","../src/workflow/product/import-products.ts","../src/workflow/product/index.ts","../src/workflow/product/update-product-variants.ts","../src/workflow/product/update-products.ts","../src/workflow/product-category/index.ts","../src/workflow/region/create-regions.ts","../src/workflow/region/index.ts","../src/workflow/region/update-regions.ts","../src/workflow/reservation/create-reservations.ts","../src/workflow/reservation/index.ts","../src/workflow/reservation/update-reservations.ts","../src/workflow/store/index.ts","../src/workflow/user/create-user.ts","../src/workflow/user/delete-user.ts","../src/workflow/user/index.ts","../src/workflow/user/update-user.ts","../src/workflows/index.ts","../src/workflows/products/index.ts","../src/workflows/products/mutations.ts","../src/workflows/stock-locations/index.ts","../src/workflows/stock-locations/mutations.ts","../src/workflows-sdk/common.ts","../src/workflows-sdk/index.ts","../src/workflows-sdk/mutations.ts","../src/workflows-sdk/service.ts"],"version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/types",
3
- "version": "3.0.0-snapshot-20251215083939",
3
+ "version": "3.0.0-snapshot-20251216103925",
4
4
  "description": "Medusa Types definition",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "bignumber.js": "^9.1.2"
36
36
  },
37
37
  "devDependencies": {
38
- "@medusajs/deps": "3.0.0-snapshot-20251215083939"
38
+ "@medusajs/deps": "3.0.0-snapshot-20251216103925"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "ioredis": "^5.4.1",