@compassdigital/sdk.typescript 4.548.0 → 4.550.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 +9 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +8 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/centricos.d.ts +12 -0
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/consumer.d.ts +2 -2
- package/lib/interface/consumer.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +22 -0
- package/src/interface/centricos.ts +21 -0
- package/src/interface/consumer.ts +24 -2
|
@@ -2998,39 +2998,61 @@ export interface ConsumerPutMealplanResponse {
|
|
|
2998
2998
|
}
|
|
2999
2999
|
|
|
3000
3000
|
export interface ConsumerMealplan {
|
|
3001
|
+
// The meal plan ID
|
|
3001
3002
|
id?: string;
|
|
3003
|
+
// The meal plan tender
|
|
3002
3004
|
tender?: string;
|
|
3005
|
+
// The meal plan total
|
|
3003
3006
|
total?: number;
|
|
3007
|
+
// The meal plan type
|
|
3004
3008
|
type?: string;
|
|
3005
3009
|
}
|
|
3006
3010
|
|
|
3007
3011
|
export interface ConsumerCreditCard {
|
|
3012
|
+
// The credit card type
|
|
3008
3013
|
card_type?: string;
|
|
3014
|
+
// The last 4 digits of the card number
|
|
3009
3015
|
last4?: string;
|
|
3016
|
+
// The credit card total
|
|
3010
3017
|
total?: number;
|
|
3018
|
+
// The credit card type
|
|
3011
3019
|
type?: string;
|
|
3012
3020
|
}
|
|
3013
3021
|
|
|
3014
3022
|
export interface ConsumerDigitalWalletPay {
|
|
3023
|
+
// The digital wallet type
|
|
3015
3024
|
wallet_type?: string;
|
|
3016
|
-
total
|
|
3017
|
-
|
|
3025
|
+
// The digital wallet total
|
|
3026
|
+
total: number;
|
|
3027
|
+
// The digital wallet type
|
|
3028
|
+
type: string;
|
|
3018
3029
|
}
|
|
3019
3030
|
|
|
3020
3031
|
export interface ConsumerMealSwipes {
|
|
3032
|
+
// The meal swipes ID
|
|
3021
3033
|
id?: string;
|
|
3034
|
+
// The meal swipes tender
|
|
3022
3035
|
tender?: string;
|
|
3036
|
+
// The meal swipes tender type
|
|
3023
3037
|
tender_type?: string;
|
|
3038
|
+
// The meal swipes tender name
|
|
3024
3039
|
tender_name?: string;
|
|
3040
|
+
// The meal swipes swipes
|
|
3025
3041
|
swipes?: number;
|
|
3042
|
+
// The meal swipes rate
|
|
3026
3043
|
rate?: number;
|
|
3044
|
+
// The meal swipes total
|
|
3027
3045
|
total?: number;
|
|
3046
|
+
// The meal swipes type
|
|
3028
3047
|
type?: string;
|
|
3029
3048
|
}
|
|
3030
3049
|
|
|
3031
3050
|
export interface ConsumerMealExchange {
|
|
3051
|
+
// The meal exchange ID
|
|
3032
3052
|
id?: string;
|
|
3053
|
+
// The meal exchange tender
|
|
3033
3054
|
tender?: string;
|
|
3055
|
+
// The meal exchange type
|
|
3034
3056
|
type?: string;
|
|
3035
3057
|
}
|
|
3036
3058
|
|