shortcutkit 0.1.1 → 0.3.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/README.md +49 -10
- package/dist/generated/actions.d.ts +42534 -2725
- package/dist/index.d.ts +7 -0
- package/dist/index.js +19695 -12622
- package/dist/provenance.d.ts +11 -0
- package/package.json +1 -1
package/dist/provenance.d.ts
CHANGED
|
@@ -10,8 +10,19 @@ export interface Provenance {
|
|
|
10
10
|
build: string;
|
|
11
11
|
};
|
|
12
12
|
workflowKit: string;
|
|
13
|
+
/** ActionKit.framework version; it defines the built-in actions WorkflowKit does not (Ask for Input, Show Alert, Count, ...). */
|
|
14
|
+
actionKit?: string;
|
|
15
|
+
/** The Shortcuts app's action index the App Intents catalogue was read from. */
|
|
16
|
+
toolKit?: {
|
|
17
|
+
source: string;
|
|
18
|
+
osVersion: string;
|
|
19
|
+
indexerSource: string;
|
|
20
|
+
toolkitVersion: string;
|
|
21
|
+
launchServicesSequence: number;
|
|
22
|
+
};
|
|
13
23
|
counts: {
|
|
14
24
|
builtinActions: number;
|
|
25
|
+
appleAppIntents?: number;
|
|
15
26
|
identifierStrings: number;
|
|
16
27
|
appProvidedActions: number;
|
|
17
28
|
};
|
package/package.json
CHANGED