Skip to content

Commit

Permalink
importEventsFromCOAタスクを拡張
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Oct 18, 2023
1 parent de1b6fb commit dd55766
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

### Changed

- importEventsFromCOAタスクを拡張

### Deprecated

### Removed
Expand Down
8 changes: 4 additions & 4 deletions src/cognito.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* Cognitoインターフェース
*/
import * as AWS from 'aws-sdk';
import type { CognitoIdentityServiceProvider } from 'aws-sdk';

export import UserPoolClientType = AWS.CognitoIdentityServiceProvider.UserPoolClientType;
export import UserPoolClientListType = AWS.CognitoIdentityServiceProvider.UserPoolClientListType;
export import UserPoolType = AWS.CognitoIdentityServiceProvider.UserPoolType;
export type UserPoolClientType = CognitoIdentityServiceProvider.UserPoolClientType;
export type UserPoolClientListType = CognitoIdentityServiceProvider.UserPoolClientListType;
export type UserPoolType = CognitoIdentityServiceProvider.UserPoolType;
1 change: 1 addition & 0 deletions src/task/importEventsFromCOA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export interface IData {
* 施設コンテンツを保管するかどうか
*/
saveScreeningEventSeries: boolean;
saveScreeningEventSeriesPeriodInMonth: number;
}
export interface IAttributes extends TaskFactory.IAttributes {
name: TaskName.ImportEventsFromCOA;
Expand Down

0 comments on commit dd55766

Please sign in to comment.