@medusajs/js-sdk 0.0.2-snapshot-20241022120003 → 0.0.2-snapshot-20241022140307
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/api-key.d.ts +144 -1
- package/dist/admin/api-key.d.ts.map +1 -1
- package/dist/admin/api-key.js +143 -0
- package/dist/admin/api-key.js.map +1 -1
- package/dist/admin/campaign.d.ts +135 -0
- package/dist/admin/campaign.d.ts.map +1 -1
- package/dist/admin/campaign.js +135 -0
- package/dist/admin/campaign.js.map +1 -1
- package/dist/admin/claim.d.ts +542 -19
- package/dist/admin/claim.d.ts.map +1 -1
- package/dist/admin/claim.js +523 -0
- package/dist/admin/claim.js.map +1 -1
- package/dist/admin/currency.d.ts +80 -1
- package/dist/admin/currency.d.ts.map +1 -1
- package/dist/admin/currency.js +81 -2
- package/dist/admin/currency.js.map +1 -1
- package/dist/admin/customer-group.d.ts +152 -2
- package/dist/admin/customer-group.d.ts.map +1 -1
- package/dist/admin/customer-group.js +150 -0
- package/dist/admin/customer-group.js.map +1 -1
- package/dist/admin/customer.d.ts +135 -13
- package/dist/admin/customer.d.ts.map +1 -1
- package/dist/admin/customer.js +130 -0
- package/dist/admin/customer.js.map +1 -1
- package/dist/admin/exchange.d.ts +471 -16
- package/dist/admin/exchange.d.ts.map +1 -1
- package/dist/admin/exchange.js +455 -0
- package/dist/admin/exchange.js.map +1 -1
- package/dist/admin/fulfillment-provider.d.ts +47 -0
- package/dist/admin/fulfillment-provider.d.ts.map +1 -1
- package/dist/admin/fulfillment-provider.js +47 -0
- package/dist/admin/fulfillment-provider.js.map +1 -1
- package/dist/esm/admin/api-key.d.ts +144 -1
- package/dist/esm/admin/api-key.d.ts.map +1 -1
- package/dist/esm/admin/api-key.js +143 -0
- package/dist/esm/admin/api-key.js.map +1 -1
- package/dist/esm/admin/campaign.d.ts +135 -0
- package/dist/esm/admin/campaign.d.ts.map +1 -1
- package/dist/esm/admin/campaign.js +135 -0
- package/dist/esm/admin/campaign.js.map +1 -1
- package/dist/esm/admin/claim.d.ts +542 -19
- package/dist/esm/admin/claim.d.ts.map +1 -1
- package/dist/esm/admin/claim.js +523 -0
- package/dist/esm/admin/claim.js.map +1 -1
- package/dist/esm/admin/currency.d.ts +80 -1
- package/dist/esm/admin/currency.d.ts.map +1 -1
- package/dist/esm/admin/currency.js +81 -2
- package/dist/esm/admin/currency.js.map +1 -1
- package/dist/esm/admin/customer-group.d.ts +152 -2
- package/dist/esm/admin/customer-group.d.ts.map +1 -1
- package/dist/esm/admin/customer-group.js +150 -0
- package/dist/esm/admin/customer-group.js.map +1 -1
- package/dist/esm/admin/customer.d.ts +135 -13
- package/dist/esm/admin/customer.d.ts.map +1 -1
- package/dist/esm/admin/customer.js +130 -0
- package/dist/esm/admin/customer.js.map +1 -1
- package/dist/esm/admin/exchange.d.ts +471 -16
- package/dist/esm/admin/exchange.d.ts.map +1 -1
- package/dist/esm/admin/exchange.js +455 -0
- package/dist/esm/admin/exchange.js.map +1 -1
- package/dist/esm/admin/fulfillment-provider.d.ts +47 -0
- package/dist/esm/admin/fulfillment-provider.d.ts.map +1 -1
- package/dist/esm/admin/fulfillment-provider.js +47 -0
- package/dist/esm/admin/fulfillment-provider.js.map +1 -1
- package/package.json +2 -2
package/dist/admin/customer.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { HttpTypes, SelectParams } from "@medusajs/types";
|
2
2
|
import { Client } from "../client";
|
3
3
|
import { ClientHeaders } from "../types";
|
4
4
|
export declare class Customer {
|
@@ -10,18 +10,140 @@ export declare class Customer {
|
|
10
10
|
* @ignore
|
11
11
|
*/
|
12
12
|
constructor(client: Client);
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
13
|
+
/**
|
14
|
+
* This method creates a customer. It sends a request to the
|
15
|
+
* [Create Customer](https://docs.medusajs.com/v2/api/admin#customers_postcustomers) API route.
|
16
|
+
*
|
17
|
+
* @param body - The customer's details.
|
18
|
+
* @param query - Configure the fields to retrieve in the customer.
|
19
|
+
* @param headers - Headers to pass in the request.
|
20
|
+
* @returns The customer's details.
|
21
|
+
*
|
22
|
+
* @example
|
23
|
+
* sdk.admin.customer.create({
|
24
|
+
* email: "customer@gmail.com"
|
25
|
+
* })
|
26
|
+
* .then(({ customer }) => {
|
27
|
+
* console.log(customer)
|
28
|
+
* })
|
29
|
+
*/
|
30
|
+
create(body: HttpTypes.AdminCreateCustomer, query?: SelectParams, headers?: ClientHeaders): Promise<HttpTypes.AdminCustomerResponse>;
|
31
|
+
/**
|
32
|
+
* This method updates a customer's details. It sends a request to the
|
33
|
+
* [Update Customer](https://docs.medusajs.com/v2/api/admin#customers_postcustomersid) API route.
|
34
|
+
*
|
35
|
+
* @param id - The customer's ID.
|
36
|
+
* @param body - The details to update of the customer.
|
37
|
+
* @param query - Configure the fields to retrieve in the customer.
|
38
|
+
* @param headers - Headers to pass in the request.
|
39
|
+
* @returns The customer's details.
|
40
|
+
*
|
41
|
+
* @example
|
42
|
+
* sdk.admin.customer.update("cus_123", {
|
43
|
+
* first_name: "John"
|
44
|
+
* })
|
45
|
+
* .then(({ customer }) => {
|
46
|
+
* console.log(customer)
|
47
|
+
* })
|
48
|
+
*/
|
49
|
+
update(id: string, body: HttpTypes.AdminUpdateCustomer, query?: SelectParams, headers?: ClientHeaders): Promise<HttpTypes.AdminCustomerResponse>;
|
50
|
+
/**
|
51
|
+
* This method retrieves a paginated list of customers. It sends a request to the
|
52
|
+
* [List Customers](https://docs.medusajs.com/v2/api/admin#customers_getcustomers)
|
53
|
+
* API route.
|
54
|
+
*
|
55
|
+
* @param queryParams - Filters and pagination configurations.
|
56
|
+
* @param headers - Headers to pass in the request.
|
57
|
+
* @returns The paginated list of customers.
|
58
|
+
*
|
59
|
+
* @example
|
60
|
+
* To retrieve the list of customers:
|
61
|
+
*
|
62
|
+
* ```ts
|
63
|
+
* sdk.admin.customer.list()
|
64
|
+
* .then(({ customers, count, limit, offset }) => {
|
65
|
+
* console.log(customers)
|
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.customer.list({
|
75
|
+
* limit: 10,
|
76
|
+
* offset: 10
|
77
|
+
* })
|
78
|
+
* .then(({ customers, count, limit, offset }) => {
|
79
|
+
* console.log(customers)
|
80
|
+
* })
|
81
|
+
* ```
|
82
|
+
*
|
83
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
84
|
+
* in each customer:
|
85
|
+
*
|
86
|
+
* ```ts
|
87
|
+
* sdk.admin.customer.list({
|
88
|
+
* fields: "id,*groups"
|
89
|
+
* })
|
90
|
+
* .then(({ customers, count, limit, offset }) => {
|
91
|
+
* console.log(customers)
|
92
|
+
* })
|
93
|
+
* ```
|
94
|
+
*
|
95
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
|
96
|
+
*/
|
97
|
+
list(queryParams?: HttpTypes.AdminCustomerFilters, headers?: ClientHeaders): Promise<HttpTypes.AdminCustomerListResponse>;
|
98
|
+
/**
|
99
|
+
* This method retrieves a customer by its ID. It sends a request to the
|
100
|
+
* [Get Customer](https://docs.medusajs.com/v2/api/admin#customers_getcustomersid)
|
101
|
+
* API route.
|
102
|
+
*
|
103
|
+
* @param id - The customer's ID.
|
104
|
+
* @param query - Configure the fields to retrieve in the customer.
|
105
|
+
* @param headers - Headers to pass in the request.
|
106
|
+
* @returns The customer's details.
|
107
|
+
*
|
108
|
+
* @example
|
109
|
+
* To retrieve a customer by its ID:
|
110
|
+
*
|
111
|
+
* ```ts
|
112
|
+
* sdk.admin.customer.retrieve("cus_123")
|
113
|
+
* .then(({ customer }) => {
|
114
|
+
* console.log(customer)
|
115
|
+
* })
|
116
|
+
* ```
|
117
|
+
*
|
118
|
+
* To specify the fields and relations to retrieve:
|
119
|
+
*
|
120
|
+
* ```ts
|
121
|
+
* sdk.admin.customer.retrieve("cus_123", {
|
122
|
+
* fields: "id,*groups"
|
123
|
+
* })
|
124
|
+
* .then(({ customer }) => {
|
125
|
+
* console.log(customer)
|
126
|
+
* })
|
127
|
+
* ```
|
128
|
+
*
|
129
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
|
130
|
+
*/
|
131
|
+
retrieve(id: string, query?: SelectParams, headers?: ClientHeaders): Promise<HttpTypes.AdminCustomerResponse>;
|
132
|
+
/**
|
133
|
+
* This method deletes a customer by its ID. It sends a request to the
|
134
|
+
* [Delete Customer](https://docs.medusajs.com/v2/api/admin#customers_deletecustomersid)
|
135
|
+
* API route.
|
136
|
+
*
|
137
|
+
* @param id - The customer's ID.
|
138
|
+
* @param headers - Headers to pass in the request.
|
139
|
+
* @returns The deletion's details.
|
140
|
+
*
|
141
|
+
* @example
|
142
|
+
* sdk.admin.customer.delete("cus_123")
|
143
|
+
* .then(({ deleted }) => {
|
144
|
+
* console.log(deleted)
|
145
|
+
* })
|
146
|
+
*/
|
25
147
|
delete(id: string, headers?: ClientHeaders): Promise<HttpTypes.AdminCustomerDeleteResponse>;
|
26
148
|
}
|
27
149
|
//# sourceMappingURL=customer.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"customer.d.ts","sourceRoot":"","sources":["../../src/admin/customer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,
|
1
|
+
{"version":3,"file":"customer.d.ts","sourceRoot":"","sources":["../../src/admin/customer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,YAAY,EACb,MAAM,iBAAiB,CAAA;AACxB,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,QAAQ;IACnB;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IACtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;OAgBG;IACG,MAAM,CACV,IAAI,EAAE,SAAS,CAAC,mBAAmB,EACnC,KAAK,CAAC,EAAE,YAAY,EACpB,OAAO,CAAC,EAAE,aAAa;IAYzB;;;;;;;;;;;;;;;;;OAiBG;IACG,MAAM,CACV,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,SAAS,CAAC,mBAAmB,EACnC,KAAK,CAAC,EAAE,YAAY,EACpB,OAAO,CAAC,EAAE,aAAa;IAazB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,WAAW,CAAC,EAAE,SAAS,CAAC,oBAAoB,EAC5C,OAAO,CAAC,EAAE,aAAa;IAUzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACG,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,aAAa;IAUxE;;;;;;;;;;;;;;OAcG;IACG,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa;CASjD"}
|
package/dist/admin/customer.js
CHANGED
@@ -8,6 +8,23 @@ class Customer {
|
|
8
8
|
constructor(client) {
|
9
9
|
this.client = client;
|
10
10
|
}
|
11
|
+
/**
|
12
|
+
* This method creates a customer. It sends a request to the
|
13
|
+
* [Create Customer](https://docs.medusajs.com/v2/api/admin#customers_postcustomers) API route.
|
14
|
+
*
|
15
|
+
* @param body - The customer's details.
|
16
|
+
* @param query - Configure the fields to retrieve in the customer.
|
17
|
+
* @param headers - Headers to pass in the request.
|
18
|
+
* @returns The customer's details.
|
19
|
+
*
|
20
|
+
* @example
|
21
|
+
* sdk.admin.customer.create({
|
22
|
+
* email: "customer@gmail.com"
|
23
|
+
* })
|
24
|
+
* .then(({ customer }) => {
|
25
|
+
* console.log(customer)
|
26
|
+
* })
|
27
|
+
*/
|
11
28
|
async create(body, query, headers) {
|
12
29
|
return this.client.fetch(`/admin/customers`, {
|
13
30
|
method: "POST",
|
@@ -16,6 +33,24 @@ class Customer {
|
|
16
33
|
query,
|
17
34
|
});
|
18
35
|
}
|
36
|
+
/**
|
37
|
+
* This method updates a customer's details. It sends a request to the
|
38
|
+
* [Update Customer](https://docs.medusajs.com/v2/api/admin#customers_postcustomersid) API route.
|
39
|
+
*
|
40
|
+
* @param id - The customer's ID.
|
41
|
+
* @param body - The details to update of the customer.
|
42
|
+
* @param query - Configure the fields to retrieve in the customer.
|
43
|
+
* @param headers - Headers to pass in the request.
|
44
|
+
* @returns The customer's details.
|
45
|
+
*
|
46
|
+
* @example
|
47
|
+
* sdk.admin.customer.update("cus_123", {
|
48
|
+
* first_name: "John"
|
49
|
+
* })
|
50
|
+
* .then(({ customer }) => {
|
51
|
+
* console.log(customer)
|
52
|
+
* })
|
53
|
+
*/
|
19
54
|
async update(id, body, query, headers) {
|
20
55
|
return this.client.fetch(`/admin/customers/${id}`, {
|
21
56
|
method: "POST",
|
@@ -24,18 +59,113 @@ class Customer {
|
|
24
59
|
query,
|
25
60
|
});
|
26
61
|
}
|
62
|
+
/**
|
63
|
+
* This method retrieves a paginated list of customers. It sends a request to the
|
64
|
+
* [List Customers](https://docs.medusajs.com/v2/api/admin#customers_getcustomers)
|
65
|
+
* API route.
|
66
|
+
*
|
67
|
+
* @param queryParams - Filters and pagination configurations.
|
68
|
+
* @param headers - Headers to pass in the request.
|
69
|
+
* @returns The paginated list of customers.
|
70
|
+
*
|
71
|
+
* @example
|
72
|
+
* To retrieve the list of customers:
|
73
|
+
*
|
74
|
+
* ```ts
|
75
|
+
* sdk.admin.customer.list()
|
76
|
+
* .then(({ customers, count, limit, offset }) => {
|
77
|
+
* console.log(customers)
|
78
|
+
* })
|
79
|
+
* ```
|
80
|
+
*
|
81
|
+
* To configure the pagination, pass the `limit` and `offset` query parameters.
|
82
|
+
*
|
83
|
+
* For example, to retrieve only 10 items and skip 10 items:
|
84
|
+
*
|
85
|
+
* ```ts
|
86
|
+
* sdk.admin.customer.list({
|
87
|
+
* limit: 10,
|
88
|
+
* offset: 10
|
89
|
+
* })
|
90
|
+
* .then(({ customers, count, limit, offset }) => {
|
91
|
+
* console.log(customers)
|
92
|
+
* })
|
93
|
+
* ```
|
94
|
+
*
|
95
|
+
* Using the `fields` query parameter, you can specify the fields and relations to retrieve
|
96
|
+
* in each customer:
|
97
|
+
*
|
98
|
+
* ```ts
|
99
|
+
* sdk.admin.customer.list({
|
100
|
+
* fields: "id,*groups"
|
101
|
+
* })
|
102
|
+
* .then(({ customers, count, limit, offset }) => {
|
103
|
+
* console.log(customers)
|
104
|
+
* })
|
105
|
+
* ```
|
106
|
+
*
|
107
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
|
108
|
+
*/
|
27
109
|
async list(queryParams, headers) {
|
28
110
|
return this.client.fetch(`/admin/customers`, {
|
29
111
|
headers,
|
30
112
|
query: queryParams,
|
31
113
|
});
|
32
114
|
}
|
115
|
+
/**
|
116
|
+
* This method retrieves a customer by its ID. It sends a request to the
|
117
|
+
* [Get Customer](https://docs.medusajs.com/v2/api/admin#customers_getcustomersid)
|
118
|
+
* API route.
|
119
|
+
*
|
120
|
+
* @param id - The customer's ID.
|
121
|
+
* @param query - Configure the fields to retrieve in the customer.
|
122
|
+
* @param headers - Headers to pass in the request.
|
123
|
+
* @returns The customer's details.
|
124
|
+
*
|
125
|
+
* @example
|
126
|
+
* To retrieve a customer by its ID:
|
127
|
+
*
|
128
|
+
* ```ts
|
129
|
+
* sdk.admin.customer.retrieve("cus_123")
|
130
|
+
* .then(({ customer }) => {
|
131
|
+
* console.log(customer)
|
132
|
+
* })
|
133
|
+
* ```
|
134
|
+
*
|
135
|
+
* To specify the fields and relations to retrieve:
|
136
|
+
*
|
137
|
+
* ```ts
|
138
|
+
* sdk.admin.customer.retrieve("cus_123", {
|
139
|
+
* fields: "id,*groups"
|
140
|
+
* })
|
141
|
+
* .then(({ customer }) => {
|
142
|
+
* console.log(customer)
|
143
|
+
* })
|
144
|
+
* ```
|
145
|
+
*
|
146
|
+
* Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
|
147
|
+
*/
|
33
148
|
async retrieve(id, query, headers) {
|
34
149
|
return this.client.fetch(`/admin/customers/${id}`, {
|
35
150
|
query,
|
36
151
|
headers,
|
37
152
|
});
|
38
153
|
}
|
154
|
+
/**
|
155
|
+
* This method deletes a customer by its ID. It sends a request to the
|
156
|
+
* [Delete Customer](https://docs.medusajs.com/v2/api/admin#customers_deletecustomersid)
|
157
|
+
* API route.
|
158
|
+
*
|
159
|
+
* @param id - The customer's ID.
|
160
|
+
* @param headers - Headers to pass in the request.
|
161
|
+
* @returns The deletion's details.
|
162
|
+
*
|
163
|
+
* @example
|
164
|
+
* sdk.admin.customer.delete("cus_123")
|
165
|
+
* .then(({ deleted }) => {
|
166
|
+
* console.log(deleted)
|
167
|
+
* })
|
168
|
+
*/
|
39
169
|
async delete(id, headers) {
|
40
170
|
return this.client.fetch(`/admin/customers/${id}`, {
|
41
171
|
method: "DELETE",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"customer.js","sourceRoot":"","sources":["../../src/admin/customer.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"customer.js","sourceRoot":"","sources":["../../src/admin/customer.ts"],"names":[],"mappings":";;;AAOA,MAAa,QAAQ;IAKnB;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,KAAK,CAAC,MAAM,CACV,IAAmC,EACnC,KAAoB,EACpB,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAEtB,kBAAkB,EAAE;YACpB,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CAAC,CAAA;IACJ,CAAC;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,KAAK,CAAC,MAAM,CACV,EAAU,EACV,IAAmC,EACnC,KAAoB,EACpB,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,oBAAoB,EAAE,EAAE,EACxB;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACH,KAAK,CAAC,IAAI,CACR,WAA4C,EAC5C,OAAuB;QAEvB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAEtB,kBAAkB,EAAE;YACpB,OAAO;YACP,KAAK,EAAE,WAAW;SACnB,CAAC,CAAA;IACJ,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACH,KAAK,CAAC,QAAQ,CAAC,EAAU,EAAE,KAAoB,EAAE,OAAuB;QACtE,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CACtB,oBAAoB,EAAE,EAAE,EACxB;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,oBAAoB,EAAE,EAAE,EACxB;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;SACR,CACF,CAAA;IACH,CAAC;CACF;AA7MD,4BA6MC"}
|