bigal 15.11.6 → 15.11.7
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/CHANGELOG.md +7 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/docs/package-lock.json +265 -265
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
+
## [15.11.7](https://github.com/bigalorm/bigal/compare/v15.11.6...v15.11.7) (2026-04-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* Return Pick<QueryResult<T>> from chained .select() ([#390](https://github.com/bigalorm/bigal/issues/390)) ([89780a4](https://github.com/bigalorm/bigal/commit/89780a4068c312fcf59b8598eb35792e3b498918))
|
|
6
|
+
|
|
1
7
|
## [15.11.6](https://github.com/bigalorm/bigal/compare/v15.11.5...v15.11.6) (2026-04-07)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
- Accept readonly arrays for column enum values ([4843e01](https://github.com/bigalorm/bigal/commit/4843e0117eedae2d0b601d9148ff2a885fad5f27))
|
|
6
12
|
|
|
7
13
|
## [15.11.5](https://github.com/bigalorm/bigal/compare/v15.11.4...v15.11.5) (2026-03-23)
|
|
8
14
|
|
package/dist/index.d.cts
CHANGED
|
@@ -875,7 +875,7 @@ interface PopulateArgs<T extends Entity, K extends keyof T> {
|
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
interface FindOneResultJSON<T extends Entity, TReturn, TJoins extends JoinInfo = never> extends PromiseLike<PlainObject<TReturn> | null> {
|
|
878
|
-
select<TKeys extends string & keyof T
|
|
878
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindOneResultJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
879
879
|
where(args: JoinedWhereQuery<T, TJoins>): FindOneResultJSON<T, TReturn, TJoins>;
|
|
880
880
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindOneResultJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
881
881
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindOneResultJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -885,7 +885,7 @@ interface FindOneResultJSON<T extends Entity, TReturn, TJoins extends JoinInfo =
|
|
|
885
885
|
UNSAFE_withFieldValue<TProperty extends string & keyof T, TValue extends T[TProperty]>(propertyName: TProperty, value: TValue): FindOneResultJSON<T, Omit<TReturn, TProperty> & PickAsType<T, TProperty, TValue>, TJoins>;
|
|
886
886
|
}
|
|
887
887
|
interface FindOneResult<T extends Entity, TReturn, TJoins extends JoinInfo = never> extends PromiseLike<TReturn | null> {
|
|
888
|
-
select<TKeys extends string & keyof T
|
|
888
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindOneResult<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
889
889
|
where(args: JoinedWhereQuery<T, TJoins>): FindOneResult<T, TReturn, TJoins>;
|
|
890
890
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindOneResult<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
891
891
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindOneResult<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -910,7 +910,7 @@ interface FindWithCountResult<TReturn> {
|
|
|
910
910
|
totalCount: number;
|
|
911
911
|
}
|
|
912
912
|
interface FindQueryWithCountJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<FindWithCountResult<PlainObject<TReturn>>> {
|
|
913
|
-
select<TKeys extends string & keyof T
|
|
913
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindQueryWithCountJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
914
914
|
where(args: JoinedWhereQuery<T, TJoins>): FindQueryWithCountJSON<T, TReturn, TJoins>;
|
|
915
915
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindQueryWithCountJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
916
916
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindQueryWithCountJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -933,7 +933,7 @@ interface FindQueryWithCountJSON<T extends Entity, TReturn, TJoins extends AnyJo
|
|
|
933
933
|
paginate(options: PaginateOptions): FindQueryWithCountJSON<T, TReturn, TJoins>;
|
|
934
934
|
}
|
|
935
935
|
interface FindQueryWithCount<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<FindWithCountResult<TReturn>> {
|
|
936
|
-
select<TKeys extends string & keyof T
|
|
936
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindQueryWithCount<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
937
937
|
where(args: JoinedWhereQuery<T, TJoins>): FindQueryWithCount<T, TReturn, TJoins>;
|
|
938
938
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindQueryWithCount<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
939
939
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindQueryWithCount<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -962,7 +962,7 @@ interface FindQueryWithCount<T extends Entity, TReturn, TJoins extends AnyJoinIn
|
|
|
962
962
|
}
|
|
963
963
|
|
|
964
964
|
interface FindResultJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<PlainObject<TReturn>[]> {
|
|
965
|
-
select<TKeys extends string & keyof T
|
|
965
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindResultJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
966
966
|
where(args: JoinedWhereQuery<T, TJoins>): FindResultJSON<T, TReturn, TJoins>;
|
|
967
967
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindResultJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
968
968
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindResultJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -1011,7 +1011,7 @@ interface FindResultJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo =
|
|
|
1011
1011
|
UNSAFE_withOriginalFieldType<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T>(propertyName: TProperty): FindResultJSON<T, Omit<TReturn, TProperty> & Pick<T, TProperty>, TJoins>;
|
|
1012
1012
|
}
|
|
1013
1013
|
interface FindResult<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<TReturn[]> {
|
|
1014
|
-
select<TKeys extends string & keyof T
|
|
1014
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindResult<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
1015
1015
|
where(args: JoinedWhereQuery<T, TJoins>): FindResult<T, TReturn, TJoins>;
|
|
1016
1016
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindResult<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
1017
1017
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindResult<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
package/dist/index.d.mts
CHANGED
|
@@ -875,7 +875,7 @@ interface PopulateArgs<T extends Entity, K extends keyof T> {
|
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
interface FindOneResultJSON<T extends Entity, TReturn, TJoins extends JoinInfo = never> extends PromiseLike<PlainObject<TReturn> | null> {
|
|
878
|
-
select<TKeys extends string & keyof T
|
|
878
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindOneResultJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
879
879
|
where(args: JoinedWhereQuery<T, TJoins>): FindOneResultJSON<T, TReturn, TJoins>;
|
|
880
880
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindOneResultJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
881
881
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindOneResultJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -885,7 +885,7 @@ interface FindOneResultJSON<T extends Entity, TReturn, TJoins extends JoinInfo =
|
|
|
885
885
|
UNSAFE_withFieldValue<TProperty extends string & keyof T, TValue extends T[TProperty]>(propertyName: TProperty, value: TValue): FindOneResultJSON<T, Omit<TReturn, TProperty> & PickAsType<T, TProperty, TValue>, TJoins>;
|
|
886
886
|
}
|
|
887
887
|
interface FindOneResult<T extends Entity, TReturn, TJoins extends JoinInfo = never> extends PromiseLike<TReturn | null> {
|
|
888
|
-
select<TKeys extends string & keyof T
|
|
888
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindOneResult<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
889
889
|
where(args: JoinedWhereQuery<T, TJoins>): FindOneResult<T, TReturn, TJoins>;
|
|
890
890
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindOneResult<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
891
891
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindOneResult<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -910,7 +910,7 @@ interface FindWithCountResult<TReturn> {
|
|
|
910
910
|
totalCount: number;
|
|
911
911
|
}
|
|
912
912
|
interface FindQueryWithCountJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<FindWithCountResult<PlainObject<TReturn>>> {
|
|
913
|
-
select<TKeys extends string & keyof T
|
|
913
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindQueryWithCountJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
914
914
|
where(args: JoinedWhereQuery<T, TJoins>): FindQueryWithCountJSON<T, TReturn, TJoins>;
|
|
915
915
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindQueryWithCountJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
916
916
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindQueryWithCountJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -933,7 +933,7 @@ interface FindQueryWithCountJSON<T extends Entity, TReturn, TJoins extends AnyJo
|
|
|
933
933
|
paginate(options: PaginateOptions): FindQueryWithCountJSON<T, TReturn, TJoins>;
|
|
934
934
|
}
|
|
935
935
|
interface FindQueryWithCount<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<FindWithCountResult<TReturn>> {
|
|
936
|
-
select<TKeys extends string & keyof T
|
|
936
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindQueryWithCount<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
937
937
|
where(args: JoinedWhereQuery<T, TJoins>): FindQueryWithCount<T, TReturn, TJoins>;
|
|
938
938
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindQueryWithCount<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
939
939
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindQueryWithCount<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -962,7 +962,7 @@ interface FindQueryWithCount<T extends Entity, TReturn, TJoins extends AnyJoinIn
|
|
|
962
962
|
}
|
|
963
963
|
|
|
964
964
|
interface FindResultJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<PlainObject<TReturn>[]> {
|
|
965
|
-
select<TKeys extends string & keyof T
|
|
965
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindResultJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
966
966
|
where(args: JoinedWhereQuery<T, TJoins>): FindResultJSON<T, TReturn, TJoins>;
|
|
967
967
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindResultJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
968
968
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindResultJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -1011,7 +1011,7 @@ interface FindResultJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo =
|
|
|
1011
1011
|
UNSAFE_withOriginalFieldType<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T>(propertyName: TProperty): FindResultJSON<T, Omit<TReturn, TProperty> & Pick<T, TProperty>, TJoins>;
|
|
1012
1012
|
}
|
|
1013
1013
|
interface FindResult<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<TReturn[]> {
|
|
1014
|
-
select<TKeys extends string & keyof T
|
|
1014
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindResult<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
1015
1015
|
where(args: JoinedWhereQuery<T, TJoins>): FindResult<T, TReturn, TJoins>;
|
|
1016
1016
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindResult<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
1017
1017
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindResult<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
package/dist/index.d.ts
CHANGED
|
@@ -875,7 +875,7 @@ interface PopulateArgs<T extends Entity, K extends keyof T> {
|
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
interface FindOneResultJSON<T extends Entity, TReturn, TJoins extends JoinInfo = never> extends PromiseLike<PlainObject<TReturn> | null> {
|
|
878
|
-
select<TKeys extends string & keyof T
|
|
878
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindOneResultJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
879
879
|
where(args: JoinedWhereQuery<T, TJoins>): FindOneResultJSON<T, TReturn, TJoins>;
|
|
880
880
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindOneResultJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
881
881
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindOneResultJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -885,7 +885,7 @@ interface FindOneResultJSON<T extends Entity, TReturn, TJoins extends JoinInfo =
|
|
|
885
885
|
UNSAFE_withFieldValue<TProperty extends string & keyof T, TValue extends T[TProperty]>(propertyName: TProperty, value: TValue): FindOneResultJSON<T, Omit<TReturn, TProperty> & PickAsType<T, TProperty, TValue>, TJoins>;
|
|
886
886
|
}
|
|
887
887
|
interface FindOneResult<T extends Entity, TReturn, TJoins extends JoinInfo = never> extends PromiseLike<TReturn | null> {
|
|
888
|
-
select<TKeys extends string & keyof T
|
|
888
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindOneResult<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
889
889
|
where(args: JoinedWhereQuery<T, TJoins>): FindOneResult<T, TReturn, TJoins>;
|
|
890
890
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindOneResult<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
891
891
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindOneResult<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -910,7 +910,7 @@ interface FindWithCountResult<TReturn> {
|
|
|
910
910
|
totalCount: number;
|
|
911
911
|
}
|
|
912
912
|
interface FindQueryWithCountJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<FindWithCountResult<PlainObject<TReturn>>> {
|
|
913
|
-
select<TKeys extends string & keyof T
|
|
913
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindQueryWithCountJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
914
914
|
where(args: JoinedWhereQuery<T, TJoins>): FindQueryWithCountJSON<T, TReturn, TJoins>;
|
|
915
915
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindQueryWithCountJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
916
916
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindQueryWithCountJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -933,7 +933,7 @@ interface FindQueryWithCountJSON<T extends Entity, TReturn, TJoins extends AnyJo
|
|
|
933
933
|
paginate(options: PaginateOptions): FindQueryWithCountJSON<T, TReturn, TJoins>;
|
|
934
934
|
}
|
|
935
935
|
interface FindQueryWithCount<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<FindWithCountResult<TReturn>> {
|
|
936
|
-
select<TKeys extends string & keyof T
|
|
936
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindQueryWithCount<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
937
937
|
where(args: JoinedWhereQuery<T, TJoins>): FindQueryWithCount<T, TReturn, TJoins>;
|
|
938
938
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindQueryWithCount<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
939
939
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindQueryWithCount<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -962,7 +962,7 @@ interface FindQueryWithCount<T extends Entity, TReturn, TJoins extends AnyJoinIn
|
|
|
962
962
|
}
|
|
963
963
|
|
|
964
964
|
interface FindResultJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<PlainObject<TReturn>[]> {
|
|
965
|
-
select<TKeys extends string & keyof T
|
|
965
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindResultJSON<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
966
966
|
where(args: JoinedWhereQuery<T, TJoins>): FindResultJSON<T, TReturn, TJoins>;
|
|
967
967
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindResultJSON<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
968
968
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindResultJSON<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
|
@@ -1011,7 +1011,7 @@ interface FindResultJSON<T extends Entity, TReturn, TJoins extends AnyJoinInfo =
|
|
|
1011
1011
|
UNSAFE_withOriginalFieldType<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T>(propertyName: TProperty): FindResultJSON<T, Omit<TReturn, TProperty> & Pick<T, TProperty>, TJoins>;
|
|
1012
1012
|
}
|
|
1013
1013
|
interface FindResult<T extends Entity, TReturn, TJoins extends AnyJoinInfo = never> extends PromiseLike<TReturn[]> {
|
|
1014
|
-
select<TKeys extends string & keyof T
|
|
1014
|
+
select<TKeys extends string & keyof OmitFunctions<QueryResult<T>>>(keys: TKeys[]): FindResult<T, Pick<QueryResult<T>, TKeys>, TJoins>;
|
|
1015
1015
|
where(args: JoinedWhereQuery<T, TJoins>): FindResult<T, TReturn, TJoins>;
|
|
1016
1016
|
populate<TProperty extends string & keyof PickByValueType<T, Entity> & keyof T, TPopulateType extends GetValueType<T[TProperty], Entity>, TPopulateSelectKeys extends string & keyof TPopulateType>(propertyName: TProperty, options?: PopulateArgs<TPopulateType, TPopulateSelectKeys>): FindResult<T, Omit<TReturn, TProperty> & Populated<T, TProperty, TPopulateType, TPopulateSelectKeys>, TJoins>;
|
|
1017
1017
|
join<TProperty extends ModelRelationshipKeys<T>, TAlias extends string = TProperty>(propertyName: TProperty, alias?: TAlias): FindResult<T, TReturn, JoinInfo<TProperty, TAlias, GetValueType<T[TProperty], Entity>> | TJoins>;
|
package/docs/package-lock.json
CHANGED
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"node_modules/@algolia/abtesting": {
|
|
14
|
-
"version": "1.
|
|
15
|
-
"resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.
|
|
16
|
-
"integrity": "sha512-
|
|
14
|
+
"version": "1.17.0",
|
|
15
|
+
"resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.17.0.tgz",
|
|
16
|
+
"integrity": "sha512-nuhHZdTiCtRzJEe9VSNzyqE9cOQMt01UWBzymFnjbgwrxxZpbGHQde6Oa/y9zyspTCjbUtb7Q5HQek1CLiLyeg==",
|
|
17
17
|
"dev": true,
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@algolia/client-common": "5.
|
|
21
|
-
"@algolia/requester-browser-xhr": "5.
|
|
22
|
-
"@algolia/requester-fetch": "5.
|
|
23
|
-
"@algolia/requester-node-http": "5.
|
|
20
|
+
"@algolia/client-common": "5.51.0",
|
|
21
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
22
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
23
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">= 14.0.0"
|
|
@@ -76,41 +76,41 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"node_modules/@algolia/client-abtesting": {
|
|
79
|
-
"version": "5.
|
|
80
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.
|
|
81
|
-
"integrity": "sha512-
|
|
79
|
+
"version": "5.51.0",
|
|
80
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.51.0.tgz",
|
|
81
|
+
"integrity": "sha512-PKrKlIla1U2J7mFcIQn6N3pWP4oySmkxShnbbDsj/H7818gKbET5KsUwsVoNjWIxHKTJMCTcQ7ekAJ8Ea23NMg==",
|
|
82
82
|
"dev": true,
|
|
83
83
|
"license": "MIT",
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@algolia/client-common": "5.
|
|
86
|
-
"@algolia/requester-browser-xhr": "5.
|
|
87
|
-
"@algolia/requester-fetch": "5.
|
|
88
|
-
"@algolia/requester-node-http": "5.
|
|
85
|
+
"@algolia/client-common": "5.51.0",
|
|
86
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
87
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
88
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
89
89
|
},
|
|
90
90
|
"engines": {
|
|
91
91
|
"node": ">= 14.0.0"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
"node_modules/@algolia/client-analytics": {
|
|
95
|
-
"version": "5.
|
|
96
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.
|
|
97
|
-
"integrity": "sha512-
|
|
95
|
+
"version": "5.51.0",
|
|
96
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.51.0.tgz",
|
|
97
|
+
"integrity": "sha512-U+HCY1K16Km91pIRL1kN6bW6BbGFAF/WhkRSCx4wyl1aFpbrlhSFQs/dAwWbmyBiHWwVWhl7stWHQ1pum5EfMw==",
|
|
98
98
|
"dev": true,
|
|
99
99
|
"license": "MIT",
|
|
100
100
|
"dependencies": {
|
|
101
|
-
"@algolia/client-common": "5.
|
|
102
|
-
"@algolia/requester-browser-xhr": "5.
|
|
103
|
-
"@algolia/requester-fetch": "5.
|
|
104
|
-
"@algolia/requester-node-http": "5.
|
|
101
|
+
"@algolia/client-common": "5.51.0",
|
|
102
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
103
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
104
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
105
105
|
},
|
|
106
106
|
"engines": {
|
|
107
107
|
"node": ">= 14.0.0"
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
110
|
"node_modules/@algolia/client-common": {
|
|
111
|
-
"version": "5.
|
|
112
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.
|
|
113
|
-
"integrity": "sha512-
|
|
111
|
+
"version": "5.51.0",
|
|
112
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.51.0.tgz",
|
|
113
|
+
"integrity": "sha512-YPJ3dEuZLCRp846Az94t6Z2gwSNRazP+SmBco7p6SCa4fYrtIE820PDXYZshbNrj2Z8Qfbmv7BQ1Lecl5L3G/w==",
|
|
114
114
|
"dev": true,
|
|
115
115
|
"license": "MIT",
|
|
116
116
|
"engines": {
|
|
@@ -118,151 +118,151 @@
|
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"node_modules/@algolia/client-insights": {
|
|
121
|
-
"version": "5.
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.
|
|
123
|
-
"integrity": "sha512
|
|
121
|
+
"version": "5.51.0",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.51.0.tgz",
|
|
123
|
+
"integrity": "sha512-/gEwLlR7fQ7YjOW+ADRZ0NxLDtpTC61FSzlZ01Gdl1kTJfU0Rq3Y/TYqwxGxlQGcUiXtGzrpjxXWh3Y0TZD6NA==",
|
|
124
124
|
"dev": true,
|
|
125
125
|
"license": "MIT",
|
|
126
126
|
"dependencies": {
|
|
127
|
-
"@algolia/client-common": "5.
|
|
128
|
-
"@algolia/requester-browser-xhr": "5.
|
|
129
|
-
"@algolia/requester-fetch": "5.
|
|
130
|
-
"@algolia/requester-node-http": "5.
|
|
127
|
+
"@algolia/client-common": "5.51.0",
|
|
128
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
129
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
130
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
131
131
|
},
|
|
132
132
|
"engines": {
|
|
133
133
|
"node": ">= 14.0.0"
|
|
134
134
|
}
|
|
135
135
|
},
|
|
136
136
|
"node_modules/@algolia/client-personalization": {
|
|
137
|
-
"version": "5.
|
|
138
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.
|
|
139
|
-
"integrity": "sha512-
|
|
137
|
+
"version": "5.51.0",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.51.0.tgz",
|
|
139
|
+
"integrity": "sha512-nRwUN1Y2cKyOAFZyIBagkEfZSIhP05nWhT4Rjwl84lcjECssYggftrAODrZ4leakXxSGjhxs/AdaAFEIBqwVFA==",
|
|
140
140
|
"dev": true,
|
|
141
141
|
"license": "MIT",
|
|
142
142
|
"dependencies": {
|
|
143
|
-
"@algolia/client-common": "5.
|
|
144
|
-
"@algolia/requester-browser-xhr": "5.
|
|
145
|
-
"@algolia/requester-fetch": "5.
|
|
146
|
-
"@algolia/requester-node-http": "5.
|
|
143
|
+
"@algolia/client-common": "5.51.0",
|
|
144
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
145
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
146
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
147
147
|
},
|
|
148
148
|
"engines": {
|
|
149
149
|
"node": ">= 14.0.0"
|
|
150
150
|
}
|
|
151
151
|
},
|
|
152
152
|
"node_modules/@algolia/client-query-suggestions": {
|
|
153
|
-
"version": "5.
|
|
154
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.
|
|
155
|
-
"integrity": "sha512-
|
|
153
|
+
"version": "5.51.0",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.51.0.tgz",
|
|
155
|
+
"integrity": "sha512-pybzYCG7VoQKppo+z5iZOKpW8XqtFxhsAIRgEaNboCnfypKukiBHJAwB+pmr7vMZXBsOHwklGYWwCG82e8qshA==",
|
|
156
156
|
"dev": true,
|
|
157
157
|
"license": "MIT",
|
|
158
158
|
"dependencies": {
|
|
159
|
-
"@algolia/client-common": "5.
|
|
160
|
-
"@algolia/requester-browser-xhr": "5.
|
|
161
|
-
"@algolia/requester-fetch": "5.
|
|
162
|
-
"@algolia/requester-node-http": "5.
|
|
159
|
+
"@algolia/client-common": "5.51.0",
|
|
160
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
161
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
162
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
163
163
|
},
|
|
164
164
|
"engines": {
|
|
165
165
|
"node": ">= 14.0.0"
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
168
|
"node_modules/@algolia/client-search": {
|
|
169
|
-
"version": "5.
|
|
170
|
-
"resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.
|
|
171
|
-
"integrity": "sha512-
|
|
169
|
+
"version": "5.51.0",
|
|
170
|
+
"resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.51.0.tgz",
|
|
171
|
+
"integrity": "sha512-DWVIlj6RqcvdhwP0gBU9OpOQPnHdcAk9jlT+z8rsNb2+liWv4eUlfQZ7saGBraFsnygEHD3PtdppIHvqwBAb5w==",
|
|
172
172
|
"dev": true,
|
|
173
173
|
"license": "MIT",
|
|
174
174
|
"dependencies": {
|
|
175
|
-
"@algolia/client-common": "5.
|
|
176
|
-
"@algolia/requester-browser-xhr": "5.
|
|
177
|
-
"@algolia/requester-fetch": "5.
|
|
178
|
-
"@algolia/requester-node-http": "5.
|
|
175
|
+
"@algolia/client-common": "5.51.0",
|
|
176
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
177
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
178
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
179
179
|
},
|
|
180
180
|
"engines": {
|
|
181
181
|
"node": ">= 14.0.0"
|
|
182
182
|
}
|
|
183
183
|
},
|
|
184
184
|
"node_modules/@algolia/ingestion": {
|
|
185
|
-
"version": "1.
|
|
186
|
-
"resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.
|
|
187
|
-
"integrity": "sha512-
|
|
185
|
+
"version": "1.51.0",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.51.0.tgz",
|
|
187
|
+
"integrity": "sha512-bA25s12iUDJi/X8M7tWlPRT8GeOhls/yDbdoUqinz27lNqsOlcM1UrAxIKdIZ6lm3sXit+ewPIz1pS2x6rXu8g==",
|
|
188
188
|
"dev": true,
|
|
189
189
|
"license": "MIT",
|
|
190
190
|
"dependencies": {
|
|
191
|
-
"@algolia/client-common": "5.
|
|
192
|
-
"@algolia/requester-browser-xhr": "5.
|
|
193
|
-
"@algolia/requester-fetch": "5.
|
|
194
|
-
"@algolia/requester-node-http": "5.
|
|
191
|
+
"@algolia/client-common": "5.51.0",
|
|
192
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
193
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
194
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
195
195
|
},
|
|
196
196
|
"engines": {
|
|
197
197
|
"node": ">= 14.0.0"
|
|
198
198
|
}
|
|
199
199
|
},
|
|
200
200
|
"node_modules/@algolia/monitoring": {
|
|
201
|
-
"version": "1.
|
|
202
|
-
"resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.
|
|
203
|
-
"integrity": "sha512-
|
|
201
|
+
"version": "1.51.0",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.51.0.tgz",
|
|
203
|
+
"integrity": "sha512-zj+RcE5e0NE0/ew6oEOTgOplPHry+w2oi7h0Y87lhdq4E0d7xLS31KVB8kKfCGkrG7AYtZvrcyvLOKS5d0no4Q==",
|
|
204
204
|
"dev": true,
|
|
205
205
|
"license": "MIT",
|
|
206
206
|
"dependencies": {
|
|
207
|
-
"@algolia/client-common": "5.
|
|
208
|
-
"@algolia/requester-browser-xhr": "5.
|
|
209
|
-
"@algolia/requester-fetch": "5.
|
|
210
|
-
"@algolia/requester-node-http": "5.
|
|
207
|
+
"@algolia/client-common": "5.51.0",
|
|
208
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
209
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
210
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
211
211
|
},
|
|
212
212
|
"engines": {
|
|
213
213
|
"node": ">= 14.0.0"
|
|
214
214
|
}
|
|
215
215
|
},
|
|
216
216
|
"node_modules/@algolia/recommend": {
|
|
217
|
-
"version": "5.
|
|
218
|
-
"resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.
|
|
219
|
-
"integrity": "sha512
|
|
217
|
+
"version": "5.51.0",
|
|
218
|
+
"resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.51.0.tgz",
|
|
219
|
+
"integrity": "sha512-/HDgccfye1Rq3bPxaSCsvSEBHzSMmtpM9ZRGRtAuC62Cv+ql/76IWnxjGTDXtqIJ+/j7ZlFYAzq9fkp95wF2SQ==",
|
|
220
220
|
"dev": true,
|
|
221
221
|
"license": "MIT",
|
|
222
222
|
"dependencies": {
|
|
223
|
-
"@algolia/client-common": "5.
|
|
224
|
-
"@algolia/requester-browser-xhr": "5.
|
|
225
|
-
"@algolia/requester-fetch": "5.
|
|
226
|
-
"@algolia/requester-node-http": "5.
|
|
223
|
+
"@algolia/client-common": "5.51.0",
|
|
224
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
225
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
226
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
227
227
|
},
|
|
228
228
|
"engines": {
|
|
229
229
|
"node": ">= 14.0.0"
|
|
230
230
|
}
|
|
231
231
|
},
|
|
232
232
|
"node_modules/@algolia/requester-browser-xhr": {
|
|
233
|
-
"version": "5.
|
|
234
|
-
"resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.
|
|
235
|
-
"integrity": "sha512-
|
|
233
|
+
"version": "5.51.0",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.51.0.tgz",
|
|
235
|
+
"integrity": "sha512-nJdW+WBwGlXWMJbxxB7/AJPvNq0lLJSudXmIQCJbmH8jsOXQhRpAtoCD4ceLyJKv3ze9JbQu4Gqu5JDLckuFcw==",
|
|
236
236
|
"dev": true,
|
|
237
237
|
"license": "MIT",
|
|
238
238
|
"dependencies": {
|
|
239
|
-
"@algolia/client-common": "5.
|
|
239
|
+
"@algolia/client-common": "5.51.0"
|
|
240
240
|
},
|
|
241
241
|
"engines": {
|
|
242
242
|
"node": ">= 14.0.0"
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
"node_modules/@algolia/requester-fetch": {
|
|
246
|
-
"version": "5.
|
|
247
|
-
"resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.
|
|
248
|
-
"integrity": "sha512-
|
|
246
|
+
"version": "5.51.0",
|
|
247
|
+
"resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.51.0.tgz",
|
|
248
|
+
"integrity": "sha512-bsBgRI/1h1mjS3eCyfGau78yGZVmiDLmT1aU6dMnk75/T0SgKqnSKNpQ53xKoDYVChGDcNnpHXWpoUSo8MH1+w==",
|
|
249
249
|
"dev": true,
|
|
250
250
|
"license": "MIT",
|
|
251
251
|
"dependencies": {
|
|
252
|
-
"@algolia/client-common": "5.
|
|
252
|
+
"@algolia/client-common": "5.51.0"
|
|
253
253
|
},
|
|
254
254
|
"engines": {
|
|
255
255
|
"node": ">= 14.0.0"
|
|
256
256
|
}
|
|
257
257
|
},
|
|
258
258
|
"node_modules/@algolia/requester-node-http": {
|
|
259
|
-
"version": "5.
|
|
260
|
-
"resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.
|
|
261
|
-
"integrity": "sha512-
|
|
259
|
+
"version": "5.51.0",
|
|
260
|
+
"resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.51.0.tgz",
|
|
261
|
+
"integrity": "sha512-zPrIDVPpmKWgrjmWOqpqrhqAhNjvVkjoj+mqw2NBPxEOuKNzP0H+Qz5NJLLTOepBVj1UFedFaF3AUgxLsB9ukQ==",
|
|
262
262
|
"dev": true,
|
|
263
263
|
"license": "MIT",
|
|
264
264
|
"dependencies": {
|
|
265
|
-
"@algolia/client-common": "5.
|
|
265
|
+
"@algolia/client-common": "5.51.0"
|
|
266
266
|
},
|
|
267
267
|
"engines": {
|
|
268
268
|
"node": ">= 14.0.0"
|
|
@@ -761,9 +761,9 @@
|
|
|
761
761
|
}
|
|
762
762
|
},
|
|
763
763
|
"node_modules/@iconify-json/simple-icons": {
|
|
764
|
-
"version": "1.2.
|
|
765
|
-
"resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.
|
|
766
|
-
"integrity": "sha512-
|
|
764
|
+
"version": "1.2.79",
|
|
765
|
+
"resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.79.tgz",
|
|
766
|
+
"integrity": "sha512-aNyO7Fd1qej9oQfIyohYFRv0lhQLaZ+6UkK1c1qwax0MDPUOZOdq65MlU500kow97pD/W+b2u1And3e25eE24Q==",
|
|
767
767
|
"dev": true,
|
|
768
768
|
"license": "CC0-1.0",
|
|
769
769
|
"dependencies": {
|
|
@@ -785,9 +785,9 @@
|
|
|
785
785
|
"license": "MIT"
|
|
786
786
|
},
|
|
787
787
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
788
|
-
"version": "4.60.
|
|
789
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.
|
|
790
|
-
"integrity": "sha512-
|
|
788
|
+
"version": "4.60.2",
|
|
789
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz",
|
|
790
|
+
"integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==",
|
|
791
791
|
"cpu": [
|
|
792
792
|
"arm"
|
|
793
793
|
],
|
|
@@ -799,9 +799,9 @@
|
|
|
799
799
|
]
|
|
800
800
|
},
|
|
801
801
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
802
|
-
"version": "4.60.
|
|
803
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.
|
|
804
|
-
"integrity": "sha512-
|
|
802
|
+
"version": "4.60.2",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz",
|
|
804
|
+
"integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==",
|
|
805
805
|
"cpu": [
|
|
806
806
|
"arm64"
|
|
807
807
|
],
|
|
@@ -813,9 +813,9 @@
|
|
|
813
813
|
]
|
|
814
814
|
},
|
|
815
815
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
816
|
-
"version": "4.60.
|
|
817
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.
|
|
818
|
-
"integrity": "sha512-
|
|
816
|
+
"version": "4.60.2",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.2.tgz",
|
|
818
|
+
"integrity": "sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==",
|
|
819
819
|
"cpu": [
|
|
820
820
|
"arm64"
|
|
821
821
|
],
|
|
@@ -827,9 +827,9 @@
|
|
|
827
827
|
]
|
|
828
828
|
},
|
|
829
829
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
830
|
-
"version": "4.60.
|
|
831
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.
|
|
832
|
-
"integrity": "sha512-
|
|
830
|
+
"version": "4.60.2",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz",
|
|
832
|
+
"integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==",
|
|
833
833
|
"cpu": [
|
|
834
834
|
"x64"
|
|
835
835
|
],
|
|
@@ -841,9 +841,9 @@
|
|
|
841
841
|
]
|
|
842
842
|
},
|
|
843
843
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
844
|
-
"version": "4.60.
|
|
845
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.
|
|
846
|
-
"integrity": "sha512-
|
|
844
|
+
"version": "4.60.2",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz",
|
|
846
|
+
"integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==",
|
|
847
847
|
"cpu": [
|
|
848
848
|
"arm64"
|
|
849
849
|
],
|
|
@@ -855,9 +855,9 @@
|
|
|
855
855
|
]
|
|
856
856
|
},
|
|
857
857
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
858
|
-
"version": "4.60.
|
|
859
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.
|
|
860
|
-
"integrity": "sha512-
|
|
858
|
+
"version": "4.60.2",
|
|
859
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz",
|
|
860
|
+
"integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==",
|
|
861
861
|
"cpu": [
|
|
862
862
|
"x64"
|
|
863
863
|
],
|
|
@@ -869,9 +869,9 @@
|
|
|
869
869
|
]
|
|
870
870
|
},
|
|
871
871
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
872
|
-
"version": "4.60.
|
|
873
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.
|
|
874
|
-
"integrity": "sha512-
|
|
872
|
+
"version": "4.60.2",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz",
|
|
874
|
+
"integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==",
|
|
875
875
|
"cpu": [
|
|
876
876
|
"arm"
|
|
877
877
|
],
|
|
@@ -886,9 +886,9 @@
|
|
|
886
886
|
]
|
|
887
887
|
},
|
|
888
888
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
889
|
-
"version": "4.60.
|
|
890
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.
|
|
891
|
-
"integrity": "sha512-
|
|
889
|
+
"version": "4.60.2",
|
|
890
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz",
|
|
891
|
+
"integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==",
|
|
892
892
|
"cpu": [
|
|
893
893
|
"arm"
|
|
894
894
|
],
|
|
@@ -903,9 +903,9 @@
|
|
|
903
903
|
]
|
|
904
904
|
},
|
|
905
905
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
906
|
-
"version": "4.60.
|
|
907
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.
|
|
908
|
-
"integrity": "sha512-
|
|
906
|
+
"version": "4.60.2",
|
|
907
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz",
|
|
908
|
+
"integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==",
|
|
909
909
|
"cpu": [
|
|
910
910
|
"arm64"
|
|
911
911
|
],
|
|
@@ -920,9 +920,9 @@
|
|
|
920
920
|
]
|
|
921
921
|
},
|
|
922
922
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
923
|
-
"version": "4.60.
|
|
924
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.
|
|
925
|
-
"integrity": "sha512
|
|
923
|
+
"version": "4.60.2",
|
|
924
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz",
|
|
925
|
+
"integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==",
|
|
926
926
|
"cpu": [
|
|
927
927
|
"arm64"
|
|
928
928
|
],
|
|
@@ -937,9 +937,9 @@
|
|
|
937
937
|
]
|
|
938
938
|
},
|
|
939
939
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
940
|
-
"version": "4.60.
|
|
941
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.
|
|
942
|
-
"integrity": "sha512-
|
|
940
|
+
"version": "4.60.2",
|
|
941
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz",
|
|
942
|
+
"integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==",
|
|
943
943
|
"cpu": [
|
|
944
944
|
"loong64"
|
|
945
945
|
],
|
|
@@ -954,9 +954,9 @@
|
|
|
954
954
|
]
|
|
955
955
|
},
|
|
956
956
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
957
|
-
"version": "4.60.
|
|
958
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.
|
|
959
|
-
"integrity": "sha512-
|
|
957
|
+
"version": "4.60.2",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz",
|
|
959
|
+
"integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==",
|
|
960
960
|
"cpu": [
|
|
961
961
|
"loong64"
|
|
962
962
|
],
|
|
@@ -971,9 +971,9 @@
|
|
|
971
971
|
]
|
|
972
972
|
},
|
|
973
973
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
974
|
-
"version": "4.60.
|
|
975
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.
|
|
976
|
-
"integrity": "sha512-
|
|
974
|
+
"version": "4.60.2",
|
|
975
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz",
|
|
976
|
+
"integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==",
|
|
977
977
|
"cpu": [
|
|
978
978
|
"ppc64"
|
|
979
979
|
],
|
|
@@ -988,9 +988,9 @@
|
|
|
988
988
|
]
|
|
989
989
|
},
|
|
990
990
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
991
|
-
"version": "4.60.
|
|
992
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.
|
|
993
|
-
"integrity": "sha512-
|
|
991
|
+
"version": "4.60.2",
|
|
992
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz",
|
|
993
|
+
"integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==",
|
|
994
994
|
"cpu": [
|
|
995
995
|
"ppc64"
|
|
996
996
|
],
|
|
@@ -1005,9 +1005,9 @@
|
|
|
1005
1005
|
]
|
|
1006
1006
|
},
|
|
1007
1007
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1008
|
-
"version": "4.60.
|
|
1009
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.
|
|
1010
|
-
"integrity": "sha512-
|
|
1008
|
+
"version": "4.60.2",
|
|
1009
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz",
|
|
1010
|
+
"integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==",
|
|
1011
1011
|
"cpu": [
|
|
1012
1012
|
"riscv64"
|
|
1013
1013
|
],
|
|
@@ -1022,9 +1022,9 @@
|
|
|
1022
1022
|
]
|
|
1023
1023
|
},
|
|
1024
1024
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1025
|
-
"version": "4.60.
|
|
1026
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.
|
|
1027
|
-
"integrity": "sha512-
|
|
1025
|
+
"version": "4.60.2",
|
|
1026
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz",
|
|
1027
|
+
"integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==",
|
|
1028
1028
|
"cpu": [
|
|
1029
1029
|
"riscv64"
|
|
1030
1030
|
],
|
|
@@ -1039,9 +1039,9 @@
|
|
|
1039
1039
|
]
|
|
1040
1040
|
},
|
|
1041
1041
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1042
|
-
"version": "4.60.
|
|
1043
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.
|
|
1044
|
-
"integrity": "sha512-
|
|
1042
|
+
"version": "4.60.2",
|
|
1043
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz",
|
|
1044
|
+
"integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==",
|
|
1045
1045
|
"cpu": [
|
|
1046
1046
|
"s390x"
|
|
1047
1047
|
],
|
|
@@ -1056,9 +1056,9 @@
|
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
1058
1058
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1059
|
-
"version": "4.60.
|
|
1060
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.
|
|
1061
|
-
"integrity": "sha512-
|
|
1059
|
+
"version": "4.60.2",
|
|
1060
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz",
|
|
1061
|
+
"integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==",
|
|
1062
1062
|
"cpu": [
|
|
1063
1063
|
"x64"
|
|
1064
1064
|
],
|
|
@@ -1073,9 +1073,9 @@
|
|
|
1073
1073
|
]
|
|
1074
1074
|
},
|
|
1075
1075
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1076
|
-
"version": "4.60.
|
|
1077
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.
|
|
1078
|
-
"integrity": "sha512-
|
|
1076
|
+
"version": "4.60.2",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz",
|
|
1078
|
+
"integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==",
|
|
1079
1079
|
"cpu": [
|
|
1080
1080
|
"x64"
|
|
1081
1081
|
],
|
|
@@ -1090,9 +1090,9 @@
|
|
|
1090
1090
|
]
|
|
1091
1091
|
},
|
|
1092
1092
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1093
|
-
"version": "4.60.
|
|
1094
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.
|
|
1095
|
-
"integrity": "sha512-
|
|
1093
|
+
"version": "4.60.2",
|
|
1094
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz",
|
|
1095
|
+
"integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==",
|
|
1096
1096
|
"cpu": [
|
|
1097
1097
|
"x64"
|
|
1098
1098
|
],
|
|
@@ -1104,9 +1104,9 @@
|
|
|
1104
1104
|
]
|
|
1105
1105
|
},
|
|
1106
1106
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1107
|
-
"version": "4.60.
|
|
1108
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.
|
|
1109
|
-
"integrity": "sha512-
|
|
1107
|
+
"version": "4.60.2",
|
|
1108
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz",
|
|
1109
|
+
"integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==",
|
|
1110
1110
|
"cpu": [
|
|
1111
1111
|
"arm64"
|
|
1112
1112
|
],
|
|
@@ -1118,9 +1118,9 @@
|
|
|
1118
1118
|
]
|
|
1119
1119
|
},
|
|
1120
1120
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1121
|
-
"version": "4.60.
|
|
1122
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.
|
|
1123
|
-
"integrity": "sha512-
|
|
1121
|
+
"version": "4.60.2",
|
|
1122
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz",
|
|
1123
|
+
"integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==",
|
|
1124
1124
|
"cpu": [
|
|
1125
1125
|
"arm64"
|
|
1126
1126
|
],
|
|
@@ -1132,9 +1132,9 @@
|
|
|
1132
1132
|
]
|
|
1133
1133
|
},
|
|
1134
1134
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1135
|
-
"version": "4.60.
|
|
1136
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.
|
|
1137
|
-
"integrity": "sha512-
|
|
1135
|
+
"version": "4.60.2",
|
|
1136
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz",
|
|
1137
|
+
"integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==",
|
|
1138
1138
|
"cpu": [
|
|
1139
1139
|
"ia32"
|
|
1140
1140
|
],
|
|
@@ -1146,9 +1146,9 @@
|
|
|
1146
1146
|
]
|
|
1147
1147
|
},
|
|
1148
1148
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1149
|
-
"version": "4.60.
|
|
1150
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.
|
|
1151
|
-
"integrity": "sha512-
|
|
1149
|
+
"version": "4.60.2",
|
|
1150
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz",
|
|
1151
|
+
"integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==",
|
|
1152
1152
|
"cpu": [
|
|
1153
1153
|
"x64"
|
|
1154
1154
|
],
|
|
@@ -1160,9 +1160,9 @@
|
|
|
1160
1160
|
]
|
|
1161
1161
|
},
|
|
1162
1162
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1163
|
-
"version": "4.60.
|
|
1164
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.
|
|
1165
|
-
"integrity": "sha512-
|
|
1163
|
+
"version": "4.60.2",
|
|
1164
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz",
|
|
1165
|
+
"integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==",
|
|
1166
1166
|
"cpu": [
|
|
1167
1167
|
"x64"
|
|
1168
1168
|
],
|
|
@@ -1365,14 +1365,14 @@
|
|
|
1365
1365
|
}
|
|
1366
1366
|
},
|
|
1367
1367
|
"node_modules/@vue/compiler-core": {
|
|
1368
|
-
"version": "3.5.
|
|
1369
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.
|
|
1370
|
-
"integrity": "sha512-
|
|
1368
|
+
"version": "3.5.33",
|
|
1369
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.33.tgz",
|
|
1370
|
+
"integrity": "sha512-3PZLQwFw4Za3TC8t0FvTy3wI16Kt+pmwcgNZca4Pj9iWL2E72a/gZlpBtAJvEdDMdCxdG/qq0C7PN0bsJuv0Rw==",
|
|
1371
1371
|
"dev": true,
|
|
1372
1372
|
"license": "MIT",
|
|
1373
1373
|
"dependencies": {
|
|
1374
1374
|
"@babel/parser": "^7.29.2",
|
|
1375
|
-
"@vue/shared": "3.5.
|
|
1375
|
+
"@vue/shared": "3.5.33",
|
|
1376
1376
|
"entities": "^7.0.1",
|
|
1377
1377
|
"estree-walker": "^2.0.2",
|
|
1378
1378
|
"source-map-js": "^1.2.1"
|
|
@@ -1392,43 +1392,43 @@
|
|
|
1392
1392
|
}
|
|
1393
1393
|
},
|
|
1394
1394
|
"node_modules/@vue/compiler-dom": {
|
|
1395
|
-
"version": "3.5.
|
|
1396
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.
|
|
1397
|
-
"integrity": "sha512-
|
|
1395
|
+
"version": "3.5.33",
|
|
1396
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.33.tgz",
|
|
1397
|
+
"integrity": "sha512-PXq0yrfCLzzL07rbXO4awtXY1Z06LG2eu6Adg3RJFa/j3Cii217XxxLXG22N330gw7GmALCY0Z8RgXEviwgpjA==",
|
|
1398
1398
|
"dev": true,
|
|
1399
1399
|
"license": "MIT",
|
|
1400
1400
|
"dependencies": {
|
|
1401
|
-
"@vue/compiler-core": "3.5.
|
|
1402
|
-
"@vue/shared": "3.5.
|
|
1401
|
+
"@vue/compiler-core": "3.5.33",
|
|
1402
|
+
"@vue/shared": "3.5.33"
|
|
1403
1403
|
}
|
|
1404
1404
|
},
|
|
1405
1405
|
"node_modules/@vue/compiler-sfc": {
|
|
1406
|
-
"version": "3.5.
|
|
1407
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.
|
|
1408
|
-
"integrity": "sha512-
|
|
1406
|
+
"version": "3.5.33",
|
|
1407
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.33.tgz",
|
|
1408
|
+
"integrity": "sha512-UTUvRO9cY+rROrx/pvN9P5Z7FgA6QGfokUCfhQE4EnmUj3rVnK+CHI0LsEO1pg+I7//iRYMUfcNcCPe7tg0CoA==",
|
|
1409
1409
|
"dev": true,
|
|
1410
1410
|
"license": "MIT",
|
|
1411
1411
|
"dependencies": {
|
|
1412
1412
|
"@babel/parser": "^7.29.2",
|
|
1413
|
-
"@vue/compiler-core": "3.5.
|
|
1414
|
-
"@vue/compiler-dom": "3.5.
|
|
1415
|
-
"@vue/compiler-ssr": "3.5.
|
|
1416
|
-
"@vue/shared": "3.5.
|
|
1413
|
+
"@vue/compiler-core": "3.5.33",
|
|
1414
|
+
"@vue/compiler-dom": "3.5.33",
|
|
1415
|
+
"@vue/compiler-ssr": "3.5.33",
|
|
1416
|
+
"@vue/shared": "3.5.33",
|
|
1417
1417
|
"estree-walker": "^2.0.2",
|
|
1418
1418
|
"magic-string": "^0.30.21",
|
|
1419
|
-
"postcss": "^8.5.
|
|
1419
|
+
"postcss": "^8.5.10",
|
|
1420
1420
|
"source-map-js": "^1.2.1"
|
|
1421
1421
|
}
|
|
1422
1422
|
},
|
|
1423
1423
|
"node_modules/@vue/compiler-ssr": {
|
|
1424
|
-
"version": "3.5.
|
|
1425
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.
|
|
1426
|
-
"integrity": "sha512-
|
|
1424
|
+
"version": "3.5.33",
|
|
1425
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.33.tgz",
|
|
1426
|
+
"integrity": "sha512-IErjYdnj1qIupG5xxiVIYiiRvDhGWV4zuh/RCrwfYpuL+HWQzeU6lCk/nF9r7olWMnjKxCAkOctT2qFWFkzb1A==",
|
|
1427
1427
|
"dev": true,
|
|
1428
1428
|
"license": "MIT",
|
|
1429
1429
|
"dependencies": {
|
|
1430
|
-
"@vue/compiler-dom": "3.5.
|
|
1431
|
-
"@vue/shared": "3.5.
|
|
1430
|
+
"@vue/compiler-dom": "3.5.33",
|
|
1431
|
+
"@vue/shared": "3.5.33"
|
|
1432
1432
|
}
|
|
1433
1433
|
},
|
|
1434
1434
|
"node_modules/@vue/devtools-api": {
|
|
@@ -1468,57 +1468,57 @@
|
|
|
1468
1468
|
}
|
|
1469
1469
|
},
|
|
1470
1470
|
"node_modules/@vue/reactivity": {
|
|
1471
|
-
"version": "3.5.
|
|
1472
|
-
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.
|
|
1473
|
-
"integrity": "sha512
|
|
1471
|
+
"version": "3.5.33",
|
|
1472
|
+
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.33.tgz",
|
|
1473
|
+
"integrity": "sha512-p8UfIqyIhb0rYGlSgSBV+lPhF2iUSBcRy7enhTmPqKWadHy9kcOFYF1AejYBP9P+avnd3OBbD49DU4pLWX/94A==",
|
|
1474
1474
|
"dev": true,
|
|
1475
1475
|
"license": "MIT",
|
|
1476
1476
|
"dependencies": {
|
|
1477
|
-
"@vue/shared": "3.5.
|
|
1477
|
+
"@vue/shared": "3.5.33"
|
|
1478
1478
|
}
|
|
1479
1479
|
},
|
|
1480
1480
|
"node_modules/@vue/runtime-core": {
|
|
1481
|
-
"version": "3.5.
|
|
1482
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.
|
|
1483
|
-
"integrity": "sha512-
|
|
1481
|
+
"version": "3.5.33",
|
|
1482
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.33.tgz",
|
|
1483
|
+
"integrity": "sha512-UpFF45RI9//a7rvq7RdOQblb4tup7hHG9QsmIrxkFQLzQ7R8/iNQ5LE15NhLZ1/WcHMU2b47u6P33CPUelHyIQ==",
|
|
1484
1484
|
"dev": true,
|
|
1485
1485
|
"license": "MIT",
|
|
1486
1486
|
"dependencies": {
|
|
1487
|
-
"@vue/reactivity": "3.5.
|
|
1488
|
-
"@vue/shared": "3.5.
|
|
1487
|
+
"@vue/reactivity": "3.5.33",
|
|
1488
|
+
"@vue/shared": "3.5.33"
|
|
1489
1489
|
}
|
|
1490
1490
|
},
|
|
1491
1491
|
"node_modules/@vue/runtime-dom": {
|
|
1492
|
-
"version": "3.5.
|
|
1493
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.
|
|
1494
|
-
"integrity": "sha512-
|
|
1492
|
+
"version": "3.5.33",
|
|
1493
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.33.tgz",
|
|
1494
|
+
"integrity": "sha512-IOxMsAOwquhfITgmOgaPYl7/j8gKUxUFoflRc+u4LxyD3+783xne8vNta1PONVCvCV9A0w7hkyEepINDqfO0tw==",
|
|
1495
1495
|
"dev": true,
|
|
1496
1496
|
"license": "MIT",
|
|
1497
1497
|
"dependencies": {
|
|
1498
|
-
"@vue/reactivity": "3.5.
|
|
1499
|
-
"@vue/runtime-core": "3.5.
|
|
1500
|
-
"@vue/shared": "3.5.
|
|
1498
|
+
"@vue/reactivity": "3.5.33",
|
|
1499
|
+
"@vue/runtime-core": "3.5.33",
|
|
1500
|
+
"@vue/shared": "3.5.33",
|
|
1501
1501
|
"csstype": "^3.2.3"
|
|
1502
1502
|
}
|
|
1503
1503
|
},
|
|
1504
1504
|
"node_modules/@vue/server-renderer": {
|
|
1505
|
-
"version": "3.5.
|
|
1506
|
-
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.
|
|
1507
|
-
"integrity": "sha512-
|
|
1505
|
+
"version": "3.5.33",
|
|
1506
|
+
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.33.tgz",
|
|
1507
|
+
"integrity": "sha512-0xylq/8/h44lVG0pZFknv1XIdEgymq2E9n59uTWJBG+dIgiT0TMCSsxrN7nO16Z0MU0MPjFcguBbZV8Itk52Hw==",
|
|
1508
1508
|
"dev": true,
|
|
1509
1509
|
"license": "MIT",
|
|
1510
1510
|
"dependencies": {
|
|
1511
|
-
"@vue/compiler-ssr": "3.5.
|
|
1512
|
-
"@vue/shared": "3.5.
|
|
1511
|
+
"@vue/compiler-ssr": "3.5.33",
|
|
1512
|
+
"@vue/shared": "3.5.33"
|
|
1513
1513
|
},
|
|
1514
1514
|
"peerDependencies": {
|
|
1515
|
-
"vue": "3.5.
|
|
1515
|
+
"vue": "3.5.33"
|
|
1516
1516
|
}
|
|
1517
1517
|
},
|
|
1518
1518
|
"node_modules/@vue/shared": {
|
|
1519
|
-
"version": "3.5.
|
|
1520
|
-
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.
|
|
1521
|
-
"integrity": "sha512-
|
|
1519
|
+
"version": "3.5.33",
|
|
1520
|
+
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.33.tgz",
|
|
1521
|
+
"integrity": "sha512-5vR2QIlmaLG77Ygd4pMP6+SGQ5yox9VhtnbDWTy9DzMzdmeLxZ1QqxrywEZ9sa1AVubfIJyaCG3ytyWU81ufcQ==",
|
|
1522
1522
|
"dev": true,
|
|
1523
1523
|
"license": "MIT"
|
|
1524
1524
|
},
|
|
@@ -1629,26 +1629,26 @@
|
|
|
1629
1629
|
}
|
|
1630
1630
|
},
|
|
1631
1631
|
"node_modules/algoliasearch": {
|
|
1632
|
-
"version": "5.
|
|
1633
|
-
"resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.
|
|
1634
|
-
"integrity": "sha512
|
|
1632
|
+
"version": "5.51.0",
|
|
1633
|
+
"resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.51.0.tgz",
|
|
1634
|
+
"integrity": "sha512-u3XS8HaTzt5YN90KPsOXMRjYJUMVD1dtr6yi4NXQluMbZ5IjQNBu1MEabdAxFhYtEuexqomPMSmRIhQJUd3QSg==",
|
|
1635
1635
|
"dev": true,
|
|
1636
1636
|
"license": "MIT",
|
|
1637
1637
|
"dependencies": {
|
|
1638
|
-
"@algolia/abtesting": "1.
|
|
1639
|
-
"@algolia/client-abtesting": "5.
|
|
1640
|
-
"@algolia/client-analytics": "5.
|
|
1641
|
-
"@algolia/client-common": "5.
|
|
1642
|
-
"@algolia/client-insights": "5.
|
|
1643
|
-
"@algolia/client-personalization": "5.
|
|
1644
|
-
"@algolia/client-query-suggestions": "5.
|
|
1645
|
-
"@algolia/client-search": "5.
|
|
1646
|
-
"@algolia/ingestion": "1.
|
|
1647
|
-
"@algolia/monitoring": "1.
|
|
1648
|
-
"@algolia/recommend": "5.
|
|
1649
|
-
"@algolia/requester-browser-xhr": "5.
|
|
1650
|
-
"@algolia/requester-fetch": "5.
|
|
1651
|
-
"@algolia/requester-node-http": "5.
|
|
1638
|
+
"@algolia/abtesting": "1.17.0",
|
|
1639
|
+
"@algolia/client-abtesting": "5.51.0",
|
|
1640
|
+
"@algolia/client-analytics": "5.51.0",
|
|
1641
|
+
"@algolia/client-common": "5.51.0",
|
|
1642
|
+
"@algolia/client-insights": "5.51.0",
|
|
1643
|
+
"@algolia/client-personalization": "5.51.0",
|
|
1644
|
+
"@algolia/client-query-suggestions": "5.51.0",
|
|
1645
|
+
"@algolia/client-search": "5.51.0",
|
|
1646
|
+
"@algolia/ingestion": "1.51.0",
|
|
1647
|
+
"@algolia/monitoring": "1.51.0",
|
|
1648
|
+
"@algolia/recommend": "5.51.0",
|
|
1649
|
+
"@algolia/requester-browser-xhr": "5.51.0",
|
|
1650
|
+
"@algolia/requester-fetch": "5.51.0",
|
|
1651
|
+
"@algolia/requester-node-http": "5.51.0"
|
|
1652
1652
|
},
|
|
1653
1653
|
"engines": {
|
|
1654
1654
|
"node": ">= 14.0.0"
|
|
@@ -3013,9 +3013,9 @@
|
|
|
3013
3013
|
"license": "ISC"
|
|
3014
3014
|
},
|
|
3015
3015
|
"node_modules/postcss": {
|
|
3016
|
-
"version": "8.5.
|
|
3017
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
3018
|
-
"integrity": "sha512-
|
|
3016
|
+
"version": "8.5.10",
|
|
3017
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
|
|
3018
|
+
"integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==",
|
|
3019
3019
|
"dev": true,
|
|
3020
3020
|
"funding": [
|
|
3021
3021
|
{
|
|
@@ -3198,9 +3198,9 @@
|
|
|
3198
3198
|
"license": "MIT"
|
|
3199
3199
|
},
|
|
3200
3200
|
"node_modules/rollup": {
|
|
3201
|
-
"version": "4.60.
|
|
3202
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.
|
|
3203
|
-
"integrity": "sha512-
|
|
3201
|
+
"version": "4.60.2",
|
|
3202
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.2.tgz",
|
|
3203
|
+
"integrity": "sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==",
|
|
3204
3204
|
"dev": true,
|
|
3205
3205
|
"license": "MIT",
|
|
3206
3206
|
"dependencies": {
|
|
@@ -3214,31 +3214,31 @@
|
|
|
3214
3214
|
"npm": ">=8.0.0"
|
|
3215
3215
|
},
|
|
3216
3216
|
"optionalDependencies": {
|
|
3217
|
-
"@rollup/rollup-android-arm-eabi": "4.60.
|
|
3218
|
-
"@rollup/rollup-android-arm64": "4.60.
|
|
3219
|
-
"@rollup/rollup-darwin-arm64": "4.60.
|
|
3220
|
-
"@rollup/rollup-darwin-x64": "4.60.
|
|
3221
|
-
"@rollup/rollup-freebsd-arm64": "4.60.
|
|
3222
|
-
"@rollup/rollup-freebsd-x64": "4.60.
|
|
3223
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.60.
|
|
3224
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.60.
|
|
3225
|
-
"@rollup/rollup-linux-arm64-gnu": "4.60.
|
|
3226
|
-
"@rollup/rollup-linux-arm64-musl": "4.60.
|
|
3227
|
-
"@rollup/rollup-linux-loong64-gnu": "4.60.
|
|
3228
|
-
"@rollup/rollup-linux-loong64-musl": "4.60.
|
|
3229
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.60.
|
|
3230
|
-
"@rollup/rollup-linux-ppc64-musl": "4.60.
|
|
3231
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.60.
|
|
3232
|
-
"@rollup/rollup-linux-riscv64-musl": "4.60.
|
|
3233
|
-
"@rollup/rollup-linux-s390x-gnu": "4.60.
|
|
3234
|
-
"@rollup/rollup-linux-x64-gnu": "4.60.
|
|
3235
|
-
"@rollup/rollup-linux-x64-musl": "4.60.
|
|
3236
|
-
"@rollup/rollup-openbsd-x64": "4.60.
|
|
3237
|
-
"@rollup/rollup-openharmony-arm64": "4.60.
|
|
3238
|
-
"@rollup/rollup-win32-arm64-msvc": "4.60.
|
|
3239
|
-
"@rollup/rollup-win32-ia32-msvc": "4.60.
|
|
3240
|
-
"@rollup/rollup-win32-x64-gnu": "4.60.
|
|
3241
|
-
"@rollup/rollup-win32-x64-msvc": "4.60.
|
|
3217
|
+
"@rollup/rollup-android-arm-eabi": "4.60.2",
|
|
3218
|
+
"@rollup/rollup-android-arm64": "4.60.2",
|
|
3219
|
+
"@rollup/rollup-darwin-arm64": "4.60.2",
|
|
3220
|
+
"@rollup/rollup-darwin-x64": "4.60.2",
|
|
3221
|
+
"@rollup/rollup-freebsd-arm64": "4.60.2",
|
|
3222
|
+
"@rollup/rollup-freebsd-x64": "4.60.2",
|
|
3223
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.60.2",
|
|
3224
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.60.2",
|
|
3225
|
+
"@rollup/rollup-linux-arm64-gnu": "4.60.2",
|
|
3226
|
+
"@rollup/rollup-linux-arm64-musl": "4.60.2",
|
|
3227
|
+
"@rollup/rollup-linux-loong64-gnu": "4.60.2",
|
|
3228
|
+
"@rollup/rollup-linux-loong64-musl": "4.60.2",
|
|
3229
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.60.2",
|
|
3230
|
+
"@rollup/rollup-linux-ppc64-musl": "4.60.2",
|
|
3231
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.60.2",
|
|
3232
|
+
"@rollup/rollup-linux-riscv64-musl": "4.60.2",
|
|
3233
|
+
"@rollup/rollup-linux-s390x-gnu": "4.60.2",
|
|
3234
|
+
"@rollup/rollup-linux-x64-gnu": "4.60.2",
|
|
3235
|
+
"@rollup/rollup-linux-x64-musl": "4.60.2",
|
|
3236
|
+
"@rollup/rollup-openbsd-x64": "4.60.2",
|
|
3237
|
+
"@rollup/rollup-openharmony-arm64": "4.60.2",
|
|
3238
|
+
"@rollup/rollup-win32-arm64-msvc": "4.60.2",
|
|
3239
|
+
"@rollup/rollup-win32-ia32-msvc": "4.60.2",
|
|
3240
|
+
"@rollup/rollup-win32-x64-gnu": "4.60.2",
|
|
3241
|
+
"@rollup/rollup-win32-x64-msvc": "4.60.2",
|
|
3242
3242
|
"fsevents": "~2.3.2"
|
|
3243
3243
|
}
|
|
3244
3244
|
},
|
|
@@ -3699,17 +3699,17 @@
|
|
|
3699
3699
|
}
|
|
3700
3700
|
},
|
|
3701
3701
|
"node_modules/vue": {
|
|
3702
|
-
"version": "3.5.
|
|
3703
|
-
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.
|
|
3704
|
-
"integrity": "sha512-
|
|
3702
|
+
"version": "3.5.33",
|
|
3703
|
+
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.33.tgz",
|
|
3704
|
+
"integrity": "sha512-1AgChhx5w3ALgT4oK3acm2Es/7jyZhWSVUfs3rOBlGQC0rjEDkS7G4lWlJJGGNQD+BV3reCwbQrOe1mPNwKHBQ==",
|
|
3705
3705
|
"dev": true,
|
|
3706
3706
|
"license": "MIT",
|
|
3707
3707
|
"dependencies": {
|
|
3708
|
-
"@vue/compiler-dom": "3.5.
|
|
3709
|
-
"@vue/compiler-sfc": "3.5.
|
|
3710
|
-
"@vue/runtime-dom": "3.5.
|
|
3711
|
-
"@vue/server-renderer": "3.5.
|
|
3712
|
-
"@vue/shared": "3.5.
|
|
3708
|
+
"@vue/compiler-dom": "3.5.33",
|
|
3709
|
+
"@vue/compiler-sfc": "3.5.33",
|
|
3710
|
+
"@vue/runtime-dom": "3.5.33",
|
|
3711
|
+
"@vue/server-renderer": "3.5.33",
|
|
3712
|
+
"@vue/shared": "3.5.33"
|
|
3713
3713
|
},
|
|
3714
3714
|
"peerDependencies": {
|
|
3715
3715
|
"typescript": "*"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "15.11.
|
|
3
|
+
"version": "15.11.7",
|
|
4
4
|
"description": "A type-safe PostgreSQL ORM for Node.js, written in TypeScript. Features a fluent query builder, decorator-based models, and immutable query state.",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|