@matchi/api 0.20241204.1 → 0.20241210.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/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -145,6 +145,10 @@ type activityOccasion = {
|
|
|
145
145
|
activityEvent?: ActivityEvent;
|
|
146
146
|
externalServiceProperties: Array<ExternalServiceProperty>;
|
|
147
147
|
canBeCancelledByUser: boolean;
|
|
148
|
+
/**
|
|
149
|
+
* Price for members with no fee
|
|
150
|
+
*/
|
|
151
|
+
membersPrice?: number;
|
|
148
152
|
/**
|
|
149
153
|
* Fee for members
|
|
150
154
|
*/
|
|
@@ -1256,6 +1260,7 @@ type playSession = {
|
|
|
1256
1260
|
settings: playSessionSettings;
|
|
1257
1261
|
url: string;
|
|
1258
1262
|
splitPayment: boolean;
|
|
1263
|
+
chatId?: string;
|
|
1259
1264
|
};
|
|
1260
1265
|
|
|
1261
1266
|
type playSessionResponse = {
|
package/dist/index.d.ts
CHANGED
|
@@ -145,6 +145,10 @@ type activityOccasion = {
|
|
|
145
145
|
activityEvent?: ActivityEvent;
|
|
146
146
|
externalServiceProperties: Array<ExternalServiceProperty>;
|
|
147
147
|
canBeCancelledByUser: boolean;
|
|
148
|
+
/**
|
|
149
|
+
* Price for members with no fee
|
|
150
|
+
*/
|
|
151
|
+
membersPrice?: number;
|
|
148
152
|
/**
|
|
149
153
|
* Fee for members
|
|
150
154
|
*/
|
|
@@ -1256,6 +1260,7 @@ type playSession = {
|
|
|
1256
1260
|
settings: playSessionSettings;
|
|
1257
1261
|
url: string;
|
|
1258
1262
|
splitPayment: boolean;
|
|
1263
|
+
chatId?: string;
|
|
1259
1264
|
};
|
|
1260
1265
|
|
|
1261
1266
|
type playSessionResponse = {
|