@cinerino/sdk 3.158.0 → 3.159.0
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/lib/abstract/chevre/account.d.ts +1 -1
- package/lib/abstract/chevre/accountTitle.d.ts +1 -1
- package/lib/abstract/chevre/accountTransaction.d.ts +1 -1
- package/lib/abstract/chevre/accountingReport.d.ts +1 -1
- package/lib/abstract/chevre/authorization.d.ts +1 -1
- package/lib/abstract/chevre/merchantReturnPolicy.d.ts +1 -1
- package/lib/abstract/chevre/offerItemCondition.d.ts +1 -1
- package/lib/abstract/chevre/ownershipInfo.d.ts +1 -1
- package/lib/abstract/chevre/permit.d.ts +1 -1
- package/lib/abstract/chevre/seller/factory.d.ts +1 -1
- package/lib/abstract/chevre/task.d.ts +1 -1
- package/lib/abstract/chevre/transaction/moneyTransfer.d.ts +1 -1
- package/lib/abstract/chevre/transaction/placeOrder.d.ts +1 -1
- package/lib/abstract/chevre/transaction/returnOrder.d.ts +1 -1
- package/lib/abstract/pecorino/accountTransaction.d.ts +1 -1
- package/package.json +1 -1
|
@@ -73,5 +73,5 @@ export declare class AccountService extends Service {
|
|
|
73
73
|
/**
|
|
74
74
|
* 口座を検索する
|
|
75
75
|
*/
|
|
76
|
-
search(params: factory.account.ISearchConditions): Promise<ISearchResult<factory.account.IAccount[]>>;
|
|
76
|
+
search(params: Omit<factory.account.ISearchConditions, 'project'>): Promise<ISearchResult<factory.account.IAccount[]>>;
|
|
77
77
|
}
|
|
@@ -60,7 +60,7 @@ export declare class AccountTitleService extends Service {
|
|
|
60
60
|
/**
|
|
61
61
|
* 細目検索
|
|
62
62
|
*/
|
|
63
|
-
search(params: factory.accountTitle.ISearchConditions): Promise<{
|
|
63
|
+
search(params: Omit<factory.accountTitle.ISearchConditions, 'project'>): Promise<{
|
|
64
64
|
data: factory.accountTitle.IAccountTitle[];
|
|
65
65
|
}>;
|
|
66
66
|
/**
|
|
@@ -7,7 +7,7 @@ export declare class AccountTransactionService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 取引検索
|
|
9
9
|
*/
|
|
10
|
-
search(params: factory.account.transaction.ISearchConditions & {
|
|
10
|
+
search(params: Omit<factory.account.transaction.ISearchConditions, 'project'> & {
|
|
11
11
|
/**
|
|
12
12
|
* 許可証発行元のプロダクト
|
|
13
13
|
*/
|
|
@@ -7,5 +7,5 @@ export declare class AccountingReportService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 検索
|
|
9
9
|
*/
|
|
10
|
-
search(params: factory.report.accountingReport.ISearchConditions): Promise<ISearchResult<factory.report.accountingReport.IReport[]>>;
|
|
10
|
+
search(params: Omit<factory.report.accountingReport.ISearchConditions, 'project'>): Promise<ISearchResult<factory.report.accountingReport.IReport[]>>;
|
|
11
11
|
}
|
|
@@ -19,5 +19,5 @@ export declare class AuthorizationService extends Service {
|
|
|
19
19
|
/**
|
|
20
20
|
* 承認検索
|
|
21
21
|
*/
|
|
22
|
-
search(params: factory.authorization.ISearchConditions): Promise<ISearchResult<factory.authorization.IAuthorization[]>>;
|
|
22
|
+
search(params: Omit<factory.authorization.ISearchConditions, 'project'>): Promise<ISearchResult<factory.authorization.IAuthorization[]>>;
|
|
23
23
|
}
|
|
@@ -5,7 +5,7 @@ import { ISearchResult, IUnset, Service } from '../service';
|
|
|
5
5
|
*/
|
|
6
6
|
export declare class MerchantReturnPolicyService extends Service {
|
|
7
7
|
create(params: factory.unitPriceOffer.IOfferMerchantReturnPolicy): Promise<factory.unitPriceOffer.IOfferMerchantReturnPolicy>;
|
|
8
|
-
search(params: factory.unitPriceOffer.IOfferMerchantReturnPolicySearchConditions): Promise<ISearchResult<factory.unitPriceOffer.IOfferMerchantReturnPolicy[]>>;
|
|
8
|
+
search(params: Omit<factory.unitPriceOffer.IOfferMerchantReturnPolicySearchConditions, 'project'>): Promise<ISearchResult<factory.unitPriceOffer.IOfferMerchantReturnPolicy[]>>;
|
|
9
9
|
findById(params: {
|
|
10
10
|
id: string;
|
|
11
11
|
}): Promise<factory.unitPriceOffer.IOfferMerchantReturnPolicy>;
|
|
@@ -5,7 +5,7 @@ import { IUnset, Service } from '../service';
|
|
|
5
5
|
*/
|
|
6
6
|
export declare class OfferItemConditionService extends Service {
|
|
7
7
|
create(params: factory.offerItemCondition.IOfferItemCondition): Promise<factory.offerItemCondition.IOfferItemCondition>;
|
|
8
|
-
search(params: factory.offerItemCondition.ISearchConditions): Promise<{
|
|
8
|
+
search(params: Omit<factory.offerItemCondition.ISearchConditions, 'project'>): Promise<{
|
|
9
9
|
data: factory.offerItemCondition.IOfferItemCondition[];
|
|
10
10
|
}>;
|
|
11
11
|
findById(params: {
|
|
@@ -22,7 +22,7 @@ export declare class PermitService extends Service {
|
|
|
22
22
|
/**
|
|
23
23
|
* 検索
|
|
24
24
|
*/
|
|
25
|
-
search(params: factory.product.IServiceOutputSearchConditions): Promise<ISearchResult<factory.permit.IPermit[]>>;
|
|
25
|
+
search(params: Omit<factory.product.IServiceOutputSearchConditions, 'project'>): Promise<ISearchResult<factory.permit.IPermit[]>>;
|
|
26
26
|
/**
|
|
27
27
|
* 許可証照会
|
|
28
28
|
* 存在しない場合、ステータスコード404を返します
|
|
@@ -2,7 +2,7 @@ import * as factory from '../../factory';
|
|
|
2
2
|
export declare type IReadableProviderCredentials = Pick<factory.service.paymentService.IProviderCredentials, 'shopId' | 'tokenizationCode' | 'paymentUrl'>;
|
|
3
3
|
export declare type IPaymentServiceByProvider = Pick<factory.service.paymentService.IService, 'name' | 'description' | 'typeOf' | 'id' | 'productID' | 'serviceType' | 'additionalProperty'> & {
|
|
4
4
|
provider?: {
|
|
5
|
-
|
|
5
|
+
credentials?: IReadableProviderCredentials;
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
8
|
export declare type IProvidePaymentService = Pick<factory.service.paymentService.IService, 'id' | 'name' | 'typeOf'> & {
|
|
@@ -19,5 +19,5 @@ export declare class TaskService extends Service {
|
|
|
19
19
|
/**
|
|
20
20
|
* タスク検索
|
|
21
21
|
*/
|
|
22
|
-
search(params: factory.task.ISearchConditions & IProjectionSearchConditions): Promise<ISearchResult<factory.task.ITask<factory.taskName>[]>>;
|
|
22
|
+
search(params: Omit<factory.task.ISearchConditions, 'project'> & IProjectionSearchConditions): Promise<ISearchResult<factory.task.ITask<factory.taskName>[]>>;
|
|
23
23
|
}
|
|
@@ -36,7 +36,7 @@ export declare class MoneyTransferTransactionService extends Service implements
|
|
|
36
36
|
/**
|
|
37
37
|
* 取引検索
|
|
38
38
|
*/
|
|
39
|
-
search(params: factory.transaction.ISearchConditions<factory.transactionType.MoneyTransfer>): Promise<ISearchResult<factory.transaction.ITransaction<factory.transactionType.MoneyTransfer>[]>>;
|
|
39
|
+
search(params: Omit<factory.transaction.ISearchConditions<factory.transactionType.MoneyTransfer>, 'project'>): Promise<ISearchResult<factory.transaction.ITransaction<factory.transactionType.MoneyTransfer>[]>>;
|
|
40
40
|
/**
|
|
41
41
|
* 取引に対するアクションを検索する
|
|
42
42
|
*/
|
|
@@ -64,7 +64,7 @@ export declare class PlaceOrderTransactionService extends Service implements Tra
|
|
|
64
64
|
/**
|
|
65
65
|
* 取引検索
|
|
66
66
|
*/
|
|
67
|
-
search(params: factory.transaction.ISearchConditions<factory.transactionType.PlaceOrder>): Promise<ISearchResult<factory.transaction.ITransaction<factory.transactionType.PlaceOrder>[]>>;
|
|
67
|
+
search(params: Omit<factory.transaction.ISearchConditions<factory.transactionType.PlaceOrder>, 'project'>): Promise<ISearchResult<factory.transaction.ITransaction<factory.transactionType.PlaceOrder>[]>>;
|
|
68
68
|
/**
|
|
69
69
|
* 取引に対するアクションを検索する
|
|
70
70
|
*/
|
|
@@ -9,7 +9,7 @@ export declare class ReturnOrderTransactionService extends Service implements Tr
|
|
|
9
9
|
/**
|
|
10
10
|
* 取引検索
|
|
11
11
|
*/
|
|
12
|
-
search(params: factory.transaction.ISearchConditions<factory.transactionType.ReturnOrder>): Promise<ISearchResult<factory.transaction.ITransaction<factory.transactionType.ReturnOrder>[]>>;
|
|
12
|
+
search(params: Omit<factory.transaction.ISearchConditions<factory.transactionType.ReturnOrder>, 'project'>): Promise<ISearchResult<factory.transaction.ITransaction<factory.transactionType.ReturnOrder>[]>>;
|
|
13
13
|
/**
|
|
14
14
|
* 取引を開始する
|
|
15
15
|
*/
|
|
@@ -7,7 +7,7 @@ export declare class AccountTransactionService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 取引検索
|
|
9
9
|
*/
|
|
10
|
-
search(params: factory.account.transaction.ISearchConditions): Promise<ISearchResult<Pick<factory.account.transaction.ITransaction<factory.account.transactionType>, 'id' | 'status' | 'transactionNumber' | 'agent' | 'endDate' | 'expires' | 'object' | 'project' | 'recipient' | 'startDate' | 'typeOf'>[]>>;
|
|
10
|
+
search(params: Omit<factory.account.transaction.ISearchConditions, 'project'>): Promise<ISearchResult<Pick<factory.account.transaction.ITransaction<factory.account.transactionType>, 'id' | 'status' | 'transactionNumber' | 'agent' | 'endDate' | 'expires' | 'object' | 'project' | 'recipient' | 'startDate' | 'typeOf'>[]>>;
|
|
11
11
|
/**
|
|
12
12
|
* 取引開始
|
|
13
13
|
*/
|