@openfin/fdc3-api 38.82.55 → 38.82.57
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/out/fdc3-api-alpha.d.ts +27 -0
- package/out/fdc3-api-beta.d.ts +27 -0
- package/out/fdc3-api-public.d.ts +27 -0
- package/out/fdc3-api.d.ts +27 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -1276,6 +1276,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
|
|
|
1276
1276
|
* When set to `true`, any `beforeunload` handler set on the app will fire.
|
|
1277
1277
|
*/
|
|
1278
1278
|
enableBeforeUnload: boolean;
|
|
1279
|
+
/**
|
|
1280
|
+
* Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
|
|
1281
|
+
*/
|
|
1282
|
+
appLogsTimezone: TimeZones;
|
|
1279
1283
|
};
|
|
1280
1284
|
|
|
1281
1285
|
/**
|
|
@@ -4353,6 +4357,10 @@ declare type DomainSettingsRule = {
|
|
|
4353
4357
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4354
4358
|
*/
|
|
4355
4359
|
options: PerDomainSettings;
|
|
4360
|
+
/**
|
|
4361
|
+
* Options to use when comparing URIs to the `match` patterns.
|
|
4362
|
+
*/
|
|
4363
|
+
matchOptions?: RuleMatchOptions;
|
|
4356
4364
|
};
|
|
4357
4365
|
|
|
4358
4366
|
/**
|
|
@@ -9232,6 +9240,10 @@ declare type NavigationRules = {
|
|
|
9232
9240
|
allowlist?: string[];
|
|
9233
9241
|
/** Forbidden URLs for navigation. */
|
|
9234
9242
|
denylist?: string[];
|
|
9243
|
+
/**
|
|
9244
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
|
9245
|
+
*/
|
|
9246
|
+
matchOptions?: RuleMatchOptions;
|
|
9235
9247
|
};
|
|
9236
9248
|
|
|
9237
9249
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
|
@@ -9339,6 +9351,7 @@ declare namespace OpenFin {
|
|
|
9339
9351
|
WindowBounds,
|
|
9340
9352
|
Rectangle,
|
|
9341
9353
|
ApplicationCreationOptions,
|
|
9354
|
+
TimeZones,
|
|
9342
9355
|
ApplicationOptions,
|
|
9343
9356
|
CustomProtocolMissingState,
|
|
9344
9357
|
CustomProtocolMalformedState,
|
|
@@ -9380,6 +9393,7 @@ declare namespace OpenFin {
|
|
|
9380
9393
|
Api,
|
|
9381
9394
|
ApiSettings,
|
|
9382
9395
|
InjectionType,
|
|
9396
|
+
RuleMatchOptions,
|
|
9383
9397
|
NavigationRules,
|
|
9384
9398
|
ContentNavigation,
|
|
9385
9399
|
ContentRedirect,
|
|
@@ -12300,6 +12314,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
|
12300
12314
|
};
|
|
12301
12315
|
}
|
|
12302
12316
|
|
|
12317
|
+
/**
|
|
12318
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
|
12319
|
+
*/
|
|
12320
|
+
declare type RuleMatchOptions = {
|
|
12321
|
+
/**
|
|
12322
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
|
12323
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
|
12324
|
+
*/
|
|
12325
|
+
matchAllSchemes?: boolean;
|
|
12326
|
+
};
|
|
12327
|
+
|
|
12303
12328
|
declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
|
|
12304
12329
|
|
|
12305
12330
|
/**
|
|
@@ -14638,6 +14663,8 @@ declare type Time = {
|
|
|
14638
14663
|
irq: number;
|
|
14639
14664
|
};
|
|
14640
14665
|
|
|
14666
|
+
declare type TimeZones = 'utc' | 'local';
|
|
14667
|
+
|
|
14641
14668
|
/**
|
|
14642
14669
|
* @interface
|
|
14643
14670
|
*/
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -1276,6 +1276,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
|
|
|
1276
1276
|
* When set to `true`, any `beforeunload` handler set on the app will fire.
|
|
1277
1277
|
*/
|
|
1278
1278
|
enableBeforeUnload: boolean;
|
|
1279
|
+
/**
|
|
1280
|
+
* Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
|
|
1281
|
+
*/
|
|
1282
|
+
appLogsTimezone: TimeZones;
|
|
1279
1283
|
};
|
|
1280
1284
|
|
|
1281
1285
|
/**
|
|
@@ -4353,6 +4357,10 @@ declare type DomainSettingsRule = {
|
|
|
4353
4357
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4354
4358
|
*/
|
|
4355
4359
|
options: PerDomainSettings;
|
|
4360
|
+
/**
|
|
4361
|
+
* Options to use when comparing URIs to the `match` patterns.
|
|
4362
|
+
*/
|
|
4363
|
+
matchOptions?: RuleMatchOptions;
|
|
4356
4364
|
};
|
|
4357
4365
|
|
|
4358
4366
|
/**
|
|
@@ -9232,6 +9240,10 @@ declare type NavigationRules = {
|
|
|
9232
9240
|
allowlist?: string[];
|
|
9233
9241
|
/** Forbidden URLs for navigation. */
|
|
9234
9242
|
denylist?: string[];
|
|
9243
|
+
/**
|
|
9244
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
|
9245
|
+
*/
|
|
9246
|
+
matchOptions?: RuleMatchOptions;
|
|
9235
9247
|
};
|
|
9236
9248
|
|
|
9237
9249
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
|
@@ -9339,6 +9351,7 @@ declare namespace OpenFin {
|
|
|
9339
9351
|
WindowBounds,
|
|
9340
9352
|
Rectangle,
|
|
9341
9353
|
ApplicationCreationOptions,
|
|
9354
|
+
TimeZones,
|
|
9342
9355
|
ApplicationOptions,
|
|
9343
9356
|
CustomProtocolMissingState,
|
|
9344
9357
|
CustomProtocolMalformedState,
|
|
@@ -9380,6 +9393,7 @@ declare namespace OpenFin {
|
|
|
9380
9393
|
Api,
|
|
9381
9394
|
ApiSettings,
|
|
9382
9395
|
InjectionType,
|
|
9396
|
+
RuleMatchOptions,
|
|
9383
9397
|
NavigationRules,
|
|
9384
9398
|
ContentNavigation,
|
|
9385
9399
|
ContentRedirect,
|
|
@@ -12300,6 +12314,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
|
12300
12314
|
};
|
|
12301
12315
|
}
|
|
12302
12316
|
|
|
12317
|
+
/**
|
|
12318
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
|
12319
|
+
*/
|
|
12320
|
+
declare type RuleMatchOptions = {
|
|
12321
|
+
/**
|
|
12322
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
|
12323
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
|
12324
|
+
*/
|
|
12325
|
+
matchAllSchemes?: boolean;
|
|
12326
|
+
};
|
|
12327
|
+
|
|
12303
12328
|
declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
|
|
12304
12329
|
|
|
12305
12330
|
/**
|
|
@@ -14638,6 +14663,8 @@ declare type Time = {
|
|
|
14638
14663
|
irq: number;
|
|
14639
14664
|
};
|
|
14640
14665
|
|
|
14666
|
+
declare type TimeZones = 'utc' | 'local';
|
|
14667
|
+
|
|
14641
14668
|
/**
|
|
14642
14669
|
* @interface
|
|
14643
14670
|
*/
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -1276,6 +1276,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
|
|
|
1276
1276
|
* When set to `true`, any `beforeunload` handler set on the app will fire.
|
|
1277
1277
|
*/
|
|
1278
1278
|
enableBeforeUnload: boolean;
|
|
1279
|
+
/**
|
|
1280
|
+
* Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
|
|
1281
|
+
*/
|
|
1282
|
+
appLogsTimezone: TimeZones;
|
|
1279
1283
|
};
|
|
1280
1284
|
|
|
1281
1285
|
/**
|
|
@@ -4353,6 +4357,10 @@ declare type DomainSettingsRule = {
|
|
|
4353
4357
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4354
4358
|
*/
|
|
4355
4359
|
options: PerDomainSettings;
|
|
4360
|
+
/**
|
|
4361
|
+
* Options to use when comparing URIs to the `match` patterns.
|
|
4362
|
+
*/
|
|
4363
|
+
matchOptions?: RuleMatchOptions;
|
|
4356
4364
|
};
|
|
4357
4365
|
|
|
4358
4366
|
/**
|
|
@@ -9232,6 +9240,10 @@ declare type NavigationRules = {
|
|
|
9232
9240
|
allowlist?: string[];
|
|
9233
9241
|
/** Forbidden URLs for navigation. */
|
|
9234
9242
|
denylist?: string[];
|
|
9243
|
+
/**
|
|
9244
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
|
9245
|
+
*/
|
|
9246
|
+
matchOptions?: RuleMatchOptions;
|
|
9235
9247
|
};
|
|
9236
9248
|
|
|
9237
9249
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
|
@@ -9339,6 +9351,7 @@ declare namespace OpenFin {
|
|
|
9339
9351
|
WindowBounds,
|
|
9340
9352
|
Rectangle,
|
|
9341
9353
|
ApplicationCreationOptions,
|
|
9354
|
+
TimeZones,
|
|
9342
9355
|
ApplicationOptions,
|
|
9343
9356
|
CustomProtocolMissingState,
|
|
9344
9357
|
CustomProtocolMalformedState,
|
|
@@ -9380,6 +9393,7 @@ declare namespace OpenFin {
|
|
|
9380
9393
|
Api,
|
|
9381
9394
|
ApiSettings,
|
|
9382
9395
|
InjectionType,
|
|
9396
|
+
RuleMatchOptions,
|
|
9383
9397
|
NavigationRules,
|
|
9384
9398
|
ContentNavigation,
|
|
9385
9399
|
ContentRedirect,
|
|
@@ -12300,6 +12314,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
|
12300
12314
|
};
|
|
12301
12315
|
}
|
|
12302
12316
|
|
|
12317
|
+
/**
|
|
12318
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
|
12319
|
+
*/
|
|
12320
|
+
declare type RuleMatchOptions = {
|
|
12321
|
+
/**
|
|
12322
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
|
12323
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
|
12324
|
+
*/
|
|
12325
|
+
matchAllSchemes?: boolean;
|
|
12326
|
+
};
|
|
12327
|
+
|
|
12303
12328
|
declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
|
|
12304
12329
|
|
|
12305
12330
|
/**
|
|
@@ -14638,6 +14663,8 @@ declare type Time = {
|
|
|
14638
14663
|
irq: number;
|
|
14639
14664
|
};
|
|
14640
14665
|
|
|
14666
|
+
declare type TimeZones = 'utc' | 'local';
|
|
14667
|
+
|
|
14641
14668
|
/**
|
|
14642
14669
|
* @interface
|
|
14643
14670
|
*/
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -1282,6 +1282,10 @@ declare type ApplicationOptions = LegacyWinOptionsInAppOptions & {
|
|
|
1282
1282
|
* When set to `true`, any `beforeunload` handler set on the app will fire.
|
|
1283
1283
|
*/
|
|
1284
1284
|
enableBeforeUnload: boolean;
|
|
1285
|
+
/**
|
|
1286
|
+
* Set the timezone for the app logs. When setting this value the timestamp will be in ISO 8601 format. By default, if no value is set, it will show the local time in this format: 'y-MM-dd HH:mm:ss.SSS'
|
|
1287
|
+
*/
|
|
1288
|
+
appLogsTimezone: TimeZones;
|
|
1285
1289
|
};
|
|
1286
1290
|
|
|
1287
1291
|
/**
|
|
@@ -4412,6 +4416,10 @@ declare type DomainSettingsRule = {
|
|
|
4412
4416
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
|
4413
4417
|
*/
|
|
4414
4418
|
options: PerDomainSettings;
|
|
4419
|
+
/**
|
|
4420
|
+
* Options to use when comparing URIs to the `match` patterns.
|
|
4421
|
+
*/
|
|
4422
|
+
matchOptions?: RuleMatchOptions;
|
|
4415
4423
|
};
|
|
4416
4424
|
|
|
4417
4425
|
/**
|
|
@@ -9537,6 +9545,10 @@ declare type NavigationRules = {
|
|
|
9537
9545
|
allowlist?: string[];
|
|
9538
9546
|
/** Forbidden URLs for navigation. */
|
|
9539
9547
|
denylist?: string[];
|
|
9548
|
+
/**
|
|
9549
|
+
* Options to use when comparing URIs to the `allowlist` and `denylist` patterns.
|
|
9550
|
+
*/
|
|
9551
|
+
matchOptions?: RuleMatchOptions;
|
|
9540
9552
|
};
|
|
9541
9553
|
|
|
9542
9554
|
declare type NewConnectConfig = ConfigWithUuid & ConfigWithRuntime;
|
|
@@ -9654,6 +9666,7 @@ declare namespace OpenFin {
|
|
|
9654
9666
|
WindowBounds,
|
|
9655
9667
|
Rectangle,
|
|
9656
9668
|
ApplicationCreationOptions,
|
|
9669
|
+
TimeZones,
|
|
9657
9670
|
ApplicationOptions,
|
|
9658
9671
|
CustomProtocolMissingState,
|
|
9659
9672
|
CustomProtocolMalformedState,
|
|
@@ -9695,6 +9708,7 @@ declare namespace OpenFin {
|
|
|
9695
9708
|
Api,
|
|
9696
9709
|
ApiSettings,
|
|
9697
9710
|
InjectionType,
|
|
9711
|
+
RuleMatchOptions,
|
|
9698
9712
|
NavigationRules,
|
|
9699
9713
|
ContentNavigation,
|
|
9700
9714
|
ContentRedirect,
|
|
@@ -12693,6 +12707,17 @@ declare interface RTCProtocolOffer extends ProtocolPacketBase {
|
|
|
12693
12707
|
};
|
|
12694
12708
|
}
|
|
12695
12709
|
|
|
12710
|
+
/**
|
|
12711
|
+
* Controls the behavior of the navigation URI pattern matching algorithm.
|
|
12712
|
+
*/
|
|
12713
|
+
declare type RuleMatchOptions = {
|
|
12714
|
+
/**
|
|
12715
|
+
* Matches all schemes rather than just http and https when a wild card is specified. For example, `'*://*.site.com'` will
|
|
12716
|
+
* only match urls which begin with `'http:'` or `'https:'` unless this setting is `true`.
|
|
12717
|
+
*/
|
|
12718
|
+
matchAllSchemes?: boolean;
|
|
12719
|
+
};
|
|
12720
|
+
|
|
12696
12721
|
declare type RunRequestedEvent = OpenFin.ApplicationEvents.RunRequestedEvent;
|
|
12697
12722
|
|
|
12698
12723
|
/**
|
|
@@ -15044,6 +15069,8 @@ declare type Time = {
|
|
|
15044
15069
|
irq: number;
|
|
15045
15070
|
};
|
|
15046
15071
|
|
|
15072
|
+
declare type TimeZones = 'utc' | 'local';
|
|
15073
|
+
|
|
15047
15074
|
/**
|
|
15048
15075
|
* @interface
|
|
15049
15076
|
*/
|