@interopio/desktop 6.14.0 → 6.15.0
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 +4 -0
- package/desktop.d.ts +34 -0
- package/dist/desktop.browser.js +251 -76
- package/dist/desktop.browser.js.map +1 -1
- package/dist/desktop.browser.min.js +1 -1
- package/dist/desktop.browser.min.js.map +1 -1
- package/dist/desktop.es.js +251 -76
- package/dist/desktop.es.js.map +1 -1
- package/dist/desktop.umd.js +251 -76
- package/dist/desktop.umd.js.map +1 -1
- package/dist/desktop.umd.min.js +1 -1
- package/dist/desktop.umd.min.js.map +1 -1
- package/package.json +3 -3
package/changelog.md
CHANGED
package/desktop.d.ts
CHANGED
|
@@ -6880,6 +6880,34 @@ export declare namespace IOConnectDesktop {
|
|
|
6880
6880
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface, @typescript-eslint/no-empty-object-type
|
|
6881
6881
|
export interface IntentInfo extends AddIntentListenerRequest { }
|
|
6882
6882
|
|
|
6883
|
+
/**
|
|
6884
|
+
* Criteria for excluding Intent handlers from the results when using the `filterHandlers()` method.
|
|
6885
|
+
* Intent handlers can be excluded either by app name, or by app instance ID.
|
|
6886
|
+
*/
|
|
6887
|
+
export type HandlerExclusionCriteria = AppHandlerExclusion | InstanceHandlerExclusion;
|
|
6888
|
+
|
|
6889
|
+
/**
|
|
6890
|
+
* Describes the criteria for excluding Intent handlers by app name when using the `filterHandlers()` method.
|
|
6891
|
+
*/
|
|
6892
|
+
export interface AppHandlerExclusion {
|
|
6893
|
+
/**
|
|
6894
|
+
* Name of an app to exclude from the list of Intent handlers.
|
|
6895
|
+
* When using an app name as an exclusion criterion, all Intents handlers associated with that app name will be excluded
|
|
6896
|
+
* (the app itself and all already running instances of it).
|
|
6897
|
+
*/
|
|
6898
|
+
applicationName: string;
|
|
6899
|
+
}
|
|
6900
|
+
|
|
6901
|
+
/**
|
|
6902
|
+
* Describes the criteria for excluding Intent handlers by app instance ID when using the `filterHandlers()` method.
|
|
6903
|
+
*/
|
|
6904
|
+
export interface InstanceHandlerExclusion {
|
|
6905
|
+
/**
|
|
6906
|
+
* ID of a specific app instance to exclude from the list of Intent handlers.
|
|
6907
|
+
*/
|
|
6908
|
+
instanceId: string;
|
|
6909
|
+
}
|
|
6910
|
+
|
|
6883
6911
|
/**
|
|
6884
6912
|
* Specifies the criteria for filtering the available Intent handlers when using the `filterHandlers()` method.
|
|
6885
6913
|
*/
|
|
@@ -6920,6 +6948,12 @@ export declare namespace IOConnectDesktop {
|
|
|
6920
6948
|
* List of app names which will be used as a filter criteria.
|
|
6921
6949
|
*/
|
|
6922
6950
|
applicationNames?: string[];
|
|
6951
|
+
|
|
6952
|
+
/**
|
|
6953
|
+
* List of exclusion criteria for filtering out Intent handlers from the results.
|
|
6954
|
+
* @since io.Connect Desktop 9.10
|
|
6955
|
+
*/
|
|
6956
|
+
excludeList?: HandlerExclusionCriteria[];
|
|
6923
6957
|
}
|
|
6924
6958
|
|
|
6925
6959
|
/**
|