@openfin/fdc3-api 37.80.33 → 37.80.35

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.
@@ -966,7 +966,7 @@ declare type ApplicationIdentity_2 = {
966
966
  * @interface
967
967
  */
968
968
  declare type ApplicationInfo = {
969
- initialOptions: ApplicationCreationOptions;
969
+ initialOptions: ApplicationCreationOptions | PlatformOptions;
970
970
  launchMode: string;
971
971
  manifest: Manifest & {
972
972
  [key: string]: any;
@@ -8654,6 +8654,7 @@ declare type LaunchExternalProcessRule = {
8654
8654
  */
8655
8655
  declare type LaunchIntoPlatformPayload = {
8656
8656
  manifest: any;
8657
+ manifestUrl?: string;
8657
8658
  };
8658
8659
 
8659
8660
  /**
@@ -11501,6 +11502,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
11501
11502
  * The provider url.
11502
11503
  */
11503
11504
  providerUrl?: string;
11505
+ /**
11506
+ * @defaultValue true
11507
+ *
11508
+ * Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
11509
+ *
11510
+ * NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
11511
+ */
11512
+ allowLaunchIntoPlatform?: boolean;
11504
11513
  };
11505
11514
 
11506
11515
  /**
@@ -966,7 +966,7 @@ declare type ApplicationIdentity_2 = {
966
966
  * @interface
967
967
  */
968
968
  declare type ApplicationInfo = {
969
- initialOptions: ApplicationCreationOptions;
969
+ initialOptions: ApplicationCreationOptions | PlatformOptions;
970
970
  launchMode: string;
971
971
  manifest: Manifest & {
972
972
  [key: string]: any;
@@ -8654,6 +8654,7 @@ declare type LaunchExternalProcessRule = {
8654
8654
  */
8655
8655
  declare type LaunchIntoPlatformPayload = {
8656
8656
  manifest: any;
8657
+ manifestUrl?: string;
8657
8658
  };
8658
8659
 
8659
8660
  /**
@@ -11501,6 +11502,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
11501
11502
  * The provider url.
11502
11503
  */
11503
11504
  providerUrl?: string;
11505
+ /**
11506
+ * @defaultValue true
11507
+ *
11508
+ * Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
11509
+ *
11510
+ * NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
11511
+ */
11512
+ allowLaunchIntoPlatform?: boolean;
11504
11513
  };
11505
11514
 
11506
11515
  /**
@@ -966,7 +966,7 @@ declare type ApplicationIdentity_2 = {
966
966
  * @interface
967
967
  */
968
968
  declare type ApplicationInfo = {
969
- initialOptions: ApplicationCreationOptions;
969
+ initialOptions: ApplicationCreationOptions | PlatformOptions;
970
970
  launchMode: string;
971
971
  manifest: Manifest & {
972
972
  [key: string]: any;
@@ -8654,6 +8654,7 @@ declare type LaunchExternalProcessRule = {
8654
8654
  */
8655
8655
  declare type LaunchIntoPlatformPayload = {
8656
8656
  manifest: any;
8657
+ manifestUrl?: string;
8657
8658
  };
8658
8659
 
8659
8660
  /**
@@ -11501,6 +11502,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
11501
11502
  * The provider url.
11502
11503
  */
11503
11504
  providerUrl?: string;
11505
+ /**
11506
+ * @defaultValue true
11507
+ *
11508
+ * Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
11509
+ *
11510
+ * NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
11511
+ */
11512
+ allowLaunchIntoPlatform?: boolean;
11504
11513
  };
11505
11514
 
11506
11515
  /**
package/out/fdc3-api.d.ts CHANGED
@@ -972,7 +972,7 @@ declare type ApplicationIdentity_2 = {
972
972
  * @interface
973
973
  */
974
974
  declare type ApplicationInfo = {
975
- initialOptions: ApplicationCreationOptions;
975
+ initialOptions: ApplicationCreationOptions | PlatformOptions;
976
976
  launchMode: string;
977
977
  manifest: Manifest & {
978
978
  [key: string]: any;
@@ -8767,6 +8767,7 @@ declare type LaunchExternalProcessRule = {
8767
8767
  */
8768
8768
  declare type LaunchIntoPlatformPayload = {
8769
8769
  manifest: any;
8770
+ manifestUrl?: string;
8770
8771
  };
8771
8772
 
8772
8773
  /**
@@ -11845,6 +11846,14 @@ declare type PlatformOptions = ApplicationCreationOptions & {
11845
11846
  * The provider url.
11846
11847
  */
11847
11848
  providerUrl?: string;
11849
+ /**
11850
+ * @defaultValue true
11851
+ *
11852
+ * Controls whether it is allowed to launch content manifests into the Platform. If omitted, defaults to `true`.
11853
+ *
11854
+ * NOTE: Starting in v38, the default value will change to `false` and content launching must be explicitly opted into.
11855
+ */
11856
+ allowLaunchIntoPlatform?: boolean;
11848
11857
  };
11849
11858
 
11850
11859
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/fdc3-api",
3
- "version": "37.80.33",
3
+ "version": "37.80.35",
4
4
  "description": "OpenFin fdc3 module utilities and types.",
5
5
  "license": "SEE LICENSE IN LICENSE.MD",
6
6
  "private": false,