@compassdigital/sdk.typescript 4.594.0 → 4.596.0
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/index.d.ts +10 -5
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/consumer.d.ts +8 -0
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/discount.d.ts +11 -17
- package/lib/interface/discount.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +22 -4
- package/src/interface/consumer.ts +15 -0
- package/src/interface/discount.ts +13 -22
package/lib/index.js
CHANGED
|
@@ -6177,6 +6177,15 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6177
6177
|
consumer_post_external_exchange_login_code(partner, body, options) {
|
|
6178
6178
|
return this.request('consumer', '/consumer/{partner}/user/exchange-login-code', 'POST', `/consumer/${partner}/user/exchange-login-code`, body, options);
|
|
6179
6179
|
}
|
|
6180
|
+
/**
|
|
6181
|
+
* GET /consumer/user/mealplan/{locationId}/barcode - Get user mealplan barcode
|
|
6182
|
+
*
|
|
6183
|
+
* @param locationId
|
|
6184
|
+
* @param options - additional request options
|
|
6185
|
+
*/
|
|
6186
|
+
get_consumer_user_mealplan_barcode(locationId, options) {
|
|
6187
|
+
return this.request('consumer', '/consumer/user/mealplan/{locationId}/barcode', 'GET', `/consumer/user/mealplan/${locationId}/barcode`, null, options);
|
|
6188
|
+
}
|
|
6180
6189
|
/**
|
|
6181
6190
|
* POST /ai/language/generate - Generate text from a given prompt
|
|
6182
6191
|
*
|