Skip to content

Commit

Permalink
Merge branch 'release/4.335.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Oct 18, 2023
2 parents 36c3d8a + b0b662e commit 166d480
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

### Security

## v4.335.0 - 2023-10-19

### Changed

- importEventsFromCOAタスクを拡張

## v4.334.0 - 2023-09-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chevre/factory",
"version": "4.334.0",
"version": "4.335.0",
"description": "Chevre Factory Library for Javascript",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
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 166d480

Please sign in to comment.