Skip to content

Commit

Permalink
メモIFを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Feb 14, 2024
1 parent 4859c83 commit 8beb13a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/creativeWork/noteDigitalDocument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ export interface ISearchConditions {
limit?: number;
page?: number;
sort?: ISortOrder;
id?: {
$in?: string[];
};
project?: {
id?: { $eq?: string };
};
Expand All @@ -62,5 +65,6 @@ export interface ISearchConditions {
};
identifier?: {
$eq?: string;
$in?: string[];
};
}
5 changes: 3 additions & 2 deletions src/task/onResourceUpdated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ import { TaskName } from '../taskName';
export type AccountTitleType = IAccountTitle['typeOf'];
export type CategoryCodeType = ICategoryCode['typeOf'];
export type OfferCatalogType = IOfferCatalog['typeOf'];
export type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType
export type IResourceTypeOf = AccountTitleType | CategoryCodeType
| CreativeWorkType.Movie
| CreativeWorkType.NoteDigitalDocument
| EventType.ScreeningEventSeries
| OrganizationType.Corporation | PlaceType.MovieTheater | ProductType
| OfferCatalogType
| OfferType.AggregateOffer;
// | OfferType.Offer;
export interface IData4common {
id: string[];
project: { id: string };
Expand Down

0 comments on commit 8beb13a

Please sign in to comment.