@janole/ai-sdk-provider-codex-asp 0.4.3 → 0.4.4
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -27
- package/dist/index.d.ts +0 -27
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -69,24 +69,6 @@ type AdditionalFileSystemPermissions = {
|
|
|
69
69
|
write: Array<AbsolutePathBuf> | null;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
type MacOsAutomationPermission = "none" | "all" | {
|
|
73
|
-
"bundle_ids": Array<string>;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
type MacOsContactsPermission = "none" | "read_only" | "read_write";
|
|
77
|
-
|
|
78
|
-
type MacOsPreferencesPermission = "none" | "read_only" | "read_write";
|
|
79
|
-
|
|
80
|
-
type AdditionalMacOsPermissions = {
|
|
81
|
-
preferences: MacOsPreferencesPermission;
|
|
82
|
-
automations: MacOsAutomationPermission;
|
|
83
|
-
launchServices: boolean;
|
|
84
|
-
accessibility: boolean;
|
|
85
|
-
calendar: boolean;
|
|
86
|
-
reminders: boolean;
|
|
87
|
-
contacts: MacOsContactsPermission;
|
|
88
|
-
};
|
|
89
|
-
|
|
90
72
|
type AdditionalNetworkPermissions = {
|
|
91
73
|
enabled: boolean | null;
|
|
92
74
|
};
|
|
@@ -94,7 +76,6 @@ type AdditionalNetworkPermissions = {
|
|
|
94
76
|
type AdditionalPermissionProfile = {
|
|
95
77
|
network: AdditionalNetworkPermissions | null;
|
|
96
78
|
fileSystem: AdditionalFileSystemPermissions | null;
|
|
97
|
-
macos: AdditionalMacOsPermissions | null;
|
|
98
79
|
};
|
|
99
80
|
|
|
100
81
|
type CommandAction = {
|
|
@@ -116,10 +97,6 @@ type CommandAction = {
|
|
|
116
97
|
command: string;
|
|
117
98
|
};
|
|
118
99
|
|
|
119
|
-
type CommandExecutionRequestApprovalSkillMetadata = {
|
|
120
|
-
pathToSkillsMd: string;
|
|
121
|
-
};
|
|
122
|
-
|
|
123
100
|
type NetworkApprovalProtocol = "http" | "https" | "socks5Tcp" | "socks5Udp";
|
|
124
101
|
|
|
125
102
|
type NetworkApprovalContext = {
|
|
@@ -165,10 +142,6 @@ type CommandExecutionRequestApprovalParams = {
|
|
|
165
142
|
* Optional additional permissions requested for this command.
|
|
166
143
|
*/
|
|
167
144
|
additionalPermissions?: AdditionalPermissionProfile | null;
|
|
168
|
-
/**
|
|
169
|
-
* Optional skill metadata when the approval was triggered by a skill script.
|
|
170
|
-
*/
|
|
171
|
-
skillMetadata?: CommandExecutionRequestApprovalSkillMetadata | null;
|
|
172
145
|
/**
|
|
173
146
|
* Optional proposed execpolicy amendment to allow similar commands without prompting.
|
|
174
147
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -69,24 +69,6 @@ type AdditionalFileSystemPermissions = {
|
|
|
69
69
|
write: Array<AbsolutePathBuf> | null;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
type MacOsAutomationPermission = "none" | "all" | {
|
|
73
|
-
"bundle_ids": Array<string>;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
type MacOsContactsPermission = "none" | "read_only" | "read_write";
|
|
77
|
-
|
|
78
|
-
type MacOsPreferencesPermission = "none" | "read_only" | "read_write";
|
|
79
|
-
|
|
80
|
-
type AdditionalMacOsPermissions = {
|
|
81
|
-
preferences: MacOsPreferencesPermission;
|
|
82
|
-
automations: MacOsAutomationPermission;
|
|
83
|
-
launchServices: boolean;
|
|
84
|
-
accessibility: boolean;
|
|
85
|
-
calendar: boolean;
|
|
86
|
-
reminders: boolean;
|
|
87
|
-
contacts: MacOsContactsPermission;
|
|
88
|
-
};
|
|
89
|
-
|
|
90
72
|
type AdditionalNetworkPermissions = {
|
|
91
73
|
enabled: boolean | null;
|
|
92
74
|
};
|
|
@@ -94,7 +76,6 @@ type AdditionalNetworkPermissions = {
|
|
|
94
76
|
type AdditionalPermissionProfile = {
|
|
95
77
|
network: AdditionalNetworkPermissions | null;
|
|
96
78
|
fileSystem: AdditionalFileSystemPermissions | null;
|
|
97
|
-
macos: AdditionalMacOsPermissions | null;
|
|
98
79
|
};
|
|
99
80
|
|
|
100
81
|
type CommandAction = {
|
|
@@ -116,10 +97,6 @@ type CommandAction = {
|
|
|
116
97
|
command: string;
|
|
117
98
|
};
|
|
118
99
|
|
|
119
|
-
type CommandExecutionRequestApprovalSkillMetadata = {
|
|
120
|
-
pathToSkillsMd: string;
|
|
121
|
-
};
|
|
122
|
-
|
|
123
100
|
type NetworkApprovalProtocol = "http" | "https" | "socks5Tcp" | "socks5Udp";
|
|
124
101
|
|
|
125
102
|
type NetworkApprovalContext = {
|
|
@@ -165,10 +142,6 @@ type CommandExecutionRequestApprovalParams = {
|
|
|
165
142
|
* Optional additional permissions requested for this command.
|
|
166
143
|
*/
|
|
167
144
|
additionalPermissions?: AdditionalPermissionProfile | null;
|
|
168
|
-
/**
|
|
169
|
-
* Optional skill metadata when the approval was triggered by a skill script.
|
|
170
|
-
*/
|
|
171
|
-
skillMetadata?: CommandExecutionRequestApprovalSkillMetadata | null;
|
|
172
145
|
/**
|
|
173
146
|
* Optional proposed execpolicy amendment to allow similar commands without prompting.
|
|
174
147
|
*/
|
package/dist/index.js
CHANGED
|
@@ -933,7 +933,7 @@ var DynamicToolsDispatcher = class {
|
|
|
933
933
|
// package.json
|
|
934
934
|
var package_default = {
|
|
935
935
|
name: "@janole/ai-sdk-provider-codex-asp",
|
|
936
|
-
version: "0.4.
|
|
936
|
+
version: "0.4.4"};
|
|
937
937
|
|
|
938
938
|
// src/package-info.ts
|
|
939
939
|
var PACKAGE_NAME = package_default.name;
|