@chevre/factory 4.369.0-alpha.2 → 4.369.0-alpha.4

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.
@@ -1,4 +1,4 @@
1
- import type * as surfrock from '@surfrock/sdk';
1
+ import { factory as surfrockFactory } from '@surfrock/sdk';
2
2
  import * as ActionFactory from '../../../action';
3
3
  import { OrganizationType } from '../../../organizationType';
4
4
  import { IMovieTicketPaymentCard, IMovieTicketServiceOutput } from '../../../paymentMethod/paymentCard/movieTicket';
@@ -6,8 +6,8 @@ import { TransactionType } from '../../../transactionType';
6
6
  import * as CheckActionFactory from '../../check';
7
7
  import * as PayActionFactory from '../../trade/pay';
8
8
  export type IAgent = ActionFactory.IParticipantAsWebApplication | ActionFactory.IParticipantAsPerson;
9
- export type IPurchaseNumberAuthIn = surfrock.service.auth.factory.IPurchaseNumberAuthIn;
10
- export type IPurchaseNumberAuthResult = surfrock.service.auth.factory.IPurchaseNumberAuthResult;
9
+ export type IPurchaseNumberAuthIn = surfrockFactory.service.auth.purchaseNumberAuth.IPurchaseNumberAuthIn;
10
+ export type IPurchaseNumberAuthResult = surfrockFactory.service.auth.purchaseNumberAuth.IPurchaseNumberAuthResult;
11
11
  /**
12
12
  * 認証対象のmovieTicket
13
13
  */
@@ -1,5 +1,5 @@
1
1
  import type * as GMO from '@motionpicture/gmo-service';
2
- import type * as surfrock from '@surfrock/sdk';
2
+ import { factory as surfrockFactory } from '@surfrock/sdk';
3
3
  import * as ActionFactory from '../../action';
4
4
  import { ActionType } from '../../actionType';
5
5
  import { TransactionType } from '../../transactionType';
@@ -17,10 +17,10 @@ export interface ISeatInfoSyncResultAsError {
17
17
  name: string;
18
18
  message: string;
19
19
  }
20
- export type ISeatInfoSyncIn = surfrock.service.seat.factory.ISeatInfoSyncIn;
21
- export type ISeatInfoSyncResult = surfrock.service.seat.factory.ISeatInfoSyncResult | ISeatInfoSyncResultAsError;
22
- export type ISeatInfoSyncCancelIn = surfrock.service.seat.factory.seatInfoSyncCancel.ISeatInfoSyncCancelIn;
23
- export type ISeatInfoSyncCancelResult = surfrock.service.seat.factory.seatInfoSyncCancel.ISeatInfoSyncCancelResult | ISeatInfoSyncResultAsError;
20
+ export type ISeatInfoSyncIn = surfrockFactory.service.seat.seatInfoSync.ISeatInfoSyncIn;
21
+ export type ISeatInfoSyncResult = surfrockFactory.service.seat.seatInfoSync.ISeatInfoSyncResult | ISeatInfoSyncResultAsError;
22
+ export type ISeatInfoSyncCancelIn = surfrockFactory.service.seat.seatInfoSyncCancel.ISeatInfoSyncCancelIn;
23
+ export type ISeatInfoSyncCancelResult = surfrockFactory.service.seat.seatInfoSyncCancel.ISeatInfoSyncCancelResult | ISeatInfoSyncResultAsError;
24
24
  export interface IResult {
25
25
  alterTranResult?: IAlterTranResult[];
26
26
  seatInfoSyncIn?: ISeatInfoSyncIn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.369.0-alpha.2",
3
+ "version": "4.369.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -56,7 +56,7 @@
56
56
  "@aws-sdk/client-cognito-identity-provider": "3.438.0",
57
57
  "@motionpicture/coa-service": "9.4.0",
58
58
  "@motionpicture/gmo-service": "5.3.0",
59
- "@surfrock/sdk": "1.3.0-alpha.0",
59
+ "@surfrock/sdk": "1.3.0-alpha.2",
60
60
  "@waiter/factory": "2.2.0",
61
61
  "setprototypeof": "1.2.0"
62
62
  },