@mediahub-bg/ott-objects 0.3.63 → 0.3.65

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/web/types.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediahub-bg/ott-objects",
3
- "version": "0.3.63",
3
+ "version": "0.3.65",
4
4
  "types": "web/types.d.ts",
5
5
  "files": [
6
6
  "web"
package/web/types.ts CHANGED
@@ -20,7 +20,7 @@ export interface PubBillingAddon {
20
20
  periodUnit: string;
21
21
  resourceVersion: number /* int64 */;
22
22
  taxable: boolean;
23
- metaData?: { [key: string]: any};
23
+ metaData?: any /* bson.M */;
24
24
  unit?: string;
25
25
  cfMaxAmount?: number /* int64 */;
26
26
  CfBit: string;
@@ -42,7 +42,7 @@ export interface PubBillingPlan {
42
42
  periodUnit: string;
43
43
  resourceVersion: number /* int64 */;
44
44
  taxable: boolean;
45
- metaData: { [key: string]: any};
45
+ metaData: any /* bson.M */;
46
46
  cfSalesVisibility: boolean;
47
47
  cfScreens: number /* int64 */;
48
48
  cfPeriod: number /* int64 */;
@@ -210,7 +210,7 @@ export interface PubBillingCoupon {
210
210
  addonConstraint: string;
211
211
  createdAt: number /* int64 */;
212
212
  redemptions: number /* int32 */;
213
- metaData: string;
213
+ metaData: any /* json.RawMessage */;
214
214
  planIds: string[];
215
215
  addonIds: string[];
216
216
  }