@nikcli-ai/sdk 1.282.0 → 1.283.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.
|
@@ -462,6 +462,11 @@ export type ConnectorLinear = {
|
|
|
462
462
|
enabled?: boolean | undefined;
|
|
463
463
|
};
|
|
464
464
|
export type LayoutConfig = "auto" | "stretch";
|
|
465
|
+
export type PolicyStatementConfig = {
|
|
466
|
+
effect: "allow" | "deny";
|
|
467
|
+
action: string;
|
|
468
|
+
resource: string;
|
|
469
|
+
};
|
|
465
470
|
export type RagConfig = {
|
|
466
471
|
model?: string | undefined;
|
|
467
472
|
provider?: string | undefined;
|
|
@@ -2932,6 +2937,7 @@ export type Config = {
|
|
|
2932
2937
|
reserved?: number | undefined;
|
|
2933
2938
|
} | undefined;
|
|
2934
2939
|
experimental?: {
|
|
2940
|
+
policies?: Array<PolicyStatementConfig> | undefined;
|
|
2935
2941
|
hook?: {
|
|
2936
2942
|
file_edited?: {
|
|
2937
2943
|
[x: string]: Array<{
|
|
@@ -4143,6 +4149,11 @@ export type ConfigUpdateInput = {
|
|
|
4143
4149
|
readonly reserved?: number | undefined;
|
|
4144
4150
|
} | undefined;
|
|
4145
4151
|
readonly experimental?: {
|
|
4152
|
+
readonly policies?: ReadonlyArray<{
|
|
4153
|
+
readonly effect: "allow" | "deny";
|
|
4154
|
+
readonly action: string;
|
|
4155
|
+
readonly resource: string;
|
|
4156
|
+
}> | undefined;
|
|
4146
4157
|
readonly hook?: {
|
|
4147
4158
|
readonly file_edited?: {
|
|
4148
4159
|
readonly [x: string]: ReadonlyArray<{
|