trand_common_v1 0.1.81 → 0.1.83
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/dist/db-fields/youtube-video-search-result-db-fields.d.ts +59 -6
- package/dist/db-fields/youtube-video-search-result-db-fields.js +72 -19
- package/dist/db-fields/youtube-video-search-result-db-fields.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/trand-types/trand-api-response-types.d.ts +1 -0
- package/dist/trand-types/trand-db-types.d.ts +14 -30
- package/package.json +1 -1
|
@@ -1,22 +1,59 @@
|
|
|
1
1
|
export declare const YOUTUBE_VIDEO_SEARCH_RESULT_DB_FIELDS: {
|
|
2
|
-
|
|
2
|
+
VIDEO_ID: {
|
|
3
3
|
ID: string;
|
|
4
4
|
LABEL: string;
|
|
5
5
|
IS_REQUIRED: boolean;
|
|
6
6
|
MAX_LENGTH: number;
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
VIDEO_TITLE: {
|
|
9
9
|
ID: string;
|
|
10
10
|
LABEL: string;
|
|
11
11
|
IS_REQUIRED: boolean;
|
|
12
12
|
MAX_LENGTH: number;
|
|
13
13
|
};
|
|
14
|
-
|
|
14
|
+
PUBLISHED_AT: {
|
|
15
15
|
ID: string;
|
|
16
16
|
LABEL: string;
|
|
17
17
|
IS_REQUIRED: boolean;
|
|
18
|
+
MAX_LENGTH: number;
|
|
18
19
|
};
|
|
19
|
-
|
|
20
|
+
DESCRIPTION: {
|
|
21
|
+
ID: string;
|
|
22
|
+
LABEL: string;
|
|
23
|
+
IS_REQUIRED: boolean;
|
|
24
|
+
MAX_LENGTH: number;
|
|
25
|
+
};
|
|
26
|
+
CHANNEL_TITLE: {
|
|
27
|
+
ID: string;
|
|
28
|
+
LABEL: string;
|
|
29
|
+
IS_REQUIRED: boolean;
|
|
30
|
+
MAX_LENGTH: number;
|
|
31
|
+
};
|
|
32
|
+
CHANNEL_ID: {
|
|
33
|
+
ID: string;
|
|
34
|
+
LABEL: string;
|
|
35
|
+
IS_REQUIRED: boolean;
|
|
36
|
+
MAX_LENGTH: number;
|
|
37
|
+
};
|
|
38
|
+
CITY_CODES: {
|
|
39
|
+
ID: string;
|
|
40
|
+
LABEL: string;
|
|
41
|
+
IS_REQUIRED: boolean;
|
|
42
|
+
MAX_LENGTH: number;
|
|
43
|
+
};
|
|
44
|
+
STREET_CODES: {
|
|
45
|
+
ID: string;
|
|
46
|
+
LABEL: string;
|
|
47
|
+
IS_REQUIRED: boolean;
|
|
48
|
+
MAX_LENGTH: number;
|
|
49
|
+
};
|
|
50
|
+
CONTENT_CODES: {
|
|
51
|
+
ID: string;
|
|
52
|
+
LABEL: string;
|
|
53
|
+
IS_REQUIRED: boolean;
|
|
54
|
+
MAX_LENGTH: number;
|
|
55
|
+
};
|
|
56
|
+
KEYWORDS: {
|
|
20
57
|
ID: string;
|
|
21
58
|
LABEL: string;
|
|
22
59
|
IS_REQUIRED: boolean;
|
|
@@ -26,18 +63,17 @@ export declare const YOUTUBE_VIDEO_SEARCH_RESULT_DB_FIELDS: {
|
|
|
26
63
|
ID: string;
|
|
27
64
|
LABEL: string;
|
|
28
65
|
IS_REQUIRED: boolean;
|
|
29
|
-
DEFAULT_VALUE: boolean;
|
|
30
66
|
};
|
|
31
67
|
IS_PASSED_TO_PRE_YOUTUBE_VIDEOS: {
|
|
32
68
|
ID: string;
|
|
33
69
|
LABEL: string;
|
|
34
70
|
IS_REQUIRED: boolean;
|
|
35
|
-
DEFAULT_VALUE: boolean;
|
|
36
71
|
};
|
|
37
72
|
PASSED_AT: {
|
|
38
73
|
ID: string;
|
|
39
74
|
LABEL: string;
|
|
40
75
|
IS_REQUIRED: boolean;
|
|
76
|
+
MAX_LENGTH: number;
|
|
41
77
|
};
|
|
42
78
|
PASSED_BY: {
|
|
43
79
|
ID: string;
|
|
@@ -45,4 +81,21 @@ export declare const YOUTUBE_VIDEO_SEARCH_RESULT_DB_FIELDS: {
|
|
|
45
81
|
IS_REQUIRED: boolean;
|
|
46
82
|
MAX_LENGTH: number;
|
|
47
83
|
};
|
|
84
|
+
IS_DROP_TO_REGISTER: {
|
|
85
|
+
ID: string;
|
|
86
|
+
LABEL: string;
|
|
87
|
+
IS_REQUIRED: boolean;
|
|
88
|
+
};
|
|
89
|
+
DROPPED_AT: {
|
|
90
|
+
ID: string;
|
|
91
|
+
LABEL: string;
|
|
92
|
+
IS_REQUIRED: boolean;
|
|
93
|
+
MAX_LENGTH: number;
|
|
94
|
+
};
|
|
95
|
+
DROPPED_BY: {
|
|
96
|
+
ID: string;
|
|
97
|
+
LABEL: string;
|
|
98
|
+
IS_REQUIRED: boolean;
|
|
99
|
+
MAX_LENGTH: number;
|
|
100
|
+
};
|
|
48
101
|
};
|
|
@@ -1,43 +1,79 @@
|
|
|
1
1
|
export const YOUTUBE_VIDEO_SEARCH_RESULT_DB_FIELDS = {
|
|
2
|
-
KEYWORD_CODE: {
|
|
3
|
-
ID: "keyword_code",
|
|
4
|
-
LABEL: "Keyword Code",
|
|
5
|
-
IS_REQUIRED: true,
|
|
6
|
-
MAX_LENGTH: 128,
|
|
7
|
-
},
|
|
8
|
-
KEYWORD: {
|
|
9
|
-
ID: "keyword",
|
|
10
|
-
LABEL: "Keyword",
|
|
11
|
-
IS_REQUIRED: true,
|
|
12
|
-
MAX_LENGTH: 100,
|
|
13
|
-
},
|
|
14
|
-
SEARCHED_AT: {
|
|
15
|
-
ID: "searched_at",
|
|
16
|
-
LABEL: "Searched At",
|
|
17
|
-
IS_REQUIRED: true,
|
|
18
|
-
},
|
|
19
2
|
VIDEO_ID: {
|
|
20
3
|
ID: "video_id",
|
|
21
4
|
LABEL: "Video Id",
|
|
22
5
|
IS_REQUIRED: true,
|
|
23
6
|
MAX_LENGTH: 23,
|
|
24
7
|
},
|
|
8
|
+
VIDEO_TITLE: {
|
|
9
|
+
ID: "video_title",
|
|
10
|
+
LABEL: "Video Title",
|
|
11
|
+
IS_REQUIRED: false,
|
|
12
|
+
MAX_LENGTH: 100,
|
|
13
|
+
},
|
|
14
|
+
PUBLISHED_AT: {
|
|
15
|
+
ID: "published_at",
|
|
16
|
+
LABEL: "Published At",
|
|
17
|
+
IS_REQUIRED: false,
|
|
18
|
+
MAX_LENGTH: 23,
|
|
19
|
+
},
|
|
20
|
+
DESCRIPTION: {
|
|
21
|
+
ID: "description",
|
|
22
|
+
LABEL: "Description",
|
|
23
|
+
IS_REQUIRED: false,
|
|
24
|
+
MAX_LENGTH: 1023,
|
|
25
|
+
},
|
|
26
|
+
CHANNEL_TITLE: {
|
|
27
|
+
ID: "channel_title",
|
|
28
|
+
LABEL: "Channel Title",
|
|
29
|
+
IS_REQUIRED: false,
|
|
30
|
+
MAX_LENGTH: 100,
|
|
31
|
+
},
|
|
32
|
+
CHANNEL_ID: {
|
|
33
|
+
ID: "channel_id",
|
|
34
|
+
LABEL: "Channel Id",
|
|
35
|
+
IS_REQUIRED: false,
|
|
36
|
+
MAX_LENGTH: 45,
|
|
37
|
+
},
|
|
38
|
+
CITY_CODES: {
|
|
39
|
+
ID: "city_codes",
|
|
40
|
+
LABEL: "City Codes",
|
|
41
|
+
IS_REQUIRED: false,
|
|
42
|
+
MAX_LENGTH: 500,
|
|
43
|
+
},
|
|
44
|
+
STREET_CODES: {
|
|
45
|
+
ID: "street_codes",
|
|
46
|
+
LABEL: "Street Codes",
|
|
47
|
+
IS_REQUIRED: false,
|
|
48
|
+
MAX_LENGTH: 500,
|
|
49
|
+
},
|
|
50
|
+
CONTENT_CODES: {
|
|
51
|
+
ID: "content_codes",
|
|
52
|
+
LABEL: "Content Codes",
|
|
53
|
+
IS_REQUIRED: false,
|
|
54
|
+
MAX_LENGTH: 500,
|
|
55
|
+
},
|
|
56
|
+
KEYWORDS: {
|
|
57
|
+
ID: "keywords",
|
|
58
|
+
LABEL: "Keywords",
|
|
59
|
+
IS_REQUIRED: false,
|
|
60
|
+
MAX_LENGTH: 200,
|
|
61
|
+
},
|
|
25
62
|
IS_ALREADY_REGISTERED: {
|
|
26
63
|
ID: "is_already_registered",
|
|
27
64
|
LABEL: "Is Already Registered",
|
|
28
65
|
IS_REQUIRED: true,
|
|
29
|
-
DEFAULT_VALUE: false,
|
|
30
66
|
},
|
|
31
67
|
IS_PASSED_TO_PRE_YOUTUBE_VIDEOS: {
|
|
32
68
|
ID: "is_passed_to_pre_youtube_videos",
|
|
33
69
|
LABEL: "Is Passed To Pre Youtube Videos",
|
|
34
70
|
IS_REQUIRED: true,
|
|
35
|
-
DEFAULT_VALUE: false,
|
|
36
71
|
},
|
|
37
72
|
PASSED_AT: {
|
|
38
73
|
ID: "passed_at",
|
|
39
74
|
LABEL: "Passed At",
|
|
40
75
|
IS_REQUIRED: false,
|
|
76
|
+
MAX_LENGTH: 23,
|
|
41
77
|
},
|
|
42
78
|
PASSED_BY: {
|
|
43
79
|
ID: "passed_by",
|
|
@@ -45,5 +81,22 @@ export const YOUTUBE_VIDEO_SEARCH_RESULT_DB_FIELDS = {
|
|
|
45
81
|
IS_REQUIRED: false,
|
|
46
82
|
MAX_LENGTH: 511,
|
|
47
83
|
},
|
|
84
|
+
IS_DROP_TO_REGISTER: {
|
|
85
|
+
ID: "is_drop_to_register",
|
|
86
|
+
LABEL: "Is Drop To Register",
|
|
87
|
+
IS_REQUIRED: true,
|
|
88
|
+
},
|
|
89
|
+
DROPPED_AT: {
|
|
90
|
+
ID: "dropped_at",
|
|
91
|
+
LABEL: "Dropped At",
|
|
92
|
+
IS_REQUIRED: false,
|
|
93
|
+
MAX_LENGTH: 23,
|
|
94
|
+
},
|
|
95
|
+
DROPPED_BY: {
|
|
96
|
+
ID: "dropped_by",
|
|
97
|
+
LABEL: "Dropped By",
|
|
98
|
+
IS_REQUIRED: false,
|
|
99
|
+
MAX_LENGTH: 511,
|
|
100
|
+
},
|
|
48
101
|
};
|
|
49
102
|
//# sourceMappingURL=youtube-video-search-result-db-fields.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"youtube-video-search-result-db-fields.js","sourceRoot":"","sources":["../../src/db-fields/youtube-video-search-result-db-fields.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qCAAqC,GAAG;IACnD,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"youtube-video-search-result-db-fields.js","sourceRoot":"","sources":["../../src/db-fields/youtube-video-search-result-db-fields.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qCAAqC,GAAG;IACnD,QAAQ,EAAE;QACR,EAAE,EAAE,UAAU;QACd,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,EAAE;KACf;IACD,WAAW,EAAE;QACX,EAAE,EAAE,aAAa;QACjB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;KACf;IACD,WAAW,EAAE;QACX,EAAE,EAAE,aAAa;QACjB,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,IAAI;KACjB;IACD,aAAa,EAAE;QACb,EAAE,EAAE,eAAe;QACnB,KAAK,EAAE,eAAe;QACtB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,UAAU,EAAE;QACV,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;KACf;IACD,UAAU,EAAE;QACV,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,YAAY,EAAE;QACZ,EAAE,EAAE,cAAc;QAClB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,aAAa,EAAE;QACb,EAAE,EAAE,eAAe;QACnB,KAAK,EAAE,eAAe;QACtB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,QAAQ,EAAE;QACR,EAAE,EAAE,UAAU;QACd,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,qBAAqB,EAAE;QACrB,EAAE,EAAE,uBAAuB;QAC3B,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EAAE,IAAI;KAClB;IACD,+BAA+B,EAAE;QAC/B,EAAE,EAAE,iCAAiC;QACrC,KAAK,EAAE,iCAAiC;QACxC,WAAW,EAAE,IAAI;KAClB;IACD,SAAS,EAAE;QACT,EAAE,EAAE,WAAW;QACf,KAAK,EAAE,WAAW;QAClB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;KACf;IACD,SAAS,EAAE;QACT,EAAE,EAAE,WAAW;QACf,KAAK,EAAE,WAAW;QAClB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;IACD,mBAAmB,EAAE;QACnB,EAAE,EAAE,qBAAqB;QACzB,KAAK,EAAE,qBAAqB;QAC5B,WAAW,EAAE,IAAI;KAClB;IACD,UAAU,EAAE;QACV,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,EAAE;KACf;IACD,UAAU,EAAE;QACV,EAAE,EAAE,YAAY;QAChB,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE,GAAG;KAChB;CACF,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -39,9 +39,7 @@ export * from "./db-fields/tag-db-fields.js";
|
|
|
39
39
|
export * from "./db-fields/user-db-fields.js";
|
|
40
40
|
export * from "./db-fields/youtube-channel-db-fields.js";
|
|
41
41
|
export * from "./db-fields/youtube-channel-search-keyword-db-fields.js";
|
|
42
|
-
export * from "./db-fields/youtube-channel-search-keyword-history-db-fields.js";
|
|
43
42
|
export * from "./db-fields/youtube-channel-search-result-db-fields.js";
|
|
44
43
|
export * from "./db-fields/youtube-video-db-fields.js";
|
|
45
44
|
export * from "./db-fields/youtube-video-search-keyword-db-fields.js";
|
|
46
|
-
export * from "./db-fields/youtube-video-search-keyword-history-db-fields.js";
|
|
47
45
|
export * from "./db-fields/youtube-video-search-result-db-fields.js";
|
package/dist/index.js
CHANGED
|
@@ -40,10 +40,8 @@ export * from "./db-fields/tag-db-fields.js";
|
|
|
40
40
|
export * from "./db-fields/user-db-fields.js";
|
|
41
41
|
export * from "./db-fields/youtube-channel-db-fields.js";
|
|
42
42
|
export * from "./db-fields/youtube-channel-search-keyword-db-fields.js";
|
|
43
|
-
export * from "./db-fields/youtube-channel-search-keyword-history-db-fields.js";
|
|
44
43
|
export * from "./db-fields/youtube-channel-search-result-db-fields.js";
|
|
45
44
|
export * from "./db-fields/youtube-video-db-fields.js";
|
|
46
45
|
export * from "./db-fields/youtube-video-search-keyword-db-fields.js";
|
|
47
|
-
export * from "./db-fields/youtube-video-search-keyword-history-db-fields.js";
|
|
48
46
|
export * from "./db-fields/youtube-video-search-result-db-fields.js";
|
|
49
47
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,eAAe;AACf,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iCAAiC,CAAC;AAEhD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAE/B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mCAAmC,CAAC;AAClD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qDAAqD,CAAC;AACpE,cAAc,wCAAwC,CAAC;AACvD,cAAc,6DAA6D,CAAC;AAC5E,cAAc,kDAAkD,CAAC;AACjE,cAAc,oDAAoD,CAAC;AACnE,cAAc,kDAAkD,CAAC;AACjE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,mCAAmC,CAAC;AAClD,cAAc,yDAAyD,CAAC;AACxE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2CAA2C,CAAC;AAC1D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,8DAA8D,CAAC;AAC7E,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0CAA0C,CAAC;AACzD,cAAc,yDAAyD,CAAC;AACxE,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,eAAe;AACf,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iCAAiC,CAAC;AAEhD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAE/B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mCAAmC,CAAC;AAClD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qDAAqD,CAAC;AACpE,cAAc,wCAAwC,CAAC;AACvD,cAAc,6DAA6D,CAAC;AAC5E,cAAc,kDAAkD,CAAC;AACjE,cAAc,oDAAoD,CAAC;AACnE,cAAc,kDAAkD,CAAC;AACjE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,0CAA0C,CAAC;AACzD,cAAc,mCAAmC,CAAC;AAClD,cAAc,yDAAyD,CAAC;AACxE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oDAAoD,CAAC;AACnE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2CAA2C,CAAC;AAC1D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,8DAA8D,CAAC;AAC7E,cAAc,sCAAsC,CAAC;AACrD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,uCAAuC,CAAC;AACtD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0CAA0C,CAAC;AACzD,cAAc,yDAAyD,CAAC;AACxE,cAAc,wDAAwD,CAAC;AACvE,cAAc,wCAAwC,CAAC;AACvD,cAAc,uDAAuD,CAAC;AACtE,cAAc,sDAAsD,CAAC"}
|
|
@@ -351,24 +351,30 @@ export type YouTubeVideoSearchKeywordHistoryUpdate = {
|
|
|
351
351
|
searched_at: string;
|
|
352
352
|
} & Partial<Omit<YouTubeVideoSearchKeywordHistory, "keyword_code" | "searched_at">>;
|
|
353
353
|
export type YouTubeVideoSearchResult = {
|
|
354
|
-
keyword_code: string;
|
|
355
|
-
keyword: string;
|
|
356
|
-
searched_at: string;
|
|
357
354
|
video_id: string;
|
|
355
|
+
video_title: string | null;
|
|
356
|
+
published_at: string | null;
|
|
357
|
+
description: string | null;
|
|
358
|
+
channel_title: string | null;
|
|
359
|
+
channel_id: string | null;
|
|
360
|
+
city_codes: string | null;
|
|
361
|
+
street_codes: string | null;
|
|
362
|
+
content_codes: string | null;
|
|
363
|
+
keywords: string | null;
|
|
358
364
|
is_already_registered: boolean;
|
|
359
365
|
is_passed_to_pre_youtube_videos: boolean;
|
|
360
366
|
passed_at: string | null;
|
|
361
367
|
passed_by: string | null;
|
|
368
|
+
is_drop_to_register: boolean;
|
|
369
|
+
dropped_at: string | null;
|
|
370
|
+
dropped_by: string | null;
|
|
362
371
|
};
|
|
363
372
|
export type YouTubeVideoSearchResultInsert = {
|
|
364
|
-
keyword_code: string;
|
|
365
|
-
searched_at: string;
|
|
366
373
|
video_id: string;
|
|
367
|
-
} & Partial<Omit<YouTubeVideoSearchResult, "
|
|
374
|
+
} & Partial<Omit<YouTubeVideoSearchResult, "video_id">>;
|
|
368
375
|
export type YouTubeVideoSearchResultUpdate = {
|
|
369
|
-
keyword_code: string;
|
|
370
376
|
video_id: string;
|
|
371
|
-
} & Partial<Omit<YouTubeVideoSearchResult, "
|
|
377
|
+
} & Partial<Omit<YouTubeVideoSearchResult, "video_id">>;
|
|
372
378
|
export type PreYouTubeVideo = {
|
|
373
379
|
video_id: string;
|
|
374
380
|
lang_code: string | null;
|
|
@@ -470,28 +476,6 @@ export type YouTubeChannelSearchKeywordUpdate = {
|
|
|
470
476
|
target_country_code: string;
|
|
471
477
|
keyword_code: string;
|
|
472
478
|
} & Partial<Omit<YouTubeChannelSearchKeyword, "target_country_code" | "keyword_code">>;
|
|
473
|
-
export type YouTubeChannelSearchKeywordHistory = {
|
|
474
|
-
keyword_code: string;
|
|
475
|
-
searched_at: string;
|
|
476
|
-
token: string | null;
|
|
477
|
-
type: string | null;
|
|
478
|
-
order: string | null;
|
|
479
|
-
region_code: string | null;
|
|
480
|
-
published_after: string | null;
|
|
481
|
-
published_before: string | null;
|
|
482
|
-
video_duration: string | null;
|
|
483
|
-
channel_id: string | null;
|
|
484
|
-
location: string | null;
|
|
485
|
-
location_radius: string | null;
|
|
486
|
-
};
|
|
487
|
-
export type YouTubeChannelSearchKeywordHistoryInsert = {
|
|
488
|
-
keyword_code: string;
|
|
489
|
-
searched_at: string;
|
|
490
|
-
} & Partial<Omit<YouTubeChannelSearchKeywordHistory, "keyword_code" | "searched_at">>;
|
|
491
|
-
export type YouTubeChannelSearchKeywordHistoryUpdate = {
|
|
492
|
-
keyword_code: string;
|
|
493
|
-
searched_at: string;
|
|
494
|
-
} & Partial<Omit<YouTubeChannelSearchKeywordHistory, "keyword_code" | "searched_at">>;
|
|
495
479
|
export type YouTubeChannelSearchResult = {
|
|
496
480
|
keyword_code: string;
|
|
497
481
|
keyword: string;
|