@redotech/redo-api-schema 2.2.194 → 2.2.198
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/lib/openapi.d.ts +4 -4
- package/lib/openapi.yaml +2 -2
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -117,9 +117,9 @@ export interface paths {
|
|
|
117
117
|
"/stores/{storeId}/customer-subscriptions": {
|
|
118
118
|
/**
|
|
119
119
|
* Update customer subscriptions
|
|
120
|
-
* @description Update customer subscription status for SMS and email marketing and transactional messages.
|
|
120
|
+
* @description Update customer subscription status for SMS and email marketing and transactional messages. If the customer with that phone number or email does not exist, it will be created.
|
|
121
121
|
*/
|
|
122
|
-
post: operations["
|
|
122
|
+
post: operations["Customer subscriptions update"];
|
|
123
123
|
};
|
|
124
124
|
"/stores/{storeId}/invoices": {
|
|
125
125
|
/**
|
|
@@ -1818,9 +1818,9 @@ export interface operations {
|
|
|
1818
1818
|
};
|
|
1819
1819
|
/**
|
|
1820
1820
|
* Update customer subscriptions
|
|
1821
|
-
* @description Update customer subscription status for SMS and email marketing and transactional messages.
|
|
1821
|
+
* @description Update customer subscription status for SMS and email marketing and transactional messages. If the customer with that phone number or email does not exist, it will be created.
|
|
1822
1822
|
*/
|
|
1823
|
-
|
|
1823
|
+
"Customer subscriptions update": {
|
|
1824
1824
|
parameters: {
|
|
1825
1825
|
path: {
|
|
1826
1826
|
storeId: components["parameters"]["store-id.param"];
|
package/lib/openapi.yaml
CHANGED
|
@@ -2041,8 +2041,8 @@ paths:
|
|
|
2041
2041
|
/stores/{storeId}/customer-subscriptions:
|
|
2042
2042
|
description: Update customer subscription preferences for marketing and transactional messages.
|
|
2043
2043
|
post:
|
|
2044
|
-
description: Update customer subscription status for SMS and email marketing and transactional messages.
|
|
2045
|
-
operationId:
|
|
2044
|
+
description: Update customer subscription status for SMS and email marketing and transactional messages. If the customer with that phone number or email does not exist, it will be created.
|
|
2045
|
+
operationId: Customer subscriptions update
|
|
2046
2046
|
parameters:
|
|
2047
2047
|
- $ref: '#/components/parameters/store-id.param'
|
|
2048
2048
|
requestBody:
|
package/package.json
CHANGED