@matchi/api 0.20260511.1 → 0.20260512.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/main/index.d.mts +10 -0
- package/dist/main/index.d.ts +10 -0
- package/dist/main/index.js +6 -5
- package/dist/main/index.mjs +6 -5
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -4049,6 +4049,11 @@ type Recommendation = {
|
|
|
4049
4049
|
* Minimum skill level (1-10). Null if not set.
|
|
4050
4050
|
*/
|
|
4051
4051
|
level_min?: number | null;
|
|
4052
|
+
/**
|
|
4053
|
+
* Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.
|
|
4054
|
+
*
|
|
4055
|
+
*/
|
|
4056
|
+
members_only?: boolean | null;
|
|
4052
4057
|
/**
|
|
4053
4058
|
* Display name for the recommendation card.
|
|
4054
4059
|
*/
|
|
@@ -6871,6 +6876,11 @@ declare const RecommendationSchema: {
|
|
|
6871
6876
|
readonly nullable: true;
|
|
6872
6877
|
readonly type: "integer";
|
|
6873
6878
|
};
|
|
6879
|
+
readonly members_only: {
|
|
6880
|
+
readonly description: "Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.\n";
|
|
6881
|
+
readonly nullable: true;
|
|
6882
|
+
readonly type: "boolean";
|
|
6883
|
+
};
|
|
6874
6884
|
readonly name: {
|
|
6875
6885
|
readonly description: "Display name for the recommendation card.";
|
|
6876
6886
|
readonly type: "string";
|
package/dist/main/index.d.ts
CHANGED
|
@@ -4049,6 +4049,11 @@ type Recommendation = {
|
|
|
4049
4049
|
* Minimum skill level (1-10). Null if not set.
|
|
4050
4050
|
*/
|
|
4051
4051
|
level_min?: number | null;
|
|
4052
|
+
/**
|
|
4053
|
+
* Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.
|
|
4054
|
+
*
|
|
4055
|
+
*/
|
|
4056
|
+
members_only?: boolean | null;
|
|
4052
4057
|
/**
|
|
4053
4058
|
* Display name for the recommendation card.
|
|
4054
4059
|
*/
|
|
@@ -6871,6 +6876,11 @@ declare const RecommendationSchema: {
|
|
|
6871
6876
|
readonly nullable: true;
|
|
6872
6877
|
readonly type: "integer";
|
|
6873
6878
|
};
|
|
6879
|
+
readonly members_only: {
|
|
6880
|
+
readonly description: "Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.\n";
|
|
6881
|
+
readonly nullable: true;
|
|
6882
|
+
readonly type: "boolean";
|
|
6883
|
+
};
|
|
6874
6884
|
readonly name: {
|
|
6875
6885
|
readonly description: "Display name for the recommendation card.";
|
|
6876
6886
|
readonly type: "string";
|