@cinerino/sdk 12.13.0-alpha.2 → 12.13.0-alpha.3

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.
@@ -28,10 +28,6 @@ export interface IFindParams {
28
28
  * 上映方式区分コード
29
29
  */
30
30
  videoFormatType?: string;
31
- /**
32
- * 名称部分一致
33
- */
34
- nameRegex?: string;
35
31
  /**
36
32
  * 追加特性名称
37
33
  */
@@ -20,10 +20,8 @@ export interface IFindParams {
20
20
  availableChannelId?: string;
21
21
  id?: string;
22
22
  ids?: string[];
23
- nameRegex?: string;
24
23
  productID?: string;
25
24
  productIDs?: string[];
26
- productIDRegex?: string;
27
25
  /**
28
26
  * プロバイダーに指定IDの販売者が含まれる
29
27
  */
@@ -30,7 +30,8 @@ export interface IFindParams {
30
30
  /**
31
31
  * 名称部分一致
32
32
  */
33
- nameRegex?: string;
33
+ nameContains?: string;
34
+ nameRegex?: never;
34
35
  /**
35
36
  * プロダクトコード完全一致
36
37
  */
@@ -38,7 +39,8 @@ export interface IFindParams {
38
39
  /**
39
40
  * プロダクトコード部分一致
40
41
  */
41
- productIDRegex?: string;
42
+ productIDContains?: string;
43
+ productIDRegex?: never;
42
44
  /**
43
45
  * 興行区分コード
44
46
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "12.13.0-alpha.2",
3
+ "version": "12.13.0-alpha.3",
4
4
  "description": "Cinerino SDK",
5
5
  "main": "./lib/index.js",
6
6
  "browser": {