@xapp/ovai-lib 1.27.4 → 1.27.7

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.27.7](https://github.com/XappMedia/stentor-core/compare/v1.27.6...v1.27.7) (2020-10-28)
7
+
8
+ **Note:** Version bump only for package @xapp/ovai-lib
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.27.6](https://github.com/XappMedia/stentor-core/compare/v1.27.5...v1.27.6) (2020-10-28)
15
+
16
+ **Note:** Version bump only for package @xapp/ovai-lib
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.27.5](https://github.com/XappMedia/stentor-core/compare/v1.27.4...v1.27.5) (2020-10-28)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **deps:** update stentor to v1.35.5 ([ef6f507](https://github.com/XappMedia/stentor-core/commit/ef6f507966b46f42c5be3ee4f31c85fd11227465))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [1.27.4](https://github.com/XappMedia/stentor-core/compare/v1.27.3...v1.27.4) (2020-10-27)
7
34
 
8
35
 
@@ -8,6 +8,8 @@ export interface Template extends Partial<OVAIApp> {
8
8
  templateType: TemplateType;
9
9
  /**
10
10
  * The collaboration agreement between the app and XAPP.
11
+ *
12
+ * @deprecated This will exist on the respective channel in the future.
11
13
  */
12
14
  collaborationAgreementUrl?: string;
13
15
  }
@@ -1,9 +1,10 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
2
  export declare type OnDemandTemplateType = "PODCAST_TEMPLATE";
3
3
  export declare type RadioTemplateType = "RADIO_TEMPLATE";
4
+ export declare type OCStudioStarterTemplateType = "OC_STUDIO_STARTER_TEMPLATE";
4
5
  /**
5
6
  * Used to communicate the app is custom and does not adhere to a specific
6
7
  * predefined template.
7
8
  */
8
9
  export declare type CustomType = "CUSTOM";
9
- export declare type TemplateType = RadioTemplateType | OnDemandTemplateType | CustomType;
10
+ export declare type TemplateType = RadioTemplateType | OCStudioStarterTemplateType | OnDemandTemplateType | CustomType;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "restricted"
6
6
  },
7
- "version": "1.27.4",
7
+ "version": "1.27.7",
8
8
  "description": "Shared library for OVAI",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -17,15 +17,15 @@
17
17
  "devDependencies": {
18
18
  "@types/chai": "4.2.14",
19
19
  "chai": "4.2.0",
20
- "stentor-models": "1.35.3",
20
+ "stentor-models": "1.35.5",
21
21
  "ts-node": "9.0.0",
22
22
  "typescript": "4.0.5"
23
23
  },
24
24
  "dependencies": {
25
- "@xapp/stentor-media-manager": "1.27.4",
26
- "@xapp/stentor-service-search": "1.27.4",
27
- "stentor-guards": "1.35.3",
28
- "stentor-media": "1.35.3"
25
+ "@xapp/stentor-media-manager": "1.27.7",
26
+ "@xapp/stentor-service-search": "1.27.7",
27
+ "stentor-guards": "1.35.5",
28
+ "stentor-media": "1.35.5"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "stentor-models": "1.x"
@@ -35,5 +35,5 @@
35
35
  "clean": "rm -rf ./lib/*",
36
36
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
37
37
  },
38
- "gitHead": "4ac6bd6246e060b8e193ff16bcbc18b1346d12bc"
38
+ "gitHead": "383b1d361d3e86b20e23543bdee14afc6f1a6320"
39
39
  }