@medusajs/js-sdk 2.0.1-snapshot-20241025090810 → 2.0.2-snapshot-20241104135243
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/admin/notification.d.ts +80 -0
- package/dist/admin/notification.d.ts.map +1 -1
- package/dist/admin/notification.js +80 -0
- package/dist/admin/notification.js.map +1 -1
- package/dist/admin/order-edit.d.ts +166 -1
- package/dist/admin/order-edit.d.ts.map +1 -1
- package/dist/admin/order-edit.js +165 -0
- package/dist/admin/order-edit.js.map +1 -1
- package/dist/admin/order.d.ts +248 -22
- package/dist/admin/order.d.ts.map +1 -1
- package/dist/admin/order.js +240 -0
- package/dist/admin/order.js.map +1 -1
- package/dist/admin/payment-collection.d.ts +55 -0
- package/dist/admin/payment-collection.d.ts.map +1 -1
- package/dist/admin/payment-collection.js +55 -0
- package/dist/admin/payment-collection.js.map +1 -1
- package/dist/admin/payment.d.ts +162 -1
- package/dist/admin/payment.d.ts.map +1 -1
- package/dist/admin/payment.js +161 -0
- package/dist/admin/payment.js.map +1 -1
- package/dist/admin/price-list.d.ts +195 -1
- package/dist/admin/price-list.d.ts.map +1 -1
- package/dist/admin/price-list.js +194 -0
- package/dist/admin/price-list.js.map +1 -1
- package/dist/admin/price-preference.d.ts +133 -0
- package/dist/admin/price-preference.d.ts.map +1 -1
- package/dist/admin/price-preference.js +133 -0
- package/dist/admin/price-preference.js.map +1 -1
- package/dist/admin/product-category.d.ts +150 -0
- package/dist/admin/product-category.d.ts.map +1 -1
- package/dist/admin/product-category.js +150 -0
- package/dist/admin/product-category.js.map +1 -1
- package/dist/admin/product-collection.d.ts +149 -0
- package/dist/admin/product-collection.d.ts.map +1 -1
- package/dist/admin/product-collection.js +149 -0
- package/dist/admin/product-collection.js.map +1 -1
- package/dist/esm/admin/notification.d.ts +80 -0
- package/dist/esm/admin/notification.d.ts.map +1 -1
- package/dist/esm/admin/notification.js +80 -0
- package/dist/esm/admin/notification.js.map +1 -1
- package/dist/esm/admin/order-edit.d.ts +166 -1
- package/dist/esm/admin/order-edit.d.ts.map +1 -1
- package/dist/esm/admin/order-edit.js +165 -0
- package/dist/esm/admin/order-edit.js.map +1 -1
- package/dist/esm/admin/order.d.ts +248 -22
- package/dist/esm/admin/order.d.ts.map +1 -1
- package/dist/esm/admin/order.js +240 -0
- package/dist/esm/admin/order.js.map +1 -1
- package/dist/esm/admin/payment-collection.d.ts +55 -0
- package/dist/esm/admin/payment-collection.d.ts.map +1 -1
- package/dist/esm/admin/payment-collection.js +55 -0
- package/dist/esm/admin/payment-collection.js.map +1 -1
- package/dist/esm/admin/payment.d.ts +162 -1
- package/dist/esm/admin/payment.d.ts.map +1 -1
- package/dist/esm/admin/payment.js +161 -0
- package/dist/esm/admin/payment.js.map +1 -1
- package/dist/esm/admin/price-list.d.ts +195 -1
- package/dist/esm/admin/price-list.d.ts.map +1 -1
- package/dist/esm/admin/price-list.js +194 -0
- package/dist/esm/admin/price-list.js.map +1 -1
- package/dist/esm/admin/price-preference.d.ts +133 -0
- package/dist/esm/admin/price-preference.d.ts.map +1 -1
- package/dist/esm/admin/price-preference.js +133 -0
- package/dist/esm/admin/price-preference.js.map +1 -1
- package/dist/esm/admin/product-category.d.ts +150 -0
- package/dist/esm/admin/product-category.d.ts.map +1 -1
- package/dist/esm/admin/product-category.js +150 -0
- package/dist/esm/admin/product-category.js.map +1 -1
- package/dist/esm/admin/product-collection.d.ts +149 -0
- package/dist/esm/admin/product-collection.d.ts.map +1 -1
- package/dist/esm/admin/product-collection.js +149 -0
- package/dist/esm/admin/product-collection.js.map +1 -1
- package/package.json +2 -2
@@ -10,10 +10,143 @@ export declare class PricePreference {
|
|
10
10
|
* @ignore
|
11
11
|
*/
|
12
12
|
constructor(client: Client);
|
13
|
+
/**
|
14
|
+
* This method retrieves a price preference. It sends a request to the
|
15
|
+
* [Get Price Preference](https://docs.medusajs.com/api/admin#price-preferences_getpricepreferencesid)
|
16
|
+
* API route.
|
17
|
+
*
|
18
|
+
* @param id - The price preference's ID.
|
19
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
20
|
+
* @param headers - Headers to pass in the request
|
21
|
+
* @returns The price preference's details.
|
22
|
+
*
|
23
|
+
* @example
|
24
|
+
* To retrieve a price preference by its ID:
|
25
|
+
*
|
26
|
+
* ```ts
|
27
|
+
* sdk.admin.pricePreference.retrieve("prpref_123")
|
28
|
+
* .then(({ price_preference }) => {
|
29
|
+
* console.log(price_preference)
|
30
|
+
* })
|
31
|
+
* ```
|
32
|
+
*
|
33
|
+
* To specify the fields and relations to retrieve:
|
34
|
+
*
|
35
|
+
* ```ts
|
36
|
+
* sdk.admin.pricePreference.retrieve("prpref_123", {
|
37
|
+
* fields: "id,is_tax_inclusive"
|
38
|
+
* })
|
39
|
+
* .then(({ price_preference }) => {
|
40
|
+
* console.log(price_preference)
|
41
|
+
* })
|
42
|
+
* ```
|
43
|
+
*
|
44
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
45
|
+
*/
|
13
46
|
retrieve(id: string, query?: HttpTypes.AdminPricePreferenceParams, headers?: ClientHeaders): Promise<HttpTypes.AdminPricePreferenceResponse>;
|
47
|
+
/**
|
48
|
+
* This method retrieves a paginated list of price preferences. It sends a request to the
|
49
|
+
* [List Price Preferences](https://docs.medusajs.com/api/admin#price-preferences_getpricepreferences) API route.
|
50
|
+
*
|
51
|
+
* @param query - Filters and pagination configurations.
|
52
|
+
* @param headers - Headers to pass in the request.
|
53
|
+
* @returns The paginated list of price preferences.
|
54
|
+
*
|
55
|
+
* @example
|
56
|
+
* To retrieve the list of price preferences:
|
57
|
+
*
|
58
|
+
* ```ts
|
59
|
+
* sdk.admin.pricePreference.list()
|
60
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
61
|
+
* console.log(price_preferences)
|
62
|
+
* })
|
63
|
+
* ```
|
64
|
+
*
|
65
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
66
|
+
*
|
67
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
68
|
+
*
|
69
|
+
* ```ts
|
70
|
+
* sdk.admin.pricePreference.list({
|
71
|
+
* limit: 10,
|
72
|
+
* offset: 10
|
73
|
+
* })
|
74
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
75
|
+
* console.log(price_preferences)
|
76
|
+
* })
|
77
|
+
* ```
|
78
|
+
*
|
79
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
80
|
+
* in each price preference:
|
81
|
+
*
|
82
|
+
* ```ts
|
83
|
+
* sdk.admin.pricePreference.list({
|
84
|
+
* fields: "id,is_tax_inclusive"
|
85
|
+
* })
|
86
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
87
|
+
* console.log(price_preferences)
|
88
|
+
* })
|
89
|
+
* ```
|
90
|
+
*
|
91
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
92
|
+
*/
|
14
93
|
list(query?: HttpTypes.AdminPricePreferenceListParams, headers?: ClientHeaders): Promise<HttpTypes.AdminPricePreferenceListResponse>;
|
94
|
+
/**
|
95
|
+
* This method creates a price preference. It sends a request to the
|
96
|
+
* [Create Price Preference](https://docs.medusajs.com/api/admin#price-preferences_postpricepreferences)
|
97
|
+
* API route.
|
98
|
+
*
|
99
|
+
* @param body - The details of the price preference to create.
|
100
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
101
|
+
* @param headers - Headers to pass in the request
|
102
|
+
* @returns The price preference's details.
|
103
|
+
*
|
104
|
+
* @example
|
105
|
+
* sdk.admin.pricePreference.create({
|
106
|
+
* attribute: "region_id",
|
107
|
+
* value: "region_123",
|
108
|
+
* is_tax_inclusive: true
|
109
|
+
* })
|
110
|
+
* .then(({ price_preference }) => {
|
111
|
+
* console.log(price_preference)
|
112
|
+
* })
|
113
|
+
*/
|
15
114
|
create(body: HttpTypes.AdminCreatePricePreference, query?: HttpTypes.AdminPricePreferenceParams, headers?: ClientHeaders): Promise<HttpTypes.AdminPricePreferenceResponse>;
|
115
|
+
/**
|
116
|
+
* This method updates a price preference. It sends a request to the
|
117
|
+
* [Update Price Preference](https://docs.medusajs.com/api/admin#price-preferences_postpricepreferencesid)
|
118
|
+
* API route.
|
119
|
+
*
|
120
|
+
* @param id - The price preference's ID.
|
121
|
+
* @param body - The data to update in the price preference.
|
122
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
123
|
+
* @param headers - Headers to pass in the request
|
124
|
+
* @returns The price preference's details.
|
125
|
+
*
|
126
|
+
* @example
|
127
|
+
* sdk.admin.pricePreference.update("prpref_123", {
|
128
|
+
* is_tax_inclusive: true
|
129
|
+
* })
|
130
|
+
* .then(({ price_preference }) => {
|
131
|
+
* console.log(price_preference)
|
132
|
+
* })
|
133
|
+
*/
|
16
134
|
update(id: string, body: HttpTypes.AdminUpdatePricePreference, query?: HttpTypes.AdminPricePreferenceParams, headers?: ClientHeaders): Promise<HttpTypes.AdminPricePreferenceResponse>;
|
135
|
+
/**
|
136
|
+
* This method deletes a price preference. It sends a request to the
|
137
|
+
* [Delete Price Preference](https://docs.medusajs.com/api/admin#price-preferences_deletepricepreferencesid)
|
138
|
+
* API route.
|
139
|
+
*
|
140
|
+
* @param id - The price preference's ID.
|
141
|
+
* @param headers - Headers to pass in the request
|
142
|
+
* @returns The deletion's details.
|
143
|
+
*
|
144
|
+
* @example
|
145
|
+
* sdk.admin.pricePreference.delete("prpref_123")
|
146
|
+
* .then(({ deleted }) => {
|
147
|
+
* console.log(deleted)
|
148
|
+
* })
|
149
|
+
*/
|
17
150
|
delete(id: string, headers?: ClientHeaders): Promise<HttpTypes.AdminPricePreferenceDeleteResponse>;
|
18
151
|
}
|
19
152
|
//# sourceMappingURL=price-preference.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"price-preference.d.ts","sourceRoot":"","sources":["../../../src/admin/price-preference.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,eAAe;IAC1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;OAEG;gBACS,MAAM,EAAE,MAAM;
|
1
|
+
{"version":3,"file":"price-preference.d.ts","sourceRoot":"","sources":["../../../src/admin/price-preference.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,eAAe;IAC1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IAEtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACG,QAAQ,CACZ,EAAE,EAAE,MAAM,EACV,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;IAYzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,8BAA8B,EAChD,OAAO,CAAC,EAAE,aAAa;IAYzB;;;;;;;;;;;;;;;;;;;OAmBG;IACG,MAAM,CACV,IAAI,EAAE,SAAS,CAAC,0BAA0B,EAC1C,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;IAazB;;;;;;;;;;;;;;;;;;OAkBG;IACG,MAAM,CACV,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,SAAS,CAAC,0BAA0B,EAC1C,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;IAazB;;;;;;;;;;;;;;OAcG;IACG,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa;CASjD"}
|
@@ -14,6 +14,39 @@ export class PricePreference {
|
|
14
14
|
constructor(client) {
|
15
15
|
this.client = client;
|
16
16
|
}
|
17
|
+
/**
|
18
|
+
* This method retrieves a price preference. It sends a request to the
|
19
|
+
* [Get Price Preference](https://docs.medusajs.com/api/admin#price-preferences_getpricepreferencesid)
|
20
|
+
* API route.
|
21
|
+
*
|
22
|
+
* @param id - The price preference's ID.
|
23
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
24
|
+
* @param headers - Headers to pass in the request
|
25
|
+
* @returns The price preference's details.
|
26
|
+
*
|
27
|
+
* @example
|
28
|
+
* To retrieve a price preference by its ID:
|
29
|
+
*
|
30
|
+
* ```ts
|
31
|
+
* sdk.admin.pricePreference.retrieve("prpref_123")
|
32
|
+
* .then(({ price_preference }) => {
|
33
|
+
* console.log(price_preference)
|
34
|
+
* })
|
35
|
+
* ```
|
36
|
+
*
|
37
|
+
* To specify the fields and relations to retrieve:
|
38
|
+
*
|
39
|
+
* ```ts
|
40
|
+
* sdk.admin.pricePreference.retrieve("prpref_123", {
|
41
|
+
* fields: "id,is_tax_inclusive"
|
42
|
+
* })
|
43
|
+
* .then(({ price_preference }) => {
|
44
|
+
* console.log(price_preference)
|
45
|
+
* })
|
46
|
+
* ```
|
47
|
+
*
|
48
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
49
|
+
*/
|
17
50
|
retrieve(id, query, headers) {
|
18
51
|
return __awaiter(this, void 0, void 0, function* () {
|
19
52
|
return this.client.fetch(`/admin/price-preferences/${id}`, {
|
@@ -23,6 +56,52 @@ export class PricePreference {
|
|
23
56
|
});
|
24
57
|
});
|
25
58
|
}
|
59
|
+
/**
|
60
|
+
* This method retrieves a paginated list of price preferences. It sends a request to the
|
61
|
+
* [List Price Preferences](https://docs.medusajs.com/api/admin#price-preferences_getpricepreferences) API route.
|
62
|
+
*
|
63
|
+
* @param query - Filters and pagination configurations.
|
64
|
+
* @param headers - Headers to pass in the request.
|
65
|
+
* @returns The paginated list of price preferences.
|
66
|
+
*
|
67
|
+
* @example
|
68
|
+
* To retrieve the list of price preferences:
|
69
|
+
*
|
70
|
+
* ```ts
|
71
|
+
* sdk.admin.pricePreference.list()
|
72
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
73
|
+
* console.log(price_preferences)
|
74
|
+
* })
|
75
|
+
* ```
|
76
|
+
*
|
77
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
78
|
+
*
|
79
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
80
|
+
*
|
81
|
+
* ```ts
|
82
|
+
* sdk.admin.pricePreference.list({
|
83
|
+
* limit: 10,
|
84
|
+
* offset: 10
|
85
|
+
* })
|
86
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
87
|
+
* console.log(price_preferences)
|
88
|
+
* })
|
89
|
+
* ```
|
90
|
+
*
|
91
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
92
|
+
* in each price preference:
|
93
|
+
*
|
94
|
+
* ```ts
|
95
|
+
* sdk.admin.pricePreference.list({
|
96
|
+
* fields: "id,is_tax_inclusive"
|
97
|
+
* })
|
98
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
99
|
+
* console.log(price_preferences)
|
100
|
+
* })
|
101
|
+
* ```
|
102
|
+
*
|
103
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
104
|
+
*/
|
26
105
|
list(query, headers) {
|
27
106
|
return __awaiter(this, void 0, void 0, function* () {
|
28
107
|
return this.client.fetch(`/admin/price-preferences`, {
|
@@ -32,6 +111,26 @@ export class PricePreference {
|
|
32
111
|
});
|
33
112
|
});
|
34
113
|
}
|
114
|
+
/**
|
115
|
+
* This method creates a price preference. It sends a request to the
|
116
|
+
* [Create Price Preference](https://docs.medusajs.com/api/admin#price-preferences_postpricepreferences)
|
117
|
+
* API route.
|
118
|
+
*
|
119
|
+
* @param body - The details of the price preference to create.
|
120
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
121
|
+
* @param headers - Headers to pass in the request
|
122
|
+
* @returns The price preference's details.
|
123
|
+
*
|
124
|
+
* @example
|
125
|
+
* sdk.admin.pricePreference.create({
|
126
|
+
* attribute: "region_id",
|
127
|
+
* value: "region_123",
|
128
|
+
* is_tax_inclusive: true
|
129
|
+
* })
|
130
|
+
* .then(({ price_preference }) => {
|
131
|
+
* console.log(price_preference)
|
132
|
+
* })
|
133
|
+
*/
|
35
134
|
create(body, query, headers) {
|
36
135
|
return __awaiter(this, void 0, void 0, function* () {
|
37
136
|
return this.client.fetch(`/admin/price-preferences`, {
|
@@ -42,6 +141,25 @@ export class PricePreference {
|
|
42
141
|
});
|
43
142
|
});
|
44
143
|
}
|
144
|
+
/**
|
145
|
+
* This method updates a price preference. It sends a request to the
|
146
|
+
* [Update Price Preference](https://docs.medusajs.com/api/admin#price-preferences_postpricepreferencesid)
|
147
|
+
* API route.
|
148
|
+
*
|
149
|
+
* @param id - The price preference's ID.
|
150
|
+
* @param body - The data to update in the price preference.
|
151
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
152
|
+
* @param headers - Headers to pass in the request
|
153
|
+
* @returns The price preference's details.
|
154
|
+
*
|
155
|
+
* @example
|
156
|
+
* sdk.admin.pricePreference.update("prpref_123", {
|
157
|
+
* is_tax_inclusive: true
|
158
|
+
* })
|
159
|
+
* .then(({ price_preference }) => {
|
160
|
+
* console.log(price_preference)
|
161
|
+
* })
|
162
|
+
*/
|
45
163
|
update(id, body, query, headers) {
|
46
164
|
return __awaiter(this, void 0, void 0, function* () {
|
47
165
|
return this.client.fetch(`/admin/price-preferences/${id}`, {
|
@@ -52,6 +170,21 @@ export class PricePreference {
|
|
52
170
|
});
|
53
171
|
});
|
54
172
|
}
|
173
|
+
/**
|
174
|
+
* This method deletes a price preference. It sends a request to the
|
175
|
+
* [Delete Price Preference](https://docs.medusajs.com/api/admin#price-preferences_deletepricepreferencesid)
|
176
|
+
* API route.
|
177
|
+
*
|
178
|
+
* @param id - The price preference's ID.
|
179
|
+
* @param headers - Headers to pass in the request
|
180
|
+
* @returns The deletion's details.
|
181
|
+
*
|
182
|
+
* @example
|
183
|
+
* sdk.admin.pricePreference.delete("prpref_123")
|
184
|
+
* .then(({ deleted }) => {
|
185
|
+
* console.log(deleted)
|
186
|
+
* })
|
187
|
+
*/
|
55
188
|
delete(id, headers) {
|
56
189
|
return __awaiter(this, void 0, void 0, function* () {
|
57
190
|
return this.client.fetch(`/admin/price-preferences/${id}`, {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"price-preference.js","sourceRoot":"","sources":["../../../src/admin/price-preference.ts"],"names":[],"mappings":";;;;;;;;;AAIA,MAAM,OAAO,eAAe;IAM1B;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;
|
1
|
+
{"version":3,"file":"price-preference.js","sourceRoot":"","sources":["../../../src/admin/price-preference.ts"],"names":[],"mappings":";;;;;;;;;AAIA,MAAM,OAAO,eAAe;IAM1B;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACG,QAAQ,CACZ,EAAU,EACV,KAA4C,EAC5C,OAAuB;;YAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;gBACE,MAAM,EAAE,KAAK;gBACb,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6CG;IACG,IAAI,CACR,KAAgD,EAChD,OAAuB;;YAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,0BAA0B,EAC1B;gBACE,MAAM,EAAE,KAAK;gBACb,OAAO;gBACP,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACG,MAAM,CACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;;YAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,0BAA0B,EAC1B;gBACE,MAAM,EAAE,MAAM;gBACd,OAAO;gBACP,IAAI;gBACJ,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACG,MAAM,CACV,EAAU,EACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;;YAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;gBACE,MAAM,EAAE,MAAM;gBACd,OAAO;gBACP,IAAI;gBACJ,KAAK;aACN,CACF,CAAA;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;;OAcG;IACG,MAAM,CAAC,EAAU,EAAE,OAAuB;;YAC9C,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;gBACE,MAAM,EAAE,QAAQ;gBAChB,OAAO;aACR,CACF,CAAA;QACH,CAAC;KAAA;CACF"}
|
@@ -10,11 +10,161 @@ export declare class ProductCategory {
|
|
10
10
|
* @ignore
|
11
11
|
*/
|
12
12
|
constructor(client: Client);
|
13
|
+
/**
|
14
|
+
* This method creates a product category. It sends a request to the
|
15
|
+
* [Create Category](https://docs.medusajs.com/api/admin#product-categories_postproductcategories)
|
16
|
+
* API route.
|
17
|
+
*
|
18
|
+
* @param body - The details of the category to create.
|
19
|
+
* @param query - Configure the fields to retrieve in the category.
|
20
|
+
* @param headers - Headers to pass in the request
|
21
|
+
* @returns The category's details.
|
22
|
+
*
|
23
|
+
* @example
|
24
|
+
* sdk.admin.productCategory.create({
|
25
|
+
* name: "Shirts"
|
26
|
+
* })
|
27
|
+
* .then(({ product_category }) => {
|
28
|
+
* console.log(product_category)
|
29
|
+
* })
|
30
|
+
*/
|
13
31
|
create(body: HttpTypes.AdminCreateProductCategory, query?: HttpTypes.AdminProductCategoryParams, headers?: ClientHeaders): Promise<HttpTypes.AdminProductCategoryResponse>;
|
32
|
+
/**
|
33
|
+
* This method updates a product category. It sends a request to the
|
34
|
+
* [Update Category](https://docs.medusajs.com/api/admin#product-categories_postproductcategoriesid)
|
35
|
+
* API route.
|
36
|
+
*
|
37
|
+
* @param id - The product category's ID.
|
38
|
+
* @param body - The data to update in the category.
|
39
|
+
* @param query - Configure the fields to retrieve in the category.
|
40
|
+
* @param headers - Headers to pass in the request
|
41
|
+
* @returns The category's details.
|
42
|
+
*
|
43
|
+
* @example
|
44
|
+
* sdk.admin.productCategory.update("pcat_123", {
|
45
|
+
* name: "Shirts"
|
46
|
+
* })
|
47
|
+
* .then(({ product_category }) => {
|
48
|
+
* console.log(product_category)
|
49
|
+
* })
|
50
|
+
*/
|
14
51
|
update(id: string, body: HttpTypes.AdminUpdateProductCategory, query?: HttpTypes.AdminProductCategoryParams, headers?: ClientHeaders): Promise<HttpTypes.AdminProductCategoryResponse>;
|
52
|
+
/**
|
53
|
+
* This method retrieves a paginated list of product categories. It sends a request to the
|
54
|
+
* [List Product Categories](https://docs.medusajs.com/api/admin#product-categories_getproductcategories) API route.
|
55
|
+
*
|
56
|
+
* @param query - Filters and pagination configurations.
|
57
|
+
* @param headers - Headers to pass in the request.
|
58
|
+
* @returns The paginated list of product categories.
|
59
|
+
*
|
60
|
+
* @example
|
61
|
+
* To retrieve the list of product categories:
|
62
|
+
*
|
63
|
+
* ```ts
|
64
|
+
* sdk.admin.productCategory.list()
|
65
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
66
|
+
* console.log(product_categories)
|
67
|
+
* })
|
68
|
+
* ```
|
69
|
+
*
|
70
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
71
|
+
*
|
72
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
73
|
+
*
|
74
|
+
* ```ts
|
75
|
+
* sdk.admin.productCategory.list({
|
76
|
+
* limit: 10,
|
77
|
+
* offset: 10
|
78
|
+
* })
|
79
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
80
|
+
* console.log(product_categories)
|
81
|
+
* })
|
82
|
+
* ```
|
83
|
+
*
|
84
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
85
|
+
* in each product category:
|
86
|
+
*
|
87
|
+
* ```ts
|
88
|
+
* sdk.admin.productCategory.list({
|
89
|
+
* fields: "id,*products"
|
90
|
+
* })
|
91
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
92
|
+
* console.log(product_categories)
|
93
|
+
* })
|
94
|
+
* ```
|
95
|
+
*
|
96
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
97
|
+
*/
|
15
98
|
list(query?: HttpTypes.AdminProductCategoryListParams, headers?: ClientHeaders): Promise<HttpTypes.AdminProductCategoryListResponse>;
|
99
|
+
/**
|
100
|
+
* This method retrieves a product category by its ID. It sends a request to the
|
101
|
+
* [Get Product Category](https://docs.medusajs.com/api/admin#product-categories_getproductcategoriesid) API route.
|
102
|
+
*
|
103
|
+
* @param id - The category's ID.
|
104
|
+
* @param query - Configure the fields to retrieve in the product category.
|
105
|
+
* @param headers - Headers to pass in the request
|
106
|
+
* @returns The product category's details.
|
107
|
+
*
|
108
|
+
* @example
|
109
|
+
* To retrieve a product category by its ID:
|
110
|
+
*
|
111
|
+
* ```ts
|
112
|
+
* sdk.admin.productCategory.retrieve("pcat_123")
|
113
|
+
* .then(({ product_category }) => {
|
114
|
+
* console.log(product_category)
|
115
|
+
* })
|
116
|
+
* ```
|
117
|
+
*
|
118
|
+
* To specify the fields and relations to retrieve:
|
119
|
+
*
|
120
|
+
* ```ts
|
121
|
+
* sdk.admin.productCategory.retrieve("pcat_123", {
|
122
|
+
* fields: "id,*products"
|
123
|
+
* })
|
124
|
+
* .then(({ product_category }) => {
|
125
|
+
* console.log(product_category)
|
126
|
+
* })
|
127
|
+
* ```
|
128
|
+
*
|
129
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
130
|
+
*/
|
16
131
|
retrieve(id: string, query?: HttpTypes.AdminProductCategoryParams, headers?: ClientHeaders): Promise<HttpTypes.AdminProductCategoryResponse>;
|
132
|
+
/**
|
133
|
+
* This method deletes a product category. It sends a request to the
|
134
|
+
* [Delete Product Category](https://docs.medusajs.com/api/admin#product-categories_deleteproductcategoriesid)
|
135
|
+
* API route.
|
136
|
+
*
|
137
|
+
* @param id - The category's ID.
|
138
|
+
* @param headers - Headers to pass in the request
|
139
|
+
* @returns The deletion's details.
|
140
|
+
*
|
141
|
+
* @example
|
142
|
+
* sdk.admin.productCategory.delete("pcat_123")
|
143
|
+
* .then(({ deleted }) => {
|
144
|
+
* console.log(deleted)
|
145
|
+
* })
|
146
|
+
*/
|
17
147
|
delete(id: string, headers?: ClientHeaders): Promise<HttpTypes.AdminProductCategoryDeleteResponse>;
|
148
|
+
/**
|
149
|
+
* This method manaes the products of a category to add or remove them. It sends a request
|
150
|
+
* to the [Manage Products](https://docs.medusajs.com/api/admin#product-categories_postproductcategoriesidproducts)
|
151
|
+
* API route.
|
152
|
+
*
|
153
|
+
* @param id - The category's ID.
|
154
|
+
* @param body - The products to create or update.
|
155
|
+
* @param query - Configure the fields to retrieve in the product category.
|
156
|
+
* @param headers - Headers to pass in the request
|
157
|
+
* @returns The product category's details.
|
158
|
+
*
|
159
|
+
* @example
|
160
|
+
* sdk.admin.productCategory.updateProducts("pcat_123", {
|
161
|
+
* add: ["prod_123"],
|
162
|
+
* remove: ["prod_321"]
|
163
|
+
* })
|
164
|
+
* .then(({ product_category }) => {
|
165
|
+
* console.log(product_category)
|
166
|
+
* })
|
167
|
+
*/
|
18
168
|
updateProducts(id: string, body: HttpTypes.AdminUpdateProductCategoryProducts, query?: HttpTypes.AdminProductCategoryParams, headers?: ClientHeaders): Promise<HttpTypes.AdminProductCategoryResponse>;
|
19
169
|
}
|
20
170
|
//# sourceMappingURL=product-category.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"product-category.d.ts","sourceRoot":"","sources":["../../../src/admin/product-category.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,eAAe;IAC1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IACtB;;OAEG;gBACS,MAAM,EAAE,MAAM;
|
1
|
+
{"version":3,"file":"product-category.d.ts","sourceRoot":"","sources":["../../../src/admin/product-category.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,eAAe;IAC1B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IACtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;OAiBG;IACG,MAAM,CACV,IAAI,EAAE,SAAS,CAAC,0BAA0B,EAC1C,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;IAazB;;;;;;;;;;;;;;;;;;OAkBG;IACG,MAAM,CACV,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,SAAS,CAAC,0BAA0B,EAC1C,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;IAazB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,8BAA8B,EAChD,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,QAAQ,CACZ,EAAE,EAAE,MAAM,EACV,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;IAWzB;;;;;;;;;;;;;;OAcG;IACG,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa;IAUhD;;;;;;;;;;;;;;;;;;;OAmBG;IACG,cAAc,CAClB,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,SAAS,CAAC,kCAAkC,EAClD,KAAK,CAAC,EAAE,SAAS,CAAC,0BAA0B,EAC5C,OAAO,CAAC,EAAE,aAAa;CAY1B"}
|
@@ -14,6 +14,24 @@ export class ProductCategory {
|
|
14
14
|
constructor(client) {
|
15
15
|
this.client = client;
|
16
16
|
}
|
17
|
+
/**
|
18
|
+
* This method creates a product category. It sends a request to the
|
19
|
+
* [Create Category](https://docs.medusajs.com/api/admin#product-categories_postproductcategories)
|
20
|
+
* API route.
|
21
|
+
*
|
22
|
+
* @param body - The details of the category to create.
|
23
|
+
* @param query - Configure the fields to retrieve in the category.
|
24
|
+
* @param headers - Headers to pass in the request
|
25
|
+
* @returns The category's details.
|
26
|
+
*
|
27
|
+
* @example
|
28
|
+
* sdk.admin.productCategory.create({
|
29
|
+
* name: "Shirts"
|
30
|
+
* })
|
31
|
+
* .then(({ product_category }) => {
|
32
|
+
* console.log(product_category)
|
33
|
+
* })
|
34
|
+
*/
|
17
35
|
create(body, query, headers) {
|
18
36
|
return __awaiter(this, void 0, void 0, function* () {
|
19
37
|
return this.client.fetch(`/admin/product-categories`, {
|
@@ -24,6 +42,25 @@ export class ProductCategory {
|
|
24
42
|
});
|
25
43
|
});
|
26
44
|
}
|
45
|
+
/**
|
46
|
+
* This method updates a product category. It sends a request to the
|
47
|
+
* [Update Category](https://docs.medusajs.com/api/admin#product-categories_postproductcategoriesid)
|
48
|
+
* API route.
|
49
|
+
*
|
50
|
+
* @param id - The product category's ID.
|
51
|
+
* @param body - The data to update in the category.
|
52
|
+
* @param query - Configure the fields to retrieve in the category.
|
53
|
+
* @param headers - Headers to pass in the request
|
54
|
+
* @returns The category's details.
|
55
|
+
*
|
56
|
+
* @example
|
57
|
+
* sdk.admin.productCategory.update("pcat_123", {
|
58
|
+
* name: "Shirts"
|
59
|
+
* })
|
60
|
+
* .then(({ product_category }) => {
|
61
|
+
* console.log(product_category)
|
62
|
+
* })
|
63
|
+
*/
|
27
64
|
update(id, body, query, headers) {
|
28
65
|
return __awaiter(this, void 0, void 0, function* () {
|
29
66
|
return this.client.fetch(`/admin/product-categories/${id}`, {
|
@@ -34,6 +71,52 @@ export class ProductCategory {
|
|
34
71
|
});
|
35
72
|
});
|
36
73
|
}
|
74
|
+
/**
|
75
|
+
* This method retrieves a paginated list of product categories. It sends a request to the
|
76
|
+
* [List Product Categories](https://docs.medusajs.com/api/admin#product-categories_getproductcategories) API route.
|
77
|
+
*
|
78
|
+
* @param query - Filters and pagination configurations.
|
79
|
+
* @param headers - Headers to pass in the request.
|
80
|
+
* @returns The paginated list of product categories.
|
81
|
+
*
|
82
|
+
* @example
|
83
|
+
* To retrieve the list of product categories:
|
84
|
+
*
|
85
|
+
* ```ts
|
86
|
+
* sdk.admin.productCategory.list()
|
87
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
88
|
+
* console.log(product_categories)
|
89
|
+
* })
|
90
|
+
* ```
|
91
|
+
*
|
92
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
93
|
+
*
|
94
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
95
|
+
*
|
96
|
+
* ```ts
|
97
|
+
* sdk.admin.productCategory.list({
|
98
|
+
* limit: 10,
|
99
|
+
* offset: 10
|
100
|
+
* })
|
101
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
102
|
+
* console.log(product_categories)
|
103
|
+
* })
|
104
|
+
* ```
|
105
|
+
*
|
106
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
107
|
+
* in each product category:
|
108
|
+
*
|
109
|
+
* ```ts
|
110
|
+
* sdk.admin.productCategory.list({
|
111
|
+
* fields: "id,*products"
|
112
|
+
* })
|
113
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
114
|
+
* console.log(product_categories)
|
115
|
+
* })
|
116
|
+
* ```
|
117
|
+
*
|
118
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
119
|
+
*/
|
37
120
|
list(query, headers) {
|
38
121
|
return __awaiter(this, void 0, void 0, function* () {
|
39
122
|
return this.client.fetch(`/admin/product-categories`, {
|
@@ -42,6 +125,38 @@ export class ProductCategory {
|
|
42
125
|
});
|
43
126
|
});
|
44
127
|
}
|
128
|
+
/**
|
129
|
+
* This method retrieves a product category by its ID. It sends a request to the
|
130
|
+
* [Get Product Category](https://docs.medusajs.com/api/admin#product-categories_getproductcategoriesid) API route.
|
131
|
+
*
|
132
|
+
* @param id - The category's ID.
|
133
|
+
* @param query - Configure the fields to retrieve in the product category.
|
134
|
+
* @param headers - Headers to pass in the request
|
135
|
+
* @returns The product category's details.
|
136
|
+
*
|
137
|
+
* @example
|
138
|
+
* To retrieve a product category by its ID:
|
139
|
+
*
|
140
|
+
* ```ts
|
141
|
+
* sdk.admin.productCategory.retrieve("pcat_123")
|
142
|
+
* .then(({ product_category }) => {
|
143
|
+
* console.log(product_category)
|
144
|
+
* })
|
145
|
+
* ```
|
146
|
+
*
|
147
|
+
* To specify the fields and relations to retrieve:
|
148
|
+
*
|
149
|
+
* ```ts
|
150
|
+
* sdk.admin.productCategory.retrieve("pcat_123", {
|
151
|
+
* fields: "id,*products"
|
152
|
+
* })
|
153
|
+
* .then(({ product_category }) => {
|
154
|
+
* console.log(product_category)
|
155
|
+
* })
|
156
|
+
* ```
|
157
|
+
*
|
158
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
159
|
+
*/
|
45
160
|
retrieve(id, query, headers) {
|
46
161
|
return __awaiter(this, void 0, void 0, function* () {
|
47
162
|
return this.client.fetch(`/admin/product-categories/${id}`, {
|
@@ -50,6 +165,21 @@ export class ProductCategory {
|
|
50
165
|
});
|
51
166
|
});
|
52
167
|
}
|
168
|
+
/**
|
169
|
+
* This method deletes a product category. It sends a request to the
|
170
|
+
* [Delete Product Category](https://docs.medusajs.com/api/admin#product-categories_deleteproductcategoriesid)
|
171
|
+
* API route.
|
172
|
+
*
|
173
|
+
* @param id - The category's ID.
|
174
|
+
* @param headers - Headers to pass in the request
|
175
|
+
* @returns The deletion's details.
|
176
|
+
*
|
177
|
+
* @example
|
178
|
+
* sdk.admin.productCategory.delete("pcat_123")
|
179
|
+
* .then(({ deleted }) => {
|
180
|
+
* console.log(deleted)
|
181
|
+
* })
|
182
|
+
*/
|
53
183
|
delete(id, headers) {
|
54
184
|
return __awaiter(this, void 0, void 0, function* () {
|
55
185
|
return this.client.fetch(`/admin/product-categories/${id}`, {
|
@@ -58,6 +188,26 @@ export class ProductCategory {
|
|
58
188
|
});
|
59
189
|
});
|
60
190
|
}
|
191
|
+
/**
|
192
|
+
* This method manaes the products of a category to add or remove them. It sends a request
|
193
|
+
* to the [Manage Products](https://docs.medusajs.com/api/admin#product-categories_postproductcategoriesidproducts)
|
194
|
+
* API route.
|
195
|
+
*
|
196
|
+
* @param id - The category's ID.
|
197
|
+
* @param body - The products to create or update.
|
198
|
+
* @param query - Configure the fields to retrieve in the product category.
|
199
|
+
* @param headers - Headers to pass in the request
|
200
|
+
* @returns The product category's details.
|
201
|
+
*
|
202
|
+
* @example
|
203
|
+
* sdk.admin.productCategory.updateProducts("pcat_123", {
|
204
|
+
* add: ["prod_123"],
|
205
|
+
* remove: ["prod_321"]
|
206
|
+
* })
|
207
|
+
* .then(({ product_category }) => {
|
208
|
+
* console.log(product_category)
|
209
|
+
* })
|
210
|
+
*/
|
61
211
|
updateProducts(id, body, query, headers) {
|
62
212
|
return __awaiter(this, void 0, void 0, function* () {
|
63
213
|
return this.client.fetch(`/admin/product-categories/${id}/products`, {
|