@chevre/factory 4.248.0 → 4.249.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.
|
@@ -82,5 +82,17 @@ export interface IAttributes extends AssetTransactionFactory.IAttributes<IStartP
|
|
|
82
82
|
*/
|
|
83
83
|
export declare type ITransaction = IExtendId<IAttributes>;
|
|
84
84
|
export interface ISearchConditions extends AssetTransactionFactory.ISearchConditions<AssetTransactionType.RegisterService> {
|
|
85
|
-
object?:
|
|
85
|
+
object?: {
|
|
86
|
+
itemOffered?: {
|
|
87
|
+
serviceOutput?: {
|
|
88
|
+
/**
|
|
89
|
+
* 発行許可証識別子
|
|
90
|
+
*/
|
|
91
|
+
identifier?: {
|
|
92
|
+
$eq?: string;
|
|
93
|
+
$in?: string[];
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
86
98
|
}
|