@matchi/api 0.20260624.1 → 0.20260624.2
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 +7 -3
- package/dist/main/index.d.ts +7 -3
- package/dist/main/index.js +8 -8
- package/dist/main/index.mjs +8 -8
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3694,7 +3694,7 @@ type CommunityItem = {
|
|
|
3694
3694
|
member_count: number;
|
|
3695
3695
|
name: string;
|
|
3696
3696
|
posting_permission: PostingPermission;
|
|
3697
|
-
status: MembershipStatus;
|
|
3697
|
+
status: MembershipStatus | null;
|
|
3698
3698
|
unread_post_count: number;
|
|
3699
3699
|
updated_at: string;
|
|
3700
3700
|
visibility: Visibility;
|
|
@@ -4521,6 +4521,7 @@ type UsersProfilesPaginatedResponse = {
|
|
|
4521
4521
|
};
|
|
4522
4522
|
declare const Visibility: {
|
|
4523
4523
|
readonly HIDDEN: "HIDDEN";
|
|
4524
|
+
readonly VISIBLE: "VISIBLE";
|
|
4524
4525
|
};
|
|
4525
4526
|
type Visibility = typeof Visibility[keyof typeof Visibility];
|
|
4526
4527
|
/**
|
|
@@ -6759,7 +6760,10 @@ declare const CommunityItemSchema: {
|
|
|
6759
6760
|
readonly $ref: "#/components/schemas/PostingPermission";
|
|
6760
6761
|
};
|
|
6761
6762
|
readonly status: {
|
|
6762
|
-
readonly
|
|
6763
|
+
readonly allOf: readonly [{
|
|
6764
|
+
readonly $ref: "#/components/schemas/MembershipStatus";
|
|
6765
|
+
}];
|
|
6766
|
+
readonly nullable: true;
|
|
6763
6767
|
};
|
|
6764
6768
|
readonly unread_post_count: {
|
|
6765
6769
|
readonly type: "integer";
|
|
@@ -8665,7 +8669,7 @@ declare const UsersProfilesPaginatedResponseSchema: {
|
|
|
8665
8669
|
readonly type: "object";
|
|
8666
8670
|
};
|
|
8667
8671
|
declare const VisibilitySchema: {
|
|
8668
|
-
readonly enum: readonly ["HIDDEN"];
|
|
8672
|
+
readonly enum: readonly ["HIDDEN", "VISIBLE"];
|
|
8669
8673
|
readonly type: "string";
|
|
8670
8674
|
};
|
|
8671
8675
|
declare const pkgOpenapiSharedCursorPaginatedResultSetSchema$1: {
|
package/dist/main/index.d.ts
CHANGED
|
@@ -3694,7 +3694,7 @@ type CommunityItem = {
|
|
|
3694
3694
|
member_count: number;
|
|
3695
3695
|
name: string;
|
|
3696
3696
|
posting_permission: PostingPermission;
|
|
3697
|
-
status: MembershipStatus;
|
|
3697
|
+
status: MembershipStatus | null;
|
|
3698
3698
|
unread_post_count: number;
|
|
3699
3699
|
updated_at: string;
|
|
3700
3700
|
visibility: Visibility;
|
|
@@ -4521,6 +4521,7 @@ type UsersProfilesPaginatedResponse = {
|
|
|
4521
4521
|
};
|
|
4522
4522
|
declare const Visibility: {
|
|
4523
4523
|
readonly HIDDEN: "HIDDEN";
|
|
4524
|
+
readonly VISIBLE: "VISIBLE";
|
|
4524
4525
|
};
|
|
4525
4526
|
type Visibility = typeof Visibility[keyof typeof Visibility];
|
|
4526
4527
|
/**
|
|
@@ -6759,7 +6760,10 @@ declare const CommunityItemSchema: {
|
|
|
6759
6760
|
readonly $ref: "#/components/schemas/PostingPermission";
|
|
6760
6761
|
};
|
|
6761
6762
|
readonly status: {
|
|
6762
|
-
readonly
|
|
6763
|
+
readonly allOf: readonly [{
|
|
6764
|
+
readonly $ref: "#/components/schemas/MembershipStatus";
|
|
6765
|
+
}];
|
|
6766
|
+
readonly nullable: true;
|
|
6763
6767
|
};
|
|
6764
6768
|
readonly unread_post_count: {
|
|
6765
6769
|
readonly type: "integer";
|
|
@@ -8665,7 +8669,7 @@ declare const UsersProfilesPaginatedResponseSchema: {
|
|
|
8665
8669
|
readonly type: "object";
|
|
8666
8670
|
};
|
|
8667
8671
|
declare const VisibilitySchema: {
|
|
8668
|
-
readonly enum: readonly ["HIDDEN"];
|
|
8672
|
+
readonly enum: readonly ["HIDDEN", "VISIBLE"];
|
|
8669
8673
|
readonly type: "string";
|
|
8670
8674
|
};
|
|
8671
8675
|
declare const pkgOpenapiSharedCursorPaginatedResultSetSchema$1: {
|