@medusajs/js-sdk 2.0.1-snapshot-20241025090810 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/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
@@ -8,6 +8,39 @@ class PricePreference {
|
|
8
8
|
constructor(client) {
|
9
9
|
this.client = client;
|
10
10
|
}
|
11
|
+
/**
|
12
|
+
* This method retrieves a price preference. It sends a request to the
|
13
|
+
* [Get Price Preference](https://docs.medusajs.com/api/admin#price-preferences_getpricepreferencesid)
|
14
|
+
* API route.
|
15
|
+
*
|
16
|
+
* @param id - The price preference's ID.
|
17
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
18
|
+
* @param headers - Headers to pass in the request
|
19
|
+
* @returns The price preference's details.
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
* To retrieve a price preference by its ID:
|
23
|
+
*
|
24
|
+
* ```ts
|
25
|
+
* sdk.admin.pricePreference.retrieve("prpref_123")
|
26
|
+
* .then(({ price_preference }) => {
|
27
|
+
* console.log(price_preference)
|
28
|
+
* })
|
29
|
+
* ```
|
30
|
+
*
|
31
|
+
* To specify the fields and relations to retrieve:
|
32
|
+
*
|
33
|
+
* ```ts
|
34
|
+
* sdk.admin.pricePreference.retrieve("prpref_123", {
|
35
|
+
* fields: "id,is_tax_inclusive"
|
36
|
+
* })
|
37
|
+
* .then(({ price_preference }) => {
|
38
|
+
* console.log(price_preference)
|
39
|
+
* })
|
40
|
+
* ```
|
41
|
+
*
|
42
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
43
|
+
*/
|
11
44
|
async retrieve(id, query, headers) {
|
12
45
|
return this.client.fetch(`/admin/price-preferences/${id}`, {
|
13
46
|
method: "GET",
|
@@ -15,6 +48,52 @@ class PricePreference {
|
|
15
48
|
query,
|
16
49
|
});
|
17
50
|
}
|
51
|
+
/**
|
52
|
+
* This method retrieves a paginated list of price preferences. It sends a request to the
|
53
|
+
* [List Price Preferences](https://docs.medusajs.com/api/admin#price-preferences_getpricepreferences) API route.
|
54
|
+
*
|
55
|
+
* @param query - Filters and pagination configurations.
|
56
|
+
* @param headers - Headers to pass in the request.
|
57
|
+
* @returns The paginated list of price preferences.
|
58
|
+
*
|
59
|
+
* @example
|
60
|
+
* To retrieve the list of price preferences:
|
61
|
+
*
|
62
|
+
* ```ts
|
63
|
+
* sdk.admin.pricePreference.list()
|
64
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
65
|
+
* console.log(price_preferences)
|
66
|
+
* })
|
67
|
+
* ```
|
68
|
+
*
|
69
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
70
|
+
*
|
71
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
72
|
+
*
|
73
|
+
* ```ts
|
74
|
+
* sdk.admin.pricePreference.list({
|
75
|
+
* limit: 10,
|
76
|
+
* offset: 10
|
77
|
+
* })
|
78
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
79
|
+
* console.log(price_preferences)
|
80
|
+
* })
|
81
|
+
* ```
|
82
|
+
*
|
83
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
84
|
+
* in each price preference:
|
85
|
+
*
|
86
|
+
* ```ts
|
87
|
+
* sdk.admin.pricePreference.list({
|
88
|
+
* fields: "id,is_tax_inclusive"
|
89
|
+
* })
|
90
|
+
* .then(({ price_preferences, count, limit, offset }) => {
|
91
|
+
* console.log(price_preferences)
|
92
|
+
* })
|
93
|
+
* ```
|
94
|
+
*
|
95
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
96
|
+
*/
|
18
97
|
async list(query, headers) {
|
19
98
|
return this.client.fetch(`/admin/price-preferences`, {
|
20
99
|
method: "GET",
|
@@ -22,6 +101,26 @@ class PricePreference {
|
|
22
101
|
query,
|
23
102
|
});
|
24
103
|
}
|
104
|
+
/**
|
105
|
+
* This method creates a price preference. It sends a request to the
|
106
|
+
* [Create Price Preference](https://docs.medusajs.com/api/admin#price-preferences_postpricepreferences)
|
107
|
+
* API route.
|
108
|
+
*
|
109
|
+
* @param body - The details of the price preference to create.
|
110
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
111
|
+
* @param headers - Headers to pass in the request
|
112
|
+
* @returns The price preference's details.
|
113
|
+
*
|
114
|
+
* @example
|
115
|
+
* sdk.admin.pricePreference.create({
|
116
|
+
* attribute: "region_id",
|
117
|
+
* value: "region_123",
|
118
|
+
* is_tax_inclusive: true
|
119
|
+
* })
|
120
|
+
* .then(({ price_preference }) => {
|
121
|
+
* console.log(price_preference)
|
122
|
+
* })
|
123
|
+
*/
|
25
124
|
async create(body, query, headers) {
|
26
125
|
return this.client.fetch(`/admin/price-preferences`, {
|
27
126
|
method: "POST",
|
@@ -30,6 +129,25 @@ class PricePreference {
|
|
30
129
|
query,
|
31
130
|
});
|
32
131
|
}
|
132
|
+
/**
|
133
|
+
* This method updates a price preference. It sends a request to the
|
134
|
+
* [Update Price Preference](https://docs.medusajs.com/api/admin#price-preferences_postpricepreferencesid)
|
135
|
+
* API route.
|
136
|
+
*
|
137
|
+
* @param id - The price preference's ID.
|
138
|
+
* @param body - The data to update in the price preference.
|
139
|
+
* @param query - Configure the fields to retrieve in the price preference.
|
140
|
+
* @param headers - Headers to pass in the request
|
141
|
+
* @returns The price preference's details.
|
142
|
+
*
|
143
|
+
* @example
|
144
|
+
* sdk.admin.pricePreference.update("prpref_123", {
|
145
|
+
* is_tax_inclusive: true
|
146
|
+
* })
|
147
|
+
* .then(({ price_preference }) => {
|
148
|
+
* console.log(price_preference)
|
149
|
+
* })
|
150
|
+
*/
|
33
151
|
async update(id, body, query, headers) {
|
34
152
|
return this.client.fetch(`/admin/price-preferences/${id}`, {
|
35
153
|
method: "POST",
|
@@ -38,6 +156,21 @@ class PricePreference {
|
|
38
156
|
query,
|
39
157
|
});
|
40
158
|
}
|
159
|
+
/**
|
160
|
+
* This method deletes a price preference. It sends a request to the
|
161
|
+
* [Delete Price Preference](https://docs.medusajs.com/api/admin#price-preferences_deletepricepreferencesid)
|
162
|
+
* API route.
|
163
|
+
*
|
164
|
+
* @param id - The price preference's ID.
|
165
|
+
* @param headers - Headers to pass in the request
|
166
|
+
* @returns The deletion's details.
|
167
|
+
*
|
168
|
+
* @example
|
169
|
+
* sdk.admin.pricePreference.delete("prpref_123")
|
170
|
+
* .then(({ deleted }) => {
|
171
|
+
* console.log(deleted)
|
172
|
+
* })
|
173
|
+
*/
|
41
174
|
async delete(id, headers) {
|
42
175
|
return this.client.fetch(`/admin/price-preferences/${id}`, {
|
43
176
|
method: "DELETE",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"price-preference.js","sourceRoot":"","sources":["../../src/admin/price-preference.ts"],"names":[],"mappings":";;;AAIA,MAAa,eAAe;IAM1B;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED,KAAK,CAAC,QAAQ,CACZ,EAAU,EACV,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;YACE,MAAM,EAAE,KAAK;YACb,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,IAAI,CACR,KAAgD,EAChD,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,0BAA0B,EAC1B;YACE,MAAM,EAAE,KAAK;YACb,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,0BAA0B,EAC1B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CACV,EAAU,EACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,OAAuB;QAC9C,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;SACR,CACF,CAAA;IACH,CAAC;CACF;
|
1
|
+
{"version":3,"file":"price-preference.js","sourceRoot":"","sources":["../../src/admin/price-preference.ts"],"names":[],"mappings":";;;AAIA,MAAa,eAAe;IAM1B;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACH,KAAK,CAAC,QAAQ,CACZ,EAAU,EACV,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;YACE,MAAM,EAAE,KAAK;YACb,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6CG;IACH,KAAK,CAAC,IAAI,CACR,KAAgD,EAChD,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,0BAA0B,EAC1B;YACE,MAAM,EAAE,KAAK;YACb,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACH,KAAK,CAAC,MAAM,CACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,0BAA0B,EAC1B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACH,KAAK,CAAC,MAAM,CACV,EAAU,EACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,OAAuB;QAC9C,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,4BAA4B,EAAE,EAAE,EAChC;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;SACR,CACF,CAAA;IACH,CAAC;CACF;AAzND,0CAyNC"}
|
@@ -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"}
|
@@ -8,6 +8,24 @@ class ProductCategory {
|
|
8
8
|
constructor(client) {
|
9
9
|
this.client = client;
|
10
10
|
}
|
11
|
+
/**
|
12
|
+
* This method creates a product category. It sends a request to the
|
13
|
+
* [Create Category](https://docs.medusajs.com/api/admin#product-categories_postproductcategories)
|
14
|
+
* API route.
|
15
|
+
*
|
16
|
+
* @param body - The details of the category to create.
|
17
|
+
* @param query - Configure the fields to retrieve in the category.
|
18
|
+
* @param headers - Headers to pass in the request
|
19
|
+
* @returns The category's details.
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
* sdk.admin.productCategory.create({
|
23
|
+
* name: "Shirts"
|
24
|
+
* })
|
25
|
+
* .then(({ product_category }) => {
|
26
|
+
* console.log(product_category)
|
27
|
+
* })
|
28
|
+
*/
|
11
29
|
async create(body, query, headers) {
|
12
30
|
return this.client.fetch(`/admin/product-categories`, {
|
13
31
|
method: "POST",
|
@@ -16,6 +34,25 @@ class ProductCategory {
|
|
16
34
|
query,
|
17
35
|
});
|
18
36
|
}
|
37
|
+
/**
|
38
|
+
* This method updates a product category. It sends a request to the
|
39
|
+
* [Update Category](https://docs.medusajs.com/api/admin#product-categories_postproductcategoriesid)
|
40
|
+
* API route.
|
41
|
+
*
|
42
|
+
* @param id - The product category's ID.
|
43
|
+
* @param body - The data to update in the category.
|
44
|
+
* @param query - Configure the fields to retrieve in the category.
|
45
|
+
* @param headers - Headers to pass in the request
|
46
|
+
* @returns The category's details.
|
47
|
+
*
|
48
|
+
* @example
|
49
|
+
* sdk.admin.productCategory.update("pcat_123", {
|
50
|
+
* name: "Shirts"
|
51
|
+
* })
|
52
|
+
* .then(({ product_category }) => {
|
53
|
+
* console.log(product_category)
|
54
|
+
* })
|
55
|
+
*/
|
19
56
|
async update(id, body, query, headers) {
|
20
57
|
return this.client.fetch(`/admin/product-categories/${id}`, {
|
21
58
|
method: "POST",
|
@@ -24,24 +61,137 @@ class ProductCategory {
|
|
24
61
|
query,
|
25
62
|
});
|
26
63
|
}
|
64
|
+
/**
|
65
|
+
* This method retrieves a paginated list of product categories. It sends a request to the
|
66
|
+
* [List Product Categories](https://docs.medusajs.com/api/admin#product-categories_getproductcategories) API route.
|
67
|
+
*
|
68
|
+
* @param query - Filters and pagination configurations.
|
69
|
+
* @param headers - Headers to pass in the request.
|
70
|
+
* @returns The paginated list of product categories.
|
71
|
+
*
|
72
|
+
* @example
|
73
|
+
* To retrieve the list of product categories:
|
74
|
+
*
|
75
|
+
* ```ts
|
76
|
+
* sdk.admin.productCategory.list()
|
77
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
78
|
+
* console.log(product_categories)
|
79
|
+
* })
|
80
|
+
* ```
|
81
|
+
*
|
82
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
83
|
+
*
|
84
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
85
|
+
*
|
86
|
+
* ```ts
|
87
|
+
* sdk.admin.productCategory.list({
|
88
|
+
* limit: 10,
|
89
|
+
* offset: 10
|
90
|
+
* })
|
91
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
92
|
+
* console.log(product_categories)
|
93
|
+
* })
|
94
|
+
* ```
|
95
|
+
*
|
96
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
97
|
+
* in each product category:
|
98
|
+
*
|
99
|
+
* ```ts
|
100
|
+
* sdk.admin.productCategory.list({
|
101
|
+
* fields: "id,*products"
|
102
|
+
* })
|
103
|
+
* .then(({ product_categories, count, limit, offset }) => {
|
104
|
+
* console.log(product_categories)
|
105
|
+
* })
|
106
|
+
* ```
|
107
|
+
*
|
108
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
109
|
+
*/
|
27
110
|
async list(query, headers) {
|
28
111
|
return this.client.fetch(`/admin/product-categories`, {
|
29
112
|
headers,
|
30
113
|
query: query,
|
31
114
|
});
|
32
115
|
}
|
116
|
+
/**
|
117
|
+
* This method retrieves a product category by its ID. It sends a request to the
|
118
|
+
* [Get Product Category](https://docs.medusajs.com/api/admin#product-categories_getproductcategoriesid) API route.
|
119
|
+
*
|
120
|
+
* @param id - The category's ID.
|
121
|
+
* @param query - Configure the fields to retrieve in the product category.
|
122
|
+
* @param headers - Headers to pass in the request
|
123
|
+
* @returns The product category's details.
|
124
|
+
*
|
125
|
+
* @example
|
126
|
+
* To retrieve a product category by its ID:
|
127
|
+
*
|
128
|
+
* ```ts
|
129
|
+
* sdk.admin.productCategory.retrieve("pcat_123")
|
130
|
+
* .then(({ product_category }) => {
|
131
|
+
* console.log(product_category)
|
132
|
+
* })
|
133
|
+
* ```
|
134
|
+
*
|
135
|
+
* To specify the fields and relations to retrieve:
|
136
|
+
*
|
137
|
+
* ```ts
|
138
|
+
* sdk.admin.productCategory.retrieve("pcat_123", {
|
139
|
+
* fields: "id,*products"
|
140
|
+
* })
|
141
|
+
* .then(({ product_category }) => {
|
142
|
+
* console.log(product_category)
|
143
|
+
* })
|
144
|
+
* ```
|
145
|
+
*
|
146
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/api/store#select-fields-and-relations).
|
147
|
+
*/
|
33
148
|
async retrieve(id, query, headers) {
|
34
149
|
return this.client.fetch(`/admin/product-categories/${id}`, {
|
35
150
|
query,
|
36
151
|
headers,
|
37
152
|
});
|
38
153
|
}
|
154
|
+
/**
|
155
|
+
* This method deletes a product category. It sends a request to the
|
156
|
+
* [Delete Product Category](https://docs.medusajs.com/api/admin#product-categories_deleteproductcategoriesid)
|
157
|
+
* API route.
|
158
|
+
*
|
159
|
+
* @param id - The category's ID.
|
160
|
+
* @param headers - Headers to pass in the request
|
161
|
+
* @returns The deletion's details.
|
162
|
+
*
|
163
|
+
* @example
|
164
|
+
* sdk.admin.productCategory.delete("pcat_123")
|
165
|
+
* .then(({ deleted }) => {
|
166
|
+
* console.log(deleted)
|
167
|
+
* })
|
168
|
+
*/
|
39
169
|
async delete(id, headers) {
|
40
170
|
return this.client.fetch(`/admin/product-categories/${id}`, {
|
41
171
|
method: "DELETE",
|
42
172
|
headers,
|
43
173
|
});
|
44
174
|
}
|
175
|
+
/**
|
176
|
+
* This method manaes the products of a category to add or remove them. It sends a request
|
177
|
+
* to the [Manage Products](https://docs.medusajs.com/api/admin#product-categories_postproductcategoriesidproducts)
|
178
|
+
* API route.
|
179
|
+
*
|
180
|
+
* @param id - The category's ID.
|
181
|
+
* @param body - The products to create or update.
|
182
|
+
* @param query - Configure the fields to retrieve in the product category.
|
183
|
+
* @param headers - Headers to pass in the request
|
184
|
+
* @returns The product category's details.
|
185
|
+
*
|
186
|
+
* @example
|
187
|
+
* sdk.admin.productCategory.updateProducts("pcat_123", {
|
188
|
+
* add: ["prod_123"],
|
189
|
+
* remove: ["prod_321"]
|
190
|
+
* })
|
191
|
+
* .then(({ product_category }) => {
|
192
|
+
* console.log(product_category)
|
193
|
+
* })
|
194
|
+
*/
|
45
195
|
async updateProducts(id, body, query, headers) {
|
46
196
|
return this.client.fetch(`/admin/product-categories/${id}/products`, {
|
47
197
|
method: "POST",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"product-category.js","sourceRoot":"","sources":["../../src/admin/product-category.ts"],"names":[],"mappings":";;;AAIA,MAAa,eAAe;IAK1B;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED,KAAK,CAAC,MAAM,CACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,2BAA2B,EAC3B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CACV,EAAU,EACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,EAAE,EACjC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,IAAI,CACR,KAAgD,EAChD,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,2BAA2B,EAC3B;YACE,OAAO;YACP,KAAK,EAAE,KAAK;SACb,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,QAAQ,CACZ,EAAU,EACV,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,EAAE,EACjC;YACE,KAAK;YACL,OAAO;SACR,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,OAAuB;QAC9C,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,EAAE,EACjC;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;SACR,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,cAAc,CAClB,EAAU,EACV,IAAkD,EAClD,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,WAAW,EAC1C;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;CACF;
|
1
|
+
{"version":3,"file":"product-category.js","sourceRoot":"","sources":["../../src/admin/product-category.ts"],"names":[],"mappings":";;;AAIA,MAAa,eAAe;IAK1B;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,KAAK,CAAC,MAAM,CACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,2BAA2B,EAC3B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACH,KAAK,CAAC,MAAM,CACV,EAAU,EACV,IAA0C,EAC1C,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,EAAE,EACjC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6CG;IACH,KAAK,CAAC,IAAI,CACR,KAAgD,EAChD,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,2BAA2B,EAC3B;YACE,OAAO;YACP,KAAK,EAAE,KAAK;SACb,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACH,KAAK,CAAC,QAAQ,CACZ,EAAU,EACV,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,EAAE,EACjC;YACE,KAAK;YACL,OAAO;SACR,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,OAAuB;QAC9C,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,EAAE,EACjC;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;SACR,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACH,KAAK,CAAC,cAAc,CAClB,EAAU,EACV,IAAkD,EAClD,KAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,6BAA6B,EAAE,WAAW,EAC1C;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;CACF;AAxPD,0CAwPC"}
|