@hol-org/rb-client 0.1.178 → 0.1.180
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 +809 -7
- package/dist/index.d.cts +2933 -212
- package/dist/index.d.ts +2933 -212
- package/dist/index.js +809 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11824,24 +11824,36 @@ declare const guardBucketBalanceSchema: z.ZodObject<{
|
|
|
11824
11824
|
}>;
|
|
11825
11825
|
declare const guardPrincipalSchema: z.ZodObject<{
|
|
11826
11826
|
signedIn: z.ZodBoolean;
|
|
11827
|
+
principalType: z.ZodDefault<z.ZodEnum<["user", "service"]>>;
|
|
11827
11828
|
userId: z.ZodOptional<z.ZodString>;
|
|
11828
11829
|
email: z.ZodOptional<z.ZodString>;
|
|
11829
11830
|
accountId: z.ZodOptional<z.ZodString>;
|
|
11830
11831
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
11832
|
+
serviceId: z.ZodOptional<z.ZodString>;
|
|
11833
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
11834
|
+
serviceLabel: z.ZodOptional<z.ZodString>;
|
|
11831
11835
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
11832
11836
|
}, "strip", z.ZodTypeAny, {
|
|
11833
11837
|
accountId?: string;
|
|
11834
11838
|
userId?: string;
|
|
11835
11839
|
email?: string;
|
|
11836
11840
|
signedIn?: boolean;
|
|
11841
|
+
principalType?: "service" | "user";
|
|
11837
11842
|
stripeCustomerId?: string;
|
|
11843
|
+
serviceId?: string;
|
|
11844
|
+
workspaceId?: string;
|
|
11845
|
+
serviceLabel?: string;
|
|
11838
11846
|
roles?: string[];
|
|
11839
11847
|
}, {
|
|
11840
11848
|
accountId?: string;
|
|
11841
11849
|
userId?: string;
|
|
11842
11850
|
email?: string;
|
|
11843
11851
|
signedIn?: boolean;
|
|
11852
|
+
principalType?: "service" | "user";
|
|
11844
11853
|
stripeCustomerId?: string;
|
|
11854
|
+
serviceId?: string;
|
|
11855
|
+
workspaceId?: string;
|
|
11856
|
+
serviceLabel?: string;
|
|
11845
11857
|
roles?: string[];
|
|
11846
11858
|
}>;
|
|
11847
11859
|
declare const guardEntitlementsSchema: z.ZodObject<{
|
|
@@ -11872,24 +11884,36 @@ declare const guardEntitlementsSchema: z.ZodObject<{
|
|
|
11872
11884
|
declare const guardSessionResponseSchema: z.ZodObject<{
|
|
11873
11885
|
principal: z.ZodObject<{
|
|
11874
11886
|
signedIn: z.ZodBoolean;
|
|
11887
|
+
principalType: z.ZodDefault<z.ZodEnum<["user", "service"]>>;
|
|
11875
11888
|
userId: z.ZodOptional<z.ZodString>;
|
|
11876
11889
|
email: z.ZodOptional<z.ZodString>;
|
|
11877
11890
|
accountId: z.ZodOptional<z.ZodString>;
|
|
11878
11891
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
11892
|
+
serviceId: z.ZodOptional<z.ZodString>;
|
|
11893
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
11894
|
+
serviceLabel: z.ZodOptional<z.ZodString>;
|
|
11879
11895
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
11880
11896
|
}, "strip", z.ZodTypeAny, {
|
|
11881
11897
|
accountId?: string;
|
|
11882
11898
|
userId?: string;
|
|
11883
11899
|
email?: string;
|
|
11884
11900
|
signedIn?: boolean;
|
|
11901
|
+
principalType?: "service" | "user";
|
|
11885
11902
|
stripeCustomerId?: string;
|
|
11903
|
+
serviceId?: string;
|
|
11904
|
+
workspaceId?: string;
|
|
11905
|
+
serviceLabel?: string;
|
|
11886
11906
|
roles?: string[];
|
|
11887
11907
|
}, {
|
|
11888
11908
|
accountId?: string;
|
|
11889
11909
|
userId?: string;
|
|
11890
11910
|
email?: string;
|
|
11891
11911
|
signedIn?: boolean;
|
|
11912
|
+
principalType?: "service" | "user";
|
|
11892
11913
|
stripeCustomerId?: string;
|
|
11914
|
+
serviceId?: string;
|
|
11915
|
+
workspaceId?: string;
|
|
11916
|
+
serviceLabel?: string;
|
|
11893
11917
|
roles?: string[];
|
|
11894
11918
|
}>;
|
|
11895
11919
|
entitlements: z.ZodObject<{
|
|
@@ -11954,7 +11978,11 @@ declare const guardSessionResponseSchema: z.ZodObject<{
|
|
|
11954
11978
|
userId?: string;
|
|
11955
11979
|
email?: string;
|
|
11956
11980
|
signedIn?: boolean;
|
|
11981
|
+
principalType?: "service" | "user";
|
|
11957
11982
|
stripeCustomerId?: string;
|
|
11983
|
+
serviceId?: string;
|
|
11984
|
+
workspaceId?: string;
|
|
11985
|
+
serviceLabel?: string;
|
|
11958
11986
|
roles?: string[];
|
|
11959
11987
|
};
|
|
11960
11988
|
entitlements?: {
|
|
@@ -11983,7 +12011,11 @@ declare const guardSessionResponseSchema: z.ZodObject<{
|
|
|
11983
12011
|
userId?: string;
|
|
11984
12012
|
email?: string;
|
|
11985
12013
|
signedIn?: boolean;
|
|
12014
|
+
principalType?: "service" | "user";
|
|
11986
12015
|
stripeCustomerId?: string;
|
|
12016
|
+
serviceId?: string;
|
|
12017
|
+
workspaceId?: string;
|
|
12018
|
+
serviceLabel?: string;
|
|
11987
12019
|
roles?: string[];
|
|
11988
12020
|
};
|
|
11989
12021
|
entitlements?: {
|
|
@@ -12041,137 +12073,2619 @@ declare const guardBalanceResponseSchema: z.ZodObject<{
|
|
|
12041
12073
|
}[];
|
|
12042
12074
|
generatedAt?: string;
|
|
12043
12075
|
}>;
|
|
12044
|
-
declare const
|
|
12045
|
-
|
|
12046
|
-
artifactName: z.ZodString;
|
|
12076
|
+
declare const guardFeedItemSchema: z.ZodObject<{
|
|
12077
|
+
id: z.ZodString;
|
|
12047
12078
|
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12048
|
-
|
|
12049
|
-
|
|
12050
|
-
|
|
12079
|
+
slug: z.ZodString;
|
|
12080
|
+
name: z.ZodString;
|
|
12081
|
+
href: z.ZodString;
|
|
12082
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12051
12083
|
safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12052
12084
|
trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12053
|
-
|
|
12054
|
-
|
|
12085
|
+
verified: z.ZodBoolean;
|
|
12086
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12087
|
+
updatedAt: z.ZodString;
|
|
12055
12088
|
}, "strip", z.ZodTypeAny, {
|
|
12089
|
+
name?: string;
|
|
12090
|
+
id?: string;
|
|
12091
|
+
updatedAt?: string;
|
|
12056
12092
|
recommendation?: "monitor" | "review" | "block";
|
|
12057
12093
|
trustScore?: number;
|
|
12058
|
-
artifactId?: string;
|
|
12059
|
-
artifactName?: string;
|
|
12060
12094
|
artifactType?: "skill" | "plugin";
|
|
12061
|
-
|
|
12062
|
-
verified?: boolean;
|
|
12063
|
-
safetyScore?: number;
|
|
12095
|
+
slug?: string;
|
|
12064
12096
|
href?: string;
|
|
12065
12097
|
ecosystem?: string;
|
|
12098
|
+
safetyScore?: number;
|
|
12099
|
+
verified?: boolean;
|
|
12066
12100
|
}, {
|
|
12101
|
+
name?: string;
|
|
12102
|
+
id?: string;
|
|
12103
|
+
updatedAt?: string;
|
|
12067
12104
|
recommendation?: "monitor" | "review" | "block";
|
|
12068
12105
|
trustScore?: number;
|
|
12069
|
-
artifactId?: string;
|
|
12070
|
-
artifactName?: string;
|
|
12071
12106
|
artifactType?: "skill" | "plugin";
|
|
12072
|
-
|
|
12073
|
-
verified?: boolean;
|
|
12074
|
-
safetyScore?: number;
|
|
12107
|
+
slug?: string;
|
|
12075
12108
|
href?: string;
|
|
12076
12109
|
ecosystem?: string;
|
|
12110
|
+
safetyScore?: number;
|
|
12111
|
+
verified?: boolean;
|
|
12077
12112
|
}>;
|
|
12078
|
-
declare const
|
|
12113
|
+
declare const guardFeedSummarySchema: z.ZodObject<{
|
|
12114
|
+
total: z.ZodNumber;
|
|
12115
|
+
monitorCount: z.ZodNumber;
|
|
12116
|
+
reviewCount: z.ZodNumber;
|
|
12117
|
+
blockCount: z.ZodNumber;
|
|
12118
|
+
}, "strip", z.ZodTypeAny, {
|
|
12119
|
+
total?: number;
|
|
12120
|
+
monitorCount?: number;
|
|
12121
|
+
reviewCount?: number;
|
|
12122
|
+
blockCount?: number;
|
|
12123
|
+
}, {
|
|
12124
|
+
total?: number;
|
|
12125
|
+
monitorCount?: number;
|
|
12126
|
+
reviewCount?: number;
|
|
12127
|
+
blockCount?: number;
|
|
12128
|
+
}>;
|
|
12129
|
+
declare const guardFeedResponseSchema: z.ZodObject<{
|
|
12079
12130
|
generatedAt: z.ZodString;
|
|
12080
|
-
|
|
12081
|
-
|
|
12082
|
-
}, "strip", z.ZodTypeAny, {
|
|
12083
|
-
sha256?: string;
|
|
12084
|
-
}, {
|
|
12085
|
-
sha256?: string;
|
|
12086
|
-
}>;
|
|
12087
|
-
match: z.ZodNullable<z.ZodObject<{
|
|
12088
|
-
artifactId: z.ZodString;
|
|
12089
|
-
artifactName: z.ZodString;
|
|
12131
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12132
|
+
id: z.ZodString;
|
|
12090
12133
|
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12091
|
-
|
|
12092
|
-
|
|
12093
|
-
|
|
12134
|
+
slug: z.ZodString;
|
|
12135
|
+
name: z.ZodString;
|
|
12136
|
+
href: z.ZodString;
|
|
12137
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12094
12138
|
safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12095
12139
|
trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12096
|
-
|
|
12097
|
-
|
|
12140
|
+
verified: z.ZodBoolean;
|
|
12141
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12142
|
+
updatedAt: z.ZodString;
|
|
12098
12143
|
}, "strip", z.ZodTypeAny, {
|
|
12144
|
+
name?: string;
|
|
12145
|
+
id?: string;
|
|
12146
|
+
updatedAt?: string;
|
|
12099
12147
|
recommendation?: "monitor" | "review" | "block";
|
|
12100
12148
|
trustScore?: number;
|
|
12101
|
-
artifactId?: string;
|
|
12102
|
-
artifactName?: string;
|
|
12103
12149
|
artifactType?: "skill" | "plugin";
|
|
12104
|
-
|
|
12105
|
-
verified?: boolean;
|
|
12106
|
-
safetyScore?: number;
|
|
12150
|
+
slug?: string;
|
|
12107
12151
|
href?: string;
|
|
12108
12152
|
ecosystem?: string;
|
|
12153
|
+
safetyScore?: number;
|
|
12154
|
+
verified?: boolean;
|
|
12109
12155
|
}, {
|
|
12156
|
+
name?: string;
|
|
12157
|
+
id?: string;
|
|
12158
|
+
updatedAt?: string;
|
|
12110
12159
|
recommendation?: "monitor" | "review" | "block";
|
|
12111
12160
|
trustScore?: number;
|
|
12112
|
-
artifactId?: string;
|
|
12113
|
-
artifactName?: string;
|
|
12114
12161
|
artifactType?: "skill" | "plugin";
|
|
12115
|
-
|
|
12116
|
-
verified?: boolean;
|
|
12117
|
-
safetyScore?: number;
|
|
12162
|
+
slug?: string;
|
|
12118
12163
|
href?: string;
|
|
12119
12164
|
ecosystem?: string;
|
|
12120
|
-
|
|
12121
|
-
|
|
12165
|
+
safetyScore?: number;
|
|
12166
|
+
verified?: boolean;
|
|
12167
|
+
}>, "many">;
|
|
12168
|
+
summary: z.ZodObject<{
|
|
12169
|
+
total: z.ZodNumber;
|
|
12170
|
+
monitorCount: z.ZodNumber;
|
|
12171
|
+
reviewCount: z.ZodNumber;
|
|
12172
|
+
blockCount: z.ZodNumber;
|
|
12173
|
+
}, "strip", z.ZodTypeAny, {
|
|
12174
|
+
total?: number;
|
|
12175
|
+
monitorCount?: number;
|
|
12176
|
+
reviewCount?: number;
|
|
12177
|
+
blockCount?: number;
|
|
12178
|
+
}, {
|
|
12179
|
+
total?: number;
|
|
12180
|
+
monitorCount?: number;
|
|
12181
|
+
reviewCount?: number;
|
|
12182
|
+
blockCount?: number;
|
|
12183
|
+
}>;
|
|
12122
12184
|
}, "strip", z.ZodTypeAny, {
|
|
12123
|
-
|
|
12185
|
+
summary?: {
|
|
12186
|
+
total?: number;
|
|
12187
|
+
monitorCount?: number;
|
|
12188
|
+
reviewCount?: number;
|
|
12189
|
+
blockCount?: number;
|
|
12190
|
+
};
|
|
12191
|
+
items?: {
|
|
12192
|
+
name?: string;
|
|
12193
|
+
id?: string;
|
|
12194
|
+
updatedAt?: string;
|
|
12124
12195
|
recommendation?: "monitor" | "review" | "block";
|
|
12125
12196
|
trustScore?: number;
|
|
12126
|
-
artifactId?: string;
|
|
12127
|
-
artifactName?: string;
|
|
12128
12197
|
artifactType?: "skill" | "plugin";
|
|
12129
|
-
|
|
12130
|
-
verified?: boolean;
|
|
12131
|
-
safetyScore?: number;
|
|
12198
|
+
slug?: string;
|
|
12132
12199
|
href?: string;
|
|
12133
12200
|
ecosystem?: string;
|
|
12134
|
-
|
|
12135
|
-
|
|
12136
|
-
|
|
12137
|
-
};
|
|
12201
|
+
safetyScore?: number;
|
|
12202
|
+
verified?: boolean;
|
|
12203
|
+
}[];
|
|
12138
12204
|
generatedAt?: string;
|
|
12139
|
-
evidence?: string[];
|
|
12140
12205
|
}, {
|
|
12141
|
-
|
|
12206
|
+
summary?: {
|
|
12207
|
+
total?: number;
|
|
12208
|
+
monitorCount?: number;
|
|
12209
|
+
reviewCount?: number;
|
|
12210
|
+
blockCount?: number;
|
|
12211
|
+
};
|
|
12212
|
+
items?: {
|
|
12213
|
+
name?: string;
|
|
12214
|
+
id?: string;
|
|
12215
|
+
updatedAt?: string;
|
|
12142
12216
|
recommendation?: "monitor" | "review" | "block";
|
|
12143
12217
|
trustScore?: number;
|
|
12144
|
-
artifactId?: string;
|
|
12145
|
-
artifactName?: string;
|
|
12146
12218
|
artifactType?: "skill" | "plugin";
|
|
12147
|
-
|
|
12148
|
-
verified?: boolean;
|
|
12149
|
-
safetyScore?: number;
|
|
12219
|
+
slug?: string;
|
|
12150
12220
|
href?: string;
|
|
12151
12221
|
ecosystem?: string;
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
};
|
|
12222
|
+
safetyScore?: number;
|
|
12223
|
+
verified?: boolean;
|
|
12224
|
+
}[];
|
|
12156
12225
|
generatedAt?: string;
|
|
12157
|
-
evidence?: string[];
|
|
12158
12226
|
}>;
|
|
12159
|
-
declare const
|
|
12227
|
+
declare const guardOverviewResponseSchema: z.ZodObject<{
|
|
12160
12228
|
generatedAt: z.ZodString;
|
|
12161
|
-
|
|
12162
|
-
|
|
12163
|
-
|
|
12164
|
-
|
|
12229
|
+
principal: z.ZodObject<{
|
|
12230
|
+
signedIn: z.ZodBoolean;
|
|
12231
|
+
principalType: z.ZodDefault<z.ZodEnum<["user", "service"]>>;
|
|
12232
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
12233
|
+
email: z.ZodOptional<z.ZodString>;
|
|
12234
|
+
accountId: z.ZodOptional<z.ZodString>;
|
|
12235
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
12236
|
+
serviceId: z.ZodOptional<z.ZodString>;
|
|
12237
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
12238
|
+
serviceLabel: z.ZodOptional<z.ZodString>;
|
|
12239
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
12240
|
+
}, "strip", z.ZodTypeAny, {
|
|
12241
|
+
accountId?: string;
|
|
12242
|
+
userId?: string;
|
|
12243
|
+
email?: string;
|
|
12244
|
+
signedIn?: boolean;
|
|
12245
|
+
principalType?: "service" | "user";
|
|
12246
|
+
stripeCustomerId?: string;
|
|
12247
|
+
serviceId?: string;
|
|
12248
|
+
workspaceId?: string;
|
|
12249
|
+
serviceLabel?: string;
|
|
12250
|
+
roles?: string[];
|
|
12251
|
+
}, {
|
|
12252
|
+
accountId?: string;
|
|
12253
|
+
userId?: string;
|
|
12254
|
+
email?: string;
|
|
12255
|
+
signedIn?: boolean;
|
|
12256
|
+
principalType?: "service" | "user";
|
|
12257
|
+
stripeCustomerId?: string;
|
|
12258
|
+
serviceId?: string;
|
|
12259
|
+
workspaceId?: string;
|
|
12260
|
+
serviceLabel?: string;
|
|
12261
|
+
roles?: string[];
|
|
12262
|
+
}>;
|
|
12263
|
+
entitlements: z.ZodObject<{
|
|
12264
|
+
planId: z.ZodEnum<["free", "pro", "team", "enterprise"]>;
|
|
12265
|
+
includedMonthlyCredits: z.ZodNumber;
|
|
12266
|
+
deviceLimit: z.ZodNumber;
|
|
12267
|
+
retentionDays: z.ZodNumber;
|
|
12268
|
+
syncEnabled: z.ZodBoolean;
|
|
12269
|
+
premiumFeedsEnabled: z.ZodBoolean;
|
|
12270
|
+
teamPolicyEnabled: z.ZodBoolean;
|
|
12271
|
+
}, "strip", z.ZodTypeAny, {
|
|
12272
|
+
includedMonthlyCredits?: number;
|
|
12273
|
+
planId?: "free" | "pro" | "team" | "enterprise";
|
|
12274
|
+
deviceLimit?: number;
|
|
12275
|
+
retentionDays?: number;
|
|
12276
|
+
syncEnabled?: boolean;
|
|
12277
|
+
premiumFeedsEnabled?: boolean;
|
|
12278
|
+
teamPolicyEnabled?: boolean;
|
|
12279
|
+
}, {
|
|
12280
|
+
includedMonthlyCredits?: number;
|
|
12281
|
+
planId?: "free" | "pro" | "team" | "enterprise";
|
|
12282
|
+
deviceLimit?: number;
|
|
12283
|
+
retentionDays?: number;
|
|
12284
|
+
syncEnabled?: boolean;
|
|
12285
|
+
premiumFeedsEnabled?: boolean;
|
|
12286
|
+
teamPolicyEnabled?: boolean;
|
|
12287
|
+
}>;
|
|
12288
|
+
balance: z.ZodNullable<z.ZodObject<{
|
|
12289
|
+
accountId: z.ZodString;
|
|
12290
|
+
availableCredits: z.ZodNumber;
|
|
12291
|
+
}, "strip", z.ZodTypeAny, {
|
|
12292
|
+
accountId?: string;
|
|
12293
|
+
availableCredits?: number;
|
|
12294
|
+
}, {
|
|
12295
|
+
accountId?: string;
|
|
12296
|
+
availableCredits?: number;
|
|
12297
|
+
}>>;
|
|
12298
|
+
trustFeed: z.ZodObject<{
|
|
12299
|
+
generatedAt: z.ZodString;
|
|
12300
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12301
|
+
id: z.ZodString;
|
|
12302
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12303
|
+
slug: z.ZodString;
|
|
12304
|
+
name: z.ZodString;
|
|
12305
|
+
href: z.ZodString;
|
|
12306
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12307
|
+
safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12308
|
+
trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12309
|
+
verified: z.ZodBoolean;
|
|
12310
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12311
|
+
updatedAt: z.ZodString;
|
|
12312
|
+
}, "strip", z.ZodTypeAny, {
|
|
12313
|
+
name?: string;
|
|
12314
|
+
id?: string;
|
|
12315
|
+
updatedAt?: string;
|
|
12316
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12317
|
+
trustScore?: number;
|
|
12318
|
+
artifactType?: "skill" | "plugin";
|
|
12319
|
+
slug?: string;
|
|
12320
|
+
href?: string;
|
|
12321
|
+
ecosystem?: string;
|
|
12322
|
+
safetyScore?: number;
|
|
12323
|
+
verified?: boolean;
|
|
12324
|
+
}, {
|
|
12325
|
+
name?: string;
|
|
12326
|
+
id?: string;
|
|
12327
|
+
updatedAt?: string;
|
|
12328
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12329
|
+
trustScore?: number;
|
|
12330
|
+
artifactType?: "skill" | "plugin";
|
|
12331
|
+
slug?: string;
|
|
12332
|
+
href?: string;
|
|
12333
|
+
ecosystem?: string;
|
|
12334
|
+
safetyScore?: number;
|
|
12335
|
+
verified?: boolean;
|
|
12336
|
+
}>, "many">;
|
|
12337
|
+
summary: z.ZodObject<{
|
|
12338
|
+
total: z.ZodNumber;
|
|
12339
|
+
monitorCount: z.ZodNumber;
|
|
12340
|
+
reviewCount: z.ZodNumber;
|
|
12341
|
+
blockCount: z.ZodNumber;
|
|
12342
|
+
}, "strip", z.ZodTypeAny, {
|
|
12343
|
+
total?: number;
|
|
12344
|
+
monitorCount?: number;
|
|
12345
|
+
reviewCount?: number;
|
|
12346
|
+
blockCount?: number;
|
|
12347
|
+
}, {
|
|
12348
|
+
total?: number;
|
|
12349
|
+
monitorCount?: number;
|
|
12350
|
+
reviewCount?: number;
|
|
12351
|
+
blockCount?: number;
|
|
12352
|
+
}>;
|
|
12353
|
+
}, "strip", z.ZodTypeAny, {
|
|
12354
|
+
summary?: {
|
|
12355
|
+
total?: number;
|
|
12356
|
+
monitorCount?: number;
|
|
12357
|
+
reviewCount?: number;
|
|
12358
|
+
blockCount?: number;
|
|
12359
|
+
};
|
|
12360
|
+
items?: {
|
|
12361
|
+
name?: string;
|
|
12362
|
+
id?: string;
|
|
12363
|
+
updatedAt?: string;
|
|
12364
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12365
|
+
trustScore?: number;
|
|
12366
|
+
artifactType?: "skill" | "plugin";
|
|
12367
|
+
slug?: string;
|
|
12368
|
+
href?: string;
|
|
12369
|
+
ecosystem?: string;
|
|
12370
|
+
safetyScore?: number;
|
|
12371
|
+
verified?: boolean;
|
|
12372
|
+
}[];
|
|
12373
|
+
generatedAt?: string;
|
|
12374
|
+
}, {
|
|
12375
|
+
summary?: {
|
|
12376
|
+
total?: number;
|
|
12377
|
+
monitorCount?: number;
|
|
12378
|
+
reviewCount?: number;
|
|
12379
|
+
blockCount?: number;
|
|
12380
|
+
};
|
|
12381
|
+
items?: {
|
|
12382
|
+
name?: string;
|
|
12383
|
+
id?: string;
|
|
12384
|
+
updatedAt?: string;
|
|
12385
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12386
|
+
trustScore?: number;
|
|
12387
|
+
artifactType?: "skill" | "plugin";
|
|
12388
|
+
slug?: string;
|
|
12389
|
+
href?: string;
|
|
12390
|
+
ecosystem?: string;
|
|
12391
|
+
safetyScore?: number;
|
|
12392
|
+
verified?: boolean;
|
|
12393
|
+
}[];
|
|
12394
|
+
generatedAt?: string;
|
|
12395
|
+
}>;
|
|
12396
|
+
integrations: z.ZodArray<z.ZodObject<{
|
|
12397
|
+
id: z.ZodEnum<["openclaw", "hermes"]>;
|
|
12398
|
+
name: z.ZodString;
|
|
12399
|
+
status: z.ZodEnum<["available", "planned"]>;
|
|
12400
|
+
href: z.ZodNullable<z.ZodString>;
|
|
12401
|
+
summary: z.ZodString;
|
|
12165
12402
|
}, "strip", z.ZodTypeAny, {
|
|
12166
12403
|
name?: string;
|
|
12167
|
-
|
|
12168
|
-
|
|
12404
|
+
status?: "available" | "planned";
|
|
12405
|
+
id?: "openclaw" | "hermes";
|
|
12406
|
+
summary?: string;
|
|
12407
|
+
href?: string;
|
|
12408
|
+
}, {
|
|
12409
|
+
name?: string;
|
|
12410
|
+
status?: "available" | "planned";
|
|
12411
|
+
id?: "openclaw" | "hermes";
|
|
12412
|
+
summary?: string;
|
|
12413
|
+
href?: string;
|
|
12414
|
+
}>, "many">;
|
|
12415
|
+
actionItems: z.ZodArray<z.ZodObject<{
|
|
12416
|
+
title: z.ZodString;
|
|
12417
|
+
description: z.ZodString;
|
|
12418
|
+
href: z.ZodString;
|
|
12419
|
+
}, "strip", z.ZodTypeAny, {
|
|
12420
|
+
description?: string;
|
|
12421
|
+
title?: string;
|
|
12422
|
+
href?: string;
|
|
12423
|
+
}, {
|
|
12424
|
+
description?: string;
|
|
12425
|
+
title?: string;
|
|
12426
|
+
href?: string;
|
|
12427
|
+
}>, "many">;
|
|
12428
|
+
}, "strip", z.ZodTypeAny, {
|
|
12429
|
+
balance?: {
|
|
12430
|
+
accountId?: string;
|
|
12431
|
+
availableCredits?: number;
|
|
12432
|
+
};
|
|
12433
|
+
principal?: {
|
|
12434
|
+
accountId?: string;
|
|
12435
|
+
userId?: string;
|
|
12436
|
+
email?: string;
|
|
12437
|
+
signedIn?: boolean;
|
|
12438
|
+
principalType?: "service" | "user";
|
|
12439
|
+
stripeCustomerId?: string;
|
|
12440
|
+
serviceId?: string;
|
|
12441
|
+
workspaceId?: string;
|
|
12442
|
+
serviceLabel?: string;
|
|
12443
|
+
roles?: string[];
|
|
12444
|
+
};
|
|
12445
|
+
entitlements?: {
|
|
12446
|
+
includedMonthlyCredits?: number;
|
|
12447
|
+
planId?: "free" | "pro" | "team" | "enterprise";
|
|
12448
|
+
deviceLimit?: number;
|
|
12449
|
+
retentionDays?: number;
|
|
12450
|
+
syncEnabled?: boolean;
|
|
12451
|
+
premiumFeedsEnabled?: boolean;
|
|
12452
|
+
teamPolicyEnabled?: boolean;
|
|
12453
|
+
};
|
|
12454
|
+
generatedAt?: string;
|
|
12455
|
+
trustFeed?: {
|
|
12456
|
+
summary?: {
|
|
12457
|
+
total?: number;
|
|
12458
|
+
monitorCount?: number;
|
|
12459
|
+
reviewCount?: number;
|
|
12460
|
+
blockCount?: number;
|
|
12461
|
+
};
|
|
12462
|
+
items?: {
|
|
12463
|
+
name?: string;
|
|
12464
|
+
id?: string;
|
|
12465
|
+
updatedAt?: string;
|
|
12466
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12467
|
+
trustScore?: number;
|
|
12468
|
+
artifactType?: "skill" | "plugin";
|
|
12469
|
+
slug?: string;
|
|
12470
|
+
href?: string;
|
|
12471
|
+
ecosystem?: string;
|
|
12472
|
+
safetyScore?: number;
|
|
12473
|
+
verified?: boolean;
|
|
12474
|
+
}[];
|
|
12475
|
+
generatedAt?: string;
|
|
12476
|
+
};
|
|
12477
|
+
integrations?: {
|
|
12478
|
+
name?: string;
|
|
12479
|
+
status?: "available" | "planned";
|
|
12480
|
+
id?: "openclaw" | "hermes";
|
|
12481
|
+
summary?: string;
|
|
12482
|
+
href?: string;
|
|
12483
|
+
}[];
|
|
12484
|
+
actionItems?: {
|
|
12485
|
+
description?: string;
|
|
12486
|
+
title?: string;
|
|
12487
|
+
href?: string;
|
|
12488
|
+
}[];
|
|
12489
|
+
}, {
|
|
12490
|
+
balance?: {
|
|
12491
|
+
accountId?: string;
|
|
12492
|
+
availableCredits?: number;
|
|
12493
|
+
};
|
|
12494
|
+
principal?: {
|
|
12495
|
+
accountId?: string;
|
|
12496
|
+
userId?: string;
|
|
12497
|
+
email?: string;
|
|
12498
|
+
signedIn?: boolean;
|
|
12499
|
+
principalType?: "service" | "user";
|
|
12500
|
+
stripeCustomerId?: string;
|
|
12501
|
+
serviceId?: string;
|
|
12502
|
+
workspaceId?: string;
|
|
12503
|
+
serviceLabel?: string;
|
|
12504
|
+
roles?: string[];
|
|
12505
|
+
};
|
|
12506
|
+
entitlements?: {
|
|
12507
|
+
includedMonthlyCredits?: number;
|
|
12508
|
+
planId?: "free" | "pro" | "team" | "enterprise";
|
|
12509
|
+
deviceLimit?: number;
|
|
12510
|
+
retentionDays?: number;
|
|
12511
|
+
syncEnabled?: boolean;
|
|
12512
|
+
premiumFeedsEnabled?: boolean;
|
|
12513
|
+
teamPolicyEnabled?: boolean;
|
|
12514
|
+
};
|
|
12515
|
+
generatedAt?: string;
|
|
12516
|
+
trustFeed?: {
|
|
12517
|
+
summary?: {
|
|
12518
|
+
total?: number;
|
|
12519
|
+
monitorCount?: number;
|
|
12520
|
+
reviewCount?: number;
|
|
12521
|
+
blockCount?: number;
|
|
12522
|
+
};
|
|
12523
|
+
items?: {
|
|
12524
|
+
name?: string;
|
|
12525
|
+
id?: string;
|
|
12526
|
+
updatedAt?: string;
|
|
12527
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12528
|
+
trustScore?: number;
|
|
12529
|
+
artifactType?: "skill" | "plugin";
|
|
12530
|
+
slug?: string;
|
|
12531
|
+
href?: string;
|
|
12532
|
+
ecosystem?: string;
|
|
12533
|
+
safetyScore?: number;
|
|
12534
|
+
verified?: boolean;
|
|
12535
|
+
}[];
|
|
12536
|
+
generatedAt?: string;
|
|
12537
|
+
};
|
|
12538
|
+
integrations?: {
|
|
12539
|
+
name?: string;
|
|
12540
|
+
status?: "available" | "planned";
|
|
12541
|
+
id?: "openclaw" | "hermes";
|
|
12542
|
+
summary?: string;
|
|
12543
|
+
href?: string;
|
|
12544
|
+
}[];
|
|
12545
|
+
actionItems?: {
|
|
12546
|
+
description?: string;
|
|
12547
|
+
title?: string;
|
|
12548
|
+
href?: string;
|
|
12549
|
+
}[];
|
|
12550
|
+
}>;
|
|
12551
|
+
declare const guardPolicySchema: z.ZodObject<{
|
|
12552
|
+
mode: z.ZodEnum<["observe", "prompt", "enforce"]>;
|
|
12553
|
+
defaultAction: z.ZodEnum<["allow", "warn", "block"]>;
|
|
12554
|
+
unknownPublisherAction: z.ZodEnum<["review", "block", "allow"]>;
|
|
12555
|
+
changedHashAction: z.ZodEnum<["allow", "warn", "require-reapproval", "block"]>;
|
|
12556
|
+
newNetworkDomainAction: z.ZodEnum<["allow", "warn", "block"]>;
|
|
12557
|
+
subprocessAction: z.ZodEnum<["allow", "warn", "block"]>;
|
|
12558
|
+
telemetryEnabled: z.ZodBoolean;
|
|
12559
|
+
syncEnabled: z.ZodBoolean;
|
|
12560
|
+
updatedAt: z.ZodString;
|
|
12561
|
+
}, "strip", z.ZodTypeAny, {
|
|
12562
|
+
mode?: "observe" | "prompt" | "enforce";
|
|
12563
|
+
updatedAt?: string;
|
|
12564
|
+
syncEnabled?: boolean;
|
|
12565
|
+
defaultAction?: "warn" | "block" | "allow";
|
|
12566
|
+
unknownPublisherAction?: "review" | "block" | "allow";
|
|
12567
|
+
changedHashAction?: "warn" | "block" | "allow" | "require-reapproval";
|
|
12568
|
+
newNetworkDomainAction?: "warn" | "block" | "allow";
|
|
12569
|
+
subprocessAction?: "warn" | "block" | "allow";
|
|
12570
|
+
telemetryEnabled?: boolean;
|
|
12571
|
+
}, {
|
|
12572
|
+
mode?: "observe" | "prompt" | "enforce";
|
|
12573
|
+
updatedAt?: string;
|
|
12574
|
+
syncEnabled?: boolean;
|
|
12575
|
+
defaultAction?: "warn" | "block" | "allow";
|
|
12576
|
+
unknownPublisherAction?: "review" | "block" | "allow";
|
|
12577
|
+
changedHashAction?: "warn" | "block" | "allow" | "require-reapproval";
|
|
12578
|
+
newNetworkDomainAction?: "warn" | "block" | "allow";
|
|
12579
|
+
subprocessAction?: "warn" | "block" | "allow";
|
|
12580
|
+
telemetryEnabled?: boolean;
|
|
12581
|
+
}>;
|
|
12582
|
+
declare const guardTrustMatchSchema: z.ZodObject<{
|
|
12583
|
+
artifactId: z.ZodString;
|
|
12584
|
+
artifactName: z.ZodString;
|
|
12585
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12586
|
+
artifactSlug: z.ZodString;
|
|
12587
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12588
|
+
verified: z.ZodBoolean;
|
|
12589
|
+
safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12590
|
+
trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12591
|
+
href: z.ZodOptional<z.ZodString>;
|
|
12592
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12593
|
+
}, "strip", z.ZodTypeAny, {
|
|
12594
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12595
|
+
trustScore?: number;
|
|
12596
|
+
artifactType?: "skill" | "plugin";
|
|
12597
|
+
href?: string;
|
|
12598
|
+
ecosystem?: string;
|
|
12599
|
+
safetyScore?: number;
|
|
12600
|
+
verified?: boolean;
|
|
12601
|
+
artifactId?: string;
|
|
12602
|
+
artifactName?: string;
|
|
12603
|
+
artifactSlug?: string;
|
|
12604
|
+
}, {
|
|
12605
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12606
|
+
trustScore?: number;
|
|
12607
|
+
artifactType?: "skill" | "plugin";
|
|
12608
|
+
href?: string;
|
|
12609
|
+
ecosystem?: string;
|
|
12610
|
+
safetyScore?: number;
|
|
12611
|
+
verified?: boolean;
|
|
12612
|
+
artifactId?: string;
|
|
12613
|
+
artifactName?: string;
|
|
12614
|
+
artifactSlug?: string;
|
|
12615
|
+
}>;
|
|
12616
|
+
declare const guardTrustByHashResponseSchema: z.ZodObject<{
|
|
12617
|
+
generatedAt: z.ZodString;
|
|
12618
|
+
query: z.ZodObject<{
|
|
12619
|
+
sha256: z.ZodString;
|
|
12620
|
+
}, "strip", z.ZodTypeAny, {
|
|
12621
|
+
sha256?: string;
|
|
12622
|
+
}, {
|
|
12623
|
+
sha256?: string;
|
|
12624
|
+
}>;
|
|
12625
|
+
match: z.ZodNullable<z.ZodObject<{
|
|
12626
|
+
artifactId: z.ZodString;
|
|
12627
|
+
artifactName: z.ZodString;
|
|
12628
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12629
|
+
artifactSlug: z.ZodString;
|
|
12630
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12631
|
+
verified: z.ZodBoolean;
|
|
12632
|
+
safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12633
|
+
trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12634
|
+
href: z.ZodOptional<z.ZodString>;
|
|
12635
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12636
|
+
}, "strip", z.ZodTypeAny, {
|
|
12637
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12638
|
+
trustScore?: number;
|
|
12639
|
+
artifactType?: "skill" | "plugin";
|
|
12640
|
+
href?: string;
|
|
12641
|
+
ecosystem?: string;
|
|
12642
|
+
safetyScore?: number;
|
|
12643
|
+
verified?: boolean;
|
|
12644
|
+
artifactId?: string;
|
|
12645
|
+
artifactName?: string;
|
|
12646
|
+
artifactSlug?: string;
|
|
12647
|
+
}, {
|
|
12648
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12649
|
+
trustScore?: number;
|
|
12650
|
+
artifactType?: "skill" | "plugin";
|
|
12651
|
+
href?: string;
|
|
12652
|
+
ecosystem?: string;
|
|
12653
|
+
safetyScore?: number;
|
|
12654
|
+
verified?: boolean;
|
|
12655
|
+
artifactId?: string;
|
|
12656
|
+
artifactName?: string;
|
|
12657
|
+
artifactSlug?: string;
|
|
12658
|
+
}>>;
|
|
12659
|
+
evidence: z.ZodArray<z.ZodString, "many">;
|
|
12660
|
+
}, "strip", z.ZodTypeAny, {
|
|
12661
|
+
match?: {
|
|
12662
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12663
|
+
trustScore?: number;
|
|
12664
|
+
artifactType?: "skill" | "plugin";
|
|
12665
|
+
href?: string;
|
|
12666
|
+
ecosystem?: string;
|
|
12667
|
+
safetyScore?: number;
|
|
12668
|
+
verified?: boolean;
|
|
12669
|
+
artifactId?: string;
|
|
12670
|
+
artifactName?: string;
|
|
12671
|
+
artifactSlug?: string;
|
|
12672
|
+
};
|
|
12673
|
+
query?: {
|
|
12674
|
+
sha256?: string;
|
|
12675
|
+
};
|
|
12676
|
+
generatedAt?: string;
|
|
12677
|
+
evidence?: string[];
|
|
12678
|
+
}, {
|
|
12679
|
+
match?: {
|
|
12680
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12681
|
+
trustScore?: number;
|
|
12682
|
+
artifactType?: "skill" | "plugin";
|
|
12683
|
+
href?: string;
|
|
12684
|
+
ecosystem?: string;
|
|
12685
|
+
safetyScore?: number;
|
|
12686
|
+
verified?: boolean;
|
|
12687
|
+
artifactId?: string;
|
|
12688
|
+
artifactName?: string;
|
|
12689
|
+
artifactSlug?: string;
|
|
12690
|
+
};
|
|
12691
|
+
query?: {
|
|
12692
|
+
sha256?: string;
|
|
12693
|
+
};
|
|
12694
|
+
generatedAt?: string;
|
|
12695
|
+
evidence?: string[];
|
|
12696
|
+
}>;
|
|
12697
|
+
declare const guardTrustResolveResponseSchema: z.ZodObject<{
|
|
12698
|
+
generatedAt: z.ZodString;
|
|
12699
|
+
query: z.ZodObject<{
|
|
12700
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12701
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12702
|
+
version: z.ZodOptional<z.ZodString>;
|
|
12703
|
+
}, "strip", z.ZodTypeAny, {
|
|
12704
|
+
name?: string;
|
|
12705
|
+
version?: string;
|
|
12706
|
+
ecosystem?: string;
|
|
12707
|
+
}, {
|
|
12708
|
+
name?: string;
|
|
12709
|
+
version?: string;
|
|
12710
|
+
ecosystem?: string;
|
|
12711
|
+
}>;
|
|
12712
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12713
|
+
artifactId: z.ZodString;
|
|
12714
|
+
artifactName: z.ZodString;
|
|
12715
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12716
|
+
artifactSlug: z.ZodString;
|
|
12717
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12718
|
+
verified: z.ZodBoolean;
|
|
12719
|
+
safetyScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12720
|
+
trustScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12721
|
+
href: z.ZodOptional<z.ZodString>;
|
|
12722
|
+
ecosystem: z.ZodOptional<z.ZodString>;
|
|
12723
|
+
}, "strip", z.ZodTypeAny, {
|
|
12724
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12725
|
+
trustScore?: number;
|
|
12726
|
+
artifactType?: "skill" | "plugin";
|
|
12727
|
+
href?: string;
|
|
12728
|
+
ecosystem?: string;
|
|
12729
|
+
safetyScore?: number;
|
|
12730
|
+
verified?: boolean;
|
|
12731
|
+
artifactId?: string;
|
|
12732
|
+
artifactName?: string;
|
|
12733
|
+
artifactSlug?: string;
|
|
12734
|
+
}, {
|
|
12735
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12736
|
+
trustScore?: number;
|
|
12737
|
+
artifactType?: "skill" | "plugin";
|
|
12738
|
+
href?: string;
|
|
12739
|
+
ecosystem?: string;
|
|
12740
|
+
safetyScore?: number;
|
|
12741
|
+
verified?: boolean;
|
|
12742
|
+
artifactId?: string;
|
|
12743
|
+
artifactName?: string;
|
|
12744
|
+
artifactSlug?: string;
|
|
12745
|
+
}>, "many">;
|
|
12746
|
+
}, "strip", z.ZodTypeAny, {
|
|
12747
|
+
items?: {
|
|
12748
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12749
|
+
trustScore?: number;
|
|
12750
|
+
artifactType?: "skill" | "plugin";
|
|
12751
|
+
href?: string;
|
|
12752
|
+
ecosystem?: string;
|
|
12753
|
+
safetyScore?: number;
|
|
12754
|
+
verified?: boolean;
|
|
12755
|
+
artifactId?: string;
|
|
12756
|
+
artifactName?: string;
|
|
12757
|
+
artifactSlug?: string;
|
|
12758
|
+
}[];
|
|
12759
|
+
query?: {
|
|
12760
|
+
name?: string;
|
|
12761
|
+
version?: string;
|
|
12762
|
+
ecosystem?: string;
|
|
12763
|
+
};
|
|
12764
|
+
generatedAt?: string;
|
|
12765
|
+
}, {
|
|
12766
|
+
items?: {
|
|
12767
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12768
|
+
trustScore?: number;
|
|
12769
|
+
artifactType?: "skill" | "plugin";
|
|
12770
|
+
href?: string;
|
|
12771
|
+
ecosystem?: string;
|
|
12772
|
+
safetyScore?: number;
|
|
12773
|
+
verified?: boolean;
|
|
12774
|
+
artifactId?: string;
|
|
12775
|
+
artifactName?: string;
|
|
12776
|
+
artifactSlug?: string;
|
|
12777
|
+
}[];
|
|
12778
|
+
query?: {
|
|
12779
|
+
name?: string;
|
|
12780
|
+
version?: string;
|
|
12781
|
+
ecosystem?: string;
|
|
12782
|
+
};
|
|
12783
|
+
generatedAt?: string;
|
|
12784
|
+
}>;
|
|
12785
|
+
declare const guardRevocationResponseSchema: z.ZodObject<{
|
|
12786
|
+
generatedAt: z.ZodString;
|
|
12787
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12788
|
+
id: z.ZodString;
|
|
12789
|
+
artifactId: z.ZodString;
|
|
12790
|
+
artifactName: z.ZodString;
|
|
12791
|
+
reason: z.ZodString;
|
|
12792
|
+
severity: z.ZodEnum<["low", "medium", "high"]>;
|
|
12793
|
+
publishedAt: z.ZodString;
|
|
12794
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
12795
|
+
remediation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12796
|
+
scope: z.ZodOptional<z.ZodEnum<["artifact", "publisher", "domain", "workspace", "ecosystem"]>>;
|
|
12797
|
+
source: z.ZodOptional<z.ZodString>;
|
|
12798
|
+
firstSeenAt: z.ZodOptional<z.ZodString>;
|
|
12799
|
+
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
12800
|
+
}, "strip", z.ZodTypeAny, {
|
|
12801
|
+
reason?: string;
|
|
12802
|
+
id?: string;
|
|
12803
|
+
confidence?: number;
|
|
12804
|
+
artifactId?: string;
|
|
12805
|
+
artifactName?: string;
|
|
12806
|
+
severity?: "low" | "medium" | "high";
|
|
12807
|
+
publishedAt?: string;
|
|
12808
|
+
remediation?: string;
|
|
12809
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
12810
|
+
source?: string;
|
|
12811
|
+
firstSeenAt?: string;
|
|
12812
|
+
lastUpdatedAt?: string;
|
|
12813
|
+
}, {
|
|
12814
|
+
reason?: string;
|
|
12815
|
+
id?: string;
|
|
12816
|
+
confidence?: number;
|
|
12817
|
+
artifactId?: string;
|
|
12818
|
+
artifactName?: string;
|
|
12819
|
+
severity?: "low" | "medium" | "high";
|
|
12820
|
+
publishedAt?: string;
|
|
12821
|
+
remediation?: string;
|
|
12822
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
12823
|
+
source?: string;
|
|
12824
|
+
firstSeenAt?: string;
|
|
12825
|
+
lastUpdatedAt?: string;
|
|
12826
|
+
}>, "many">;
|
|
12827
|
+
}, "strip", z.ZodTypeAny, {
|
|
12828
|
+
items?: {
|
|
12829
|
+
reason?: string;
|
|
12830
|
+
id?: string;
|
|
12831
|
+
confidence?: number;
|
|
12832
|
+
artifactId?: string;
|
|
12833
|
+
artifactName?: string;
|
|
12834
|
+
severity?: "low" | "medium" | "high";
|
|
12835
|
+
publishedAt?: string;
|
|
12836
|
+
remediation?: string;
|
|
12837
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
12838
|
+
source?: string;
|
|
12839
|
+
firstSeenAt?: string;
|
|
12840
|
+
lastUpdatedAt?: string;
|
|
12841
|
+
}[];
|
|
12842
|
+
generatedAt?: string;
|
|
12843
|
+
}, {
|
|
12844
|
+
items?: {
|
|
12845
|
+
reason?: string;
|
|
12846
|
+
id?: string;
|
|
12847
|
+
confidence?: number;
|
|
12848
|
+
artifactId?: string;
|
|
12849
|
+
artifactName?: string;
|
|
12850
|
+
severity?: "low" | "medium" | "high";
|
|
12851
|
+
publishedAt?: string;
|
|
12852
|
+
remediation?: string;
|
|
12853
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
12854
|
+
source?: string;
|
|
12855
|
+
firstSeenAt?: string;
|
|
12856
|
+
lastUpdatedAt?: string;
|
|
12857
|
+
}[];
|
|
12858
|
+
generatedAt?: string;
|
|
12859
|
+
}>;
|
|
12860
|
+
declare const guardReceiptSchema: z.ZodObject<{
|
|
12861
|
+
receiptId: z.ZodString;
|
|
12862
|
+
capturedAt: z.ZodString;
|
|
12863
|
+
harness: z.ZodString;
|
|
12864
|
+
deviceId: z.ZodString;
|
|
12865
|
+
deviceName: z.ZodString;
|
|
12866
|
+
artifactId: z.ZodString;
|
|
12867
|
+
artifactName: z.ZodString;
|
|
12868
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12869
|
+
artifactSlug: z.ZodString;
|
|
12870
|
+
artifactHash: z.ZodString;
|
|
12871
|
+
policyDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
12872
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12873
|
+
changedSinceLastApproval: z.ZodBoolean;
|
|
12874
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
12875
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
12876
|
+
summary: z.ZodString;
|
|
12877
|
+
}, "strip", z.ZodTypeAny, {
|
|
12878
|
+
capabilities?: string[];
|
|
12879
|
+
summary?: string;
|
|
12880
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12881
|
+
artifactType?: "skill" | "plugin";
|
|
12882
|
+
artifactId?: string;
|
|
12883
|
+
artifactName?: string;
|
|
12884
|
+
artifactSlug?: string;
|
|
12885
|
+
publisher?: string;
|
|
12886
|
+
receiptId?: string;
|
|
12887
|
+
capturedAt?: string;
|
|
12888
|
+
harness?: string;
|
|
12889
|
+
deviceId?: string;
|
|
12890
|
+
deviceName?: string;
|
|
12891
|
+
artifactHash?: string;
|
|
12892
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
12893
|
+
changedSinceLastApproval?: boolean;
|
|
12894
|
+
}, {
|
|
12895
|
+
capabilities?: string[];
|
|
12896
|
+
summary?: string;
|
|
12897
|
+
recommendation?: "monitor" | "review" | "block";
|
|
12898
|
+
artifactType?: "skill" | "plugin";
|
|
12899
|
+
artifactId?: string;
|
|
12900
|
+
artifactName?: string;
|
|
12901
|
+
artifactSlug?: string;
|
|
12902
|
+
publisher?: string;
|
|
12903
|
+
receiptId?: string;
|
|
12904
|
+
capturedAt?: string;
|
|
12905
|
+
harness?: string;
|
|
12906
|
+
deviceId?: string;
|
|
12907
|
+
deviceName?: string;
|
|
12908
|
+
artifactHash?: string;
|
|
12909
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
12910
|
+
changedSinceLastApproval?: boolean;
|
|
12911
|
+
}>;
|
|
12912
|
+
declare const guardHistoryArtifactSchema: z.ZodObject<{
|
|
12913
|
+
artifactId: z.ZodString;
|
|
12914
|
+
artifactName: z.ZodString;
|
|
12915
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12916
|
+
artifactSlug: z.ZodString;
|
|
12917
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
12918
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
12919
|
+
eventCount: z.ZodNumber;
|
|
12920
|
+
firstSeenAt: z.ZodString;
|
|
12921
|
+
lastSeenAt: z.ZodString;
|
|
12922
|
+
latestDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
12923
|
+
latestRecommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12924
|
+
}, "strip", z.ZodTypeAny, {
|
|
12925
|
+
artifactType?: "skill" | "plugin";
|
|
12926
|
+
artifactId?: string;
|
|
12927
|
+
artifactName?: string;
|
|
12928
|
+
artifactSlug?: string;
|
|
12929
|
+
publisher?: string;
|
|
12930
|
+
firstSeenAt?: string;
|
|
12931
|
+
harnesses?: string[];
|
|
12932
|
+
eventCount?: number;
|
|
12933
|
+
lastSeenAt?: string;
|
|
12934
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
12935
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
12936
|
+
}, {
|
|
12937
|
+
artifactType?: "skill" | "plugin";
|
|
12938
|
+
artifactId?: string;
|
|
12939
|
+
artifactName?: string;
|
|
12940
|
+
artifactSlug?: string;
|
|
12941
|
+
publisher?: string;
|
|
12942
|
+
firstSeenAt?: string;
|
|
12943
|
+
harnesses?: string[];
|
|
12944
|
+
eventCount?: number;
|
|
12945
|
+
lastSeenAt?: string;
|
|
12946
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
12947
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
12948
|
+
}>;
|
|
12949
|
+
declare const guardReceiptHistoryResponseSchema: z.ZodObject<{
|
|
12950
|
+
generatedAt: z.ZodString;
|
|
12951
|
+
artifacts: z.ZodArray<z.ZodObject<{
|
|
12952
|
+
artifactId: z.ZodString;
|
|
12953
|
+
artifactName: z.ZodString;
|
|
12954
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
12955
|
+
artifactSlug: z.ZodString;
|
|
12956
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
12957
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
12958
|
+
eventCount: z.ZodNumber;
|
|
12959
|
+
firstSeenAt: z.ZodString;
|
|
12960
|
+
lastSeenAt: z.ZodString;
|
|
12961
|
+
latestDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
12962
|
+
latestRecommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12963
|
+
}, "strip", z.ZodTypeAny, {
|
|
12964
|
+
artifactType?: "skill" | "plugin";
|
|
12965
|
+
artifactId?: string;
|
|
12966
|
+
artifactName?: string;
|
|
12967
|
+
artifactSlug?: string;
|
|
12968
|
+
publisher?: string;
|
|
12969
|
+
firstSeenAt?: string;
|
|
12970
|
+
harnesses?: string[];
|
|
12971
|
+
eventCount?: number;
|
|
12972
|
+
lastSeenAt?: string;
|
|
12973
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
12974
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
12975
|
+
}, {
|
|
12976
|
+
artifactType?: "skill" | "plugin";
|
|
12977
|
+
artifactId?: string;
|
|
12978
|
+
artifactName?: string;
|
|
12979
|
+
artifactSlug?: string;
|
|
12980
|
+
publisher?: string;
|
|
12981
|
+
firstSeenAt?: string;
|
|
12982
|
+
harnesses?: string[];
|
|
12983
|
+
eventCount?: number;
|
|
12984
|
+
lastSeenAt?: string;
|
|
12985
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
12986
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
12987
|
+
}>, "many">;
|
|
12988
|
+
}, "strip", z.ZodTypeAny, {
|
|
12989
|
+
artifacts?: {
|
|
12990
|
+
artifactType?: "skill" | "plugin";
|
|
12991
|
+
artifactId?: string;
|
|
12992
|
+
artifactName?: string;
|
|
12993
|
+
artifactSlug?: string;
|
|
12994
|
+
publisher?: string;
|
|
12995
|
+
firstSeenAt?: string;
|
|
12996
|
+
harnesses?: string[];
|
|
12997
|
+
eventCount?: number;
|
|
12998
|
+
lastSeenAt?: string;
|
|
12999
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13000
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13001
|
+
}[];
|
|
13002
|
+
generatedAt?: string;
|
|
13003
|
+
}, {
|
|
13004
|
+
artifacts?: {
|
|
13005
|
+
artifactType?: "skill" | "plugin";
|
|
13006
|
+
artifactId?: string;
|
|
13007
|
+
artifactName?: string;
|
|
13008
|
+
artifactSlug?: string;
|
|
13009
|
+
publisher?: string;
|
|
13010
|
+
firstSeenAt?: string;
|
|
13011
|
+
harnesses?: string[];
|
|
13012
|
+
eventCount?: number;
|
|
13013
|
+
lastSeenAt?: string;
|
|
13014
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13015
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13016
|
+
}[];
|
|
13017
|
+
generatedAt?: string;
|
|
13018
|
+
}>;
|
|
13019
|
+
declare const guardInventoryArtifactSchema: z.ZodObject<{
|
|
13020
|
+
artifactId: z.ZodString;
|
|
13021
|
+
artifactName: z.ZodString;
|
|
13022
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13023
|
+
artifactSlug: z.ZodString;
|
|
13024
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
13025
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
13026
|
+
devices: z.ZodArray<z.ZodString, "many">;
|
|
13027
|
+
eventCount: z.ZodNumber;
|
|
13028
|
+
firstSeenAt: z.ZodString;
|
|
13029
|
+
lastSeenAt: z.ZodString;
|
|
13030
|
+
latestDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
13031
|
+
latestRecommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
13032
|
+
latestHash: z.ZodString;
|
|
13033
|
+
latestSummary: z.ZodString;
|
|
13034
|
+
}, "strip", z.ZodTypeAny, {
|
|
13035
|
+
artifactType?: "skill" | "plugin";
|
|
13036
|
+
artifactId?: string;
|
|
13037
|
+
artifactName?: string;
|
|
13038
|
+
artifactSlug?: string;
|
|
13039
|
+
publisher?: string;
|
|
13040
|
+
firstSeenAt?: string;
|
|
13041
|
+
harnesses?: string[];
|
|
13042
|
+
eventCount?: number;
|
|
13043
|
+
lastSeenAt?: string;
|
|
13044
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13045
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13046
|
+
devices?: string[];
|
|
13047
|
+
latestHash?: string;
|
|
13048
|
+
latestSummary?: string;
|
|
13049
|
+
}, {
|
|
13050
|
+
artifactType?: "skill" | "plugin";
|
|
13051
|
+
artifactId?: string;
|
|
13052
|
+
artifactName?: string;
|
|
13053
|
+
artifactSlug?: string;
|
|
13054
|
+
publisher?: string;
|
|
13055
|
+
firstSeenAt?: string;
|
|
13056
|
+
harnesses?: string[];
|
|
13057
|
+
eventCount?: number;
|
|
13058
|
+
lastSeenAt?: string;
|
|
13059
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13060
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13061
|
+
devices?: string[];
|
|
13062
|
+
latestHash?: string;
|
|
13063
|
+
latestSummary?: string;
|
|
13064
|
+
}>;
|
|
13065
|
+
declare const guardInventoryDiffEntrySchema: z.ZodObject<{
|
|
13066
|
+
artifactId: z.ZodString;
|
|
13067
|
+
artifactName: z.ZodString;
|
|
13068
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13069
|
+
changeType: z.ZodEnum<["new", "changed", "removed"]>;
|
|
13070
|
+
previousHash: z.ZodNullable<z.ZodString>;
|
|
13071
|
+
currentHash: z.ZodNullable<z.ZodString>;
|
|
13072
|
+
}, "strip", z.ZodTypeAny, {
|
|
13073
|
+
artifactType?: "skill" | "plugin";
|
|
13074
|
+
artifactId?: string;
|
|
13075
|
+
artifactName?: string;
|
|
13076
|
+
changeType?: "new" | "changed" | "removed";
|
|
13077
|
+
previousHash?: string;
|
|
13078
|
+
currentHash?: string;
|
|
13079
|
+
}, {
|
|
13080
|
+
artifactType?: "skill" | "plugin";
|
|
13081
|
+
artifactId?: string;
|
|
13082
|
+
artifactName?: string;
|
|
13083
|
+
changeType?: "new" | "changed" | "removed";
|
|
13084
|
+
previousHash?: string;
|
|
13085
|
+
currentHash?: string;
|
|
13086
|
+
}>;
|
|
13087
|
+
declare const guardInventoryDiffResponseSchema: z.ZodObject<{
|
|
13088
|
+
generatedAt: z.ZodString;
|
|
13089
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13090
|
+
artifactId: z.ZodString;
|
|
13091
|
+
artifactName: z.ZodString;
|
|
13092
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13093
|
+
changeType: z.ZodEnum<["new", "changed", "removed"]>;
|
|
13094
|
+
previousHash: z.ZodNullable<z.ZodString>;
|
|
13095
|
+
currentHash: z.ZodNullable<z.ZodString>;
|
|
13096
|
+
}, "strip", z.ZodTypeAny, {
|
|
13097
|
+
artifactType?: "skill" | "plugin";
|
|
13098
|
+
artifactId?: string;
|
|
13099
|
+
artifactName?: string;
|
|
13100
|
+
changeType?: "new" | "changed" | "removed";
|
|
13101
|
+
previousHash?: string;
|
|
13102
|
+
currentHash?: string;
|
|
13103
|
+
}, {
|
|
13104
|
+
artifactType?: "skill" | "plugin";
|
|
13105
|
+
artifactId?: string;
|
|
13106
|
+
artifactName?: string;
|
|
13107
|
+
changeType?: "new" | "changed" | "removed";
|
|
13108
|
+
previousHash?: string;
|
|
13109
|
+
currentHash?: string;
|
|
13110
|
+
}>, "many">;
|
|
13111
|
+
}, "strip", z.ZodTypeAny, {
|
|
13112
|
+
items?: {
|
|
13113
|
+
artifactType?: "skill" | "plugin";
|
|
13114
|
+
artifactId?: string;
|
|
13115
|
+
artifactName?: string;
|
|
13116
|
+
changeType?: "new" | "changed" | "removed";
|
|
13117
|
+
previousHash?: string;
|
|
13118
|
+
currentHash?: string;
|
|
13119
|
+
}[];
|
|
13120
|
+
generatedAt?: string;
|
|
13121
|
+
}, {
|
|
13122
|
+
items?: {
|
|
13123
|
+
artifactType?: "skill" | "plugin";
|
|
13124
|
+
artifactId?: string;
|
|
13125
|
+
artifactName?: string;
|
|
13126
|
+
changeType?: "new" | "changed" | "removed";
|
|
13127
|
+
previousHash?: string;
|
|
13128
|
+
currentHash?: string;
|
|
13129
|
+
}[];
|
|
13130
|
+
generatedAt?: string;
|
|
13131
|
+
}>;
|
|
13132
|
+
declare const guardReceiptSyncResponseSchema: z.ZodObject<{
|
|
13133
|
+
syncedAt: z.ZodString;
|
|
13134
|
+
receiptsStored: z.ZodNumber;
|
|
13135
|
+
inventoryStored: z.ZodOptional<z.ZodNumber>;
|
|
13136
|
+
inventoryDiff: z.ZodOptional<z.ZodObject<{
|
|
13137
|
+
generatedAt: z.ZodString;
|
|
13138
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13139
|
+
artifactId: z.ZodString;
|
|
13140
|
+
artifactName: z.ZodString;
|
|
13141
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13142
|
+
changeType: z.ZodEnum<["new", "changed", "removed"]>;
|
|
13143
|
+
previousHash: z.ZodNullable<z.ZodString>;
|
|
13144
|
+
currentHash: z.ZodNullable<z.ZodString>;
|
|
13145
|
+
}, "strip", z.ZodTypeAny, {
|
|
13146
|
+
artifactType?: "skill" | "plugin";
|
|
13147
|
+
artifactId?: string;
|
|
13148
|
+
artifactName?: string;
|
|
13149
|
+
changeType?: "new" | "changed" | "removed";
|
|
13150
|
+
previousHash?: string;
|
|
13151
|
+
currentHash?: string;
|
|
13152
|
+
}, {
|
|
13153
|
+
artifactType?: "skill" | "plugin";
|
|
13154
|
+
artifactId?: string;
|
|
13155
|
+
artifactName?: string;
|
|
13156
|
+
changeType?: "new" | "changed" | "removed";
|
|
13157
|
+
previousHash?: string;
|
|
13158
|
+
currentHash?: string;
|
|
13159
|
+
}>, "many">;
|
|
13160
|
+
}, "strip", z.ZodTypeAny, {
|
|
13161
|
+
items?: {
|
|
13162
|
+
artifactType?: "skill" | "plugin";
|
|
13163
|
+
artifactId?: string;
|
|
13164
|
+
artifactName?: string;
|
|
13165
|
+
changeType?: "new" | "changed" | "removed";
|
|
13166
|
+
previousHash?: string;
|
|
13167
|
+
currentHash?: string;
|
|
13168
|
+
}[];
|
|
13169
|
+
generatedAt?: string;
|
|
13170
|
+
}, {
|
|
13171
|
+
items?: {
|
|
13172
|
+
artifactType?: "skill" | "plugin";
|
|
13173
|
+
artifactId?: string;
|
|
13174
|
+
artifactName?: string;
|
|
13175
|
+
changeType?: "new" | "changed" | "removed";
|
|
13176
|
+
previousHash?: string;
|
|
13177
|
+
currentHash?: string;
|
|
13178
|
+
}[];
|
|
13179
|
+
generatedAt?: string;
|
|
13180
|
+
}>>;
|
|
13181
|
+
advisories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13182
|
+
id: z.ZodString;
|
|
13183
|
+
artifactId: z.ZodString;
|
|
13184
|
+
artifactName: z.ZodString;
|
|
13185
|
+
reason: z.ZodString;
|
|
13186
|
+
severity: z.ZodEnum<["low", "medium", "high"]>;
|
|
13187
|
+
publishedAt: z.ZodString;
|
|
13188
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
13189
|
+
remediation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13190
|
+
scope: z.ZodOptional<z.ZodEnum<["artifact", "publisher", "domain", "workspace", "ecosystem"]>>;
|
|
13191
|
+
source: z.ZodOptional<z.ZodString>;
|
|
13192
|
+
firstSeenAt: z.ZodOptional<z.ZodString>;
|
|
13193
|
+
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
13194
|
+
}, "strip", z.ZodTypeAny, {
|
|
13195
|
+
reason?: string;
|
|
13196
|
+
id?: string;
|
|
13197
|
+
confidence?: number;
|
|
13198
|
+
artifactId?: string;
|
|
13199
|
+
artifactName?: string;
|
|
13200
|
+
severity?: "low" | "medium" | "high";
|
|
13201
|
+
publishedAt?: string;
|
|
13202
|
+
remediation?: string;
|
|
13203
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
13204
|
+
source?: string;
|
|
13205
|
+
firstSeenAt?: string;
|
|
13206
|
+
lastUpdatedAt?: string;
|
|
13207
|
+
}, {
|
|
13208
|
+
reason?: string;
|
|
13209
|
+
id?: string;
|
|
13210
|
+
confidence?: number;
|
|
13211
|
+
artifactId?: string;
|
|
13212
|
+
artifactName?: string;
|
|
13213
|
+
severity?: "low" | "medium" | "high";
|
|
13214
|
+
publishedAt?: string;
|
|
13215
|
+
remediation?: string;
|
|
13216
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
13217
|
+
source?: string;
|
|
13218
|
+
firstSeenAt?: string;
|
|
13219
|
+
lastUpdatedAt?: string;
|
|
13220
|
+
}>, "many">>;
|
|
13221
|
+
policy: z.ZodOptional<z.ZodObject<{
|
|
13222
|
+
mode: z.ZodEnum<["observe", "prompt", "enforce"]>;
|
|
13223
|
+
defaultAction: z.ZodEnum<["allow", "warn", "block"]>;
|
|
13224
|
+
unknownPublisherAction: z.ZodEnum<["review", "block", "allow"]>;
|
|
13225
|
+
changedHashAction: z.ZodEnum<["allow", "warn", "require-reapproval", "block"]>;
|
|
13226
|
+
newNetworkDomainAction: z.ZodEnum<["allow", "warn", "block"]>;
|
|
13227
|
+
subprocessAction: z.ZodEnum<["allow", "warn", "block"]>;
|
|
13228
|
+
telemetryEnabled: z.ZodBoolean;
|
|
13229
|
+
syncEnabled: z.ZodBoolean;
|
|
13230
|
+
updatedAt: z.ZodString;
|
|
13231
|
+
}, "strip", z.ZodTypeAny, {
|
|
13232
|
+
mode?: "observe" | "prompt" | "enforce";
|
|
13233
|
+
updatedAt?: string;
|
|
13234
|
+
syncEnabled?: boolean;
|
|
13235
|
+
defaultAction?: "warn" | "block" | "allow";
|
|
13236
|
+
unknownPublisherAction?: "review" | "block" | "allow";
|
|
13237
|
+
changedHashAction?: "warn" | "block" | "allow" | "require-reapproval";
|
|
13238
|
+
newNetworkDomainAction?: "warn" | "block" | "allow";
|
|
13239
|
+
subprocessAction?: "warn" | "block" | "allow";
|
|
13240
|
+
telemetryEnabled?: boolean;
|
|
13241
|
+
}, {
|
|
13242
|
+
mode?: "observe" | "prompt" | "enforce";
|
|
13243
|
+
updatedAt?: string;
|
|
13244
|
+
syncEnabled?: boolean;
|
|
13245
|
+
defaultAction?: "warn" | "block" | "allow";
|
|
13246
|
+
unknownPublisherAction?: "review" | "block" | "allow";
|
|
13247
|
+
changedHashAction?: "warn" | "block" | "allow" | "require-reapproval";
|
|
13248
|
+
newNetworkDomainAction?: "warn" | "block" | "allow";
|
|
13249
|
+
subprocessAction?: "warn" | "block" | "allow";
|
|
13250
|
+
telemetryEnabled?: boolean;
|
|
13251
|
+
}>>;
|
|
13252
|
+
alertPreferences: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
13253
|
+
emailEnabled: z.ZodBoolean;
|
|
13254
|
+
digestMode: z.ZodEnum<["immediate", "daily", "weekly"]>;
|
|
13255
|
+
watchlistEnabled: z.ZodBoolean;
|
|
13256
|
+
advisoriesEnabled: z.ZodBoolean;
|
|
13257
|
+
repeatedWarningsEnabled: z.ZodBoolean;
|
|
13258
|
+
teamAlertsEnabled: z.ZodBoolean;
|
|
13259
|
+
updatedAt: z.ZodString;
|
|
13260
|
+
}, "strip", z.ZodTypeAny, {
|
|
13261
|
+
updatedAt?: string;
|
|
13262
|
+
emailEnabled?: boolean;
|
|
13263
|
+
digestMode?: "immediate" | "daily" | "weekly";
|
|
13264
|
+
watchlistEnabled?: boolean;
|
|
13265
|
+
advisoriesEnabled?: boolean;
|
|
13266
|
+
repeatedWarningsEnabled?: boolean;
|
|
13267
|
+
teamAlertsEnabled?: boolean;
|
|
13268
|
+
}, {
|
|
13269
|
+
updatedAt?: string;
|
|
13270
|
+
emailEnabled?: boolean;
|
|
13271
|
+
digestMode?: "immediate" | "daily" | "weekly";
|
|
13272
|
+
watchlistEnabled?: boolean;
|
|
13273
|
+
advisoriesEnabled?: boolean;
|
|
13274
|
+
repeatedWarningsEnabled?: boolean;
|
|
13275
|
+
teamAlertsEnabled?: boolean;
|
|
13276
|
+
}>>>;
|
|
13277
|
+
exceptions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
13278
|
+
exceptionId: z.ZodString;
|
|
13279
|
+
scope: z.ZodEnum<["artifact", "publisher", "harness", "global"]>;
|
|
13280
|
+
harness: z.ZodNullable<z.ZodString>;
|
|
13281
|
+
artifactId: z.ZodNullable<z.ZodString>;
|
|
13282
|
+
publisher: z.ZodNullable<z.ZodString>;
|
|
13283
|
+
reason: z.ZodString;
|
|
13284
|
+
owner: z.ZodString;
|
|
13285
|
+
source: z.ZodEnum<["manual", "team-policy"]>;
|
|
13286
|
+
expiresAt: z.ZodString;
|
|
13287
|
+
createdAt: z.ZodString;
|
|
13288
|
+
updatedAt: z.ZodString;
|
|
13289
|
+
}, "strip", z.ZodTypeAny, {
|
|
13290
|
+
reason?: string;
|
|
13291
|
+
owner?: string;
|
|
13292
|
+
createdAt?: string;
|
|
13293
|
+
updatedAt?: string;
|
|
13294
|
+
expiresAt?: string;
|
|
13295
|
+
artifactId?: string;
|
|
13296
|
+
publisher?: string;
|
|
13297
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
13298
|
+
source?: "manual" | "team-policy";
|
|
13299
|
+
harness?: string;
|
|
13300
|
+
exceptionId?: string;
|
|
13301
|
+
}, {
|
|
13302
|
+
reason?: string;
|
|
13303
|
+
owner?: string;
|
|
13304
|
+
createdAt?: string;
|
|
13305
|
+
updatedAt?: string;
|
|
13306
|
+
expiresAt?: string;
|
|
13307
|
+
artifactId?: string;
|
|
13308
|
+
publisher?: string;
|
|
13309
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
13310
|
+
source?: "manual" | "team-policy";
|
|
13311
|
+
harness?: string;
|
|
13312
|
+
exceptionId?: string;
|
|
13313
|
+
}>>, "many">>;
|
|
13314
|
+
teamPolicyPack: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
13315
|
+
name: z.ZodString;
|
|
13316
|
+
sharedHarnessDefaults: z.ZodRecord<z.ZodString, z.ZodEnum<["observe", "prompt", "enforce"]>>;
|
|
13317
|
+
allowedPublishers: z.ZodArray<z.ZodString, "many">;
|
|
13318
|
+
blockedPublishers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13319
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13320
|
+
blockedArtifacts: z.ZodArray<z.ZodString, "many">;
|
|
13321
|
+
alertChannel: z.ZodEnum<["email", "slack", "teams", "webhook"]>;
|
|
13322
|
+
updatedAt: z.ZodString;
|
|
13323
|
+
auditTrail: z.ZodArray<z.ZodObject<{
|
|
13324
|
+
changedAt: z.ZodString;
|
|
13325
|
+
actor: z.ZodString;
|
|
13326
|
+
change: z.ZodEnum<["created", "updated"]>;
|
|
13327
|
+
summary: z.ZodString;
|
|
13328
|
+
}, "strip", z.ZodTypeAny, {
|
|
13329
|
+
summary?: string;
|
|
13330
|
+
changedAt?: string;
|
|
13331
|
+
actor?: string;
|
|
13332
|
+
change?: "created" | "updated";
|
|
13333
|
+
}, {
|
|
13334
|
+
summary?: string;
|
|
13335
|
+
changedAt?: string;
|
|
13336
|
+
actor?: string;
|
|
13337
|
+
change?: "created" | "updated";
|
|
13338
|
+
}>, "many">;
|
|
13339
|
+
}, "strip", z.ZodTypeAny, {
|
|
13340
|
+
name?: string;
|
|
13341
|
+
updatedAt?: string;
|
|
13342
|
+
sharedHarnessDefaults?: Record<string, "observe" | "prompt" | "enforce">;
|
|
13343
|
+
allowedPublishers?: string[];
|
|
13344
|
+
blockedPublishers?: string[];
|
|
13345
|
+
blockedDomains?: string[];
|
|
13346
|
+
blockedArtifacts?: string[];
|
|
13347
|
+
alertChannel?: "email" | "slack" | "teams" | "webhook";
|
|
13348
|
+
auditTrail?: {
|
|
13349
|
+
summary?: string;
|
|
13350
|
+
changedAt?: string;
|
|
13351
|
+
actor?: string;
|
|
13352
|
+
change?: "created" | "updated";
|
|
13353
|
+
}[];
|
|
13354
|
+
}, {
|
|
13355
|
+
name?: string;
|
|
13356
|
+
updatedAt?: string;
|
|
13357
|
+
sharedHarnessDefaults?: Record<string, "observe" | "prompt" | "enforce">;
|
|
13358
|
+
allowedPublishers?: string[];
|
|
13359
|
+
blockedPublishers?: string[];
|
|
13360
|
+
blockedDomains?: string[];
|
|
13361
|
+
blockedArtifacts?: string[];
|
|
13362
|
+
alertChannel?: "email" | "slack" | "teams" | "webhook";
|
|
13363
|
+
auditTrail?: {
|
|
13364
|
+
summary?: string;
|
|
13365
|
+
changedAt?: string;
|
|
13366
|
+
actor?: string;
|
|
13367
|
+
change?: "created" | "updated";
|
|
13368
|
+
}[];
|
|
13369
|
+
}>>>;
|
|
13370
|
+
}, "strip", z.ZodTypeAny, {
|
|
13371
|
+
syncedAt?: string;
|
|
13372
|
+
receiptsStored?: number;
|
|
13373
|
+
inventoryStored?: number;
|
|
13374
|
+
inventoryDiff?: {
|
|
13375
|
+
items?: {
|
|
13376
|
+
artifactType?: "skill" | "plugin";
|
|
13377
|
+
artifactId?: string;
|
|
13378
|
+
artifactName?: string;
|
|
13379
|
+
changeType?: "new" | "changed" | "removed";
|
|
13380
|
+
previousHash?: string;
|
|
13381
|
+
currentHash?: string;
|
|
13382
|
+
}[];
|
|
13383
|
+
generatedAt?: string;
|
|
13384
|
+
};
|
|
13385
|
+
advisories?: {
|
|
13386
|
+
reason?: string;
|
|
13387
|
+
id?: string;
|
|
13388
|
+
confidence?: number;
|
|
13389
|
+
artifactId?: string;
|
|
13390
|
+
artifactName?: string;
|
|
13391
|
+
severity?: "low" | "medium" | "high";
|
|
13392
|
+
publishedAt?: string;
|
|
13393
|
+
remediation?: string;
|
|
13394
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
13395
|
+
source?: string;
|
|
13396
|
+
firstSeenAt?: string;
|
|
13397
|
+
lastUpdatedAt?: string;
|
|
13398
|
+
}[];
|
|
13399
|
+
policy?: {
|
|
13400
|
+
mode?: "observe" | "prompt" | "enforce";
|
|
13401
|
+
updatedAt?: string;
|
|
13402
|
+
syncEnabled?: boolean;
|
|
13403
|
+
defaultAction?: "warn" | "block" | "allow";
|
|
13404
|
+
unknownPublisherAction?: "review" | "block" | "allow";
|
|
13405
|
+
changedHashAction?: "warn" | "block" | "allow" | "require-reapproval";
|
|
13406
|
+
newNetworkDomainAction?: "warn" | "block" | "allow";
|
|
13407
|
+
subprocessAction?: "warn" | "block" | "allow";
|
|
13408
|
+
telemetryEnabled?: boolean;
|
|
13409
|
+
};
|
|
13410
|
+
alertPreferences?: {
|
|
13411
|
+
updatedAt?: string;
|
|
13412
|
+
emailEnabled?: boolean;
|
|
13413
|
+
digestMode?: "immediate" | "daily" | "weekly";
|
|
13414
|
+
watchlistEnabled?: boolean;
|
|
13415
|
+
advisoriesEnabled?: boolean;
|
|
13416
|
+
repeatedWarningsEnabled?: boolean;
|
|
13417
|
+
teamAlertsEnabled?: boolean;
|
|
13418
|
+
};
|
|
13419
|
+
exceptions?: {
|
|
13420
|
+
reason?: string;
|
|
13421
|
+
owner?: string;
|
|
13422
|
+
createdAt?: string;
|
|
13423
|
+
updatedAt?: string;
|
|
13424
|
+
expiresAt?: string;
|
|
13425
|
+
artifactId?: string;
|
|
13426
|
+
publisher?: string;
|
|
13427
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
13428
|
+
source?: "manual" | "team-policy";
|
|
13429
|
+
harness?: string;
|
|
13430
|
+
exceptionId?: string;
|
|
13431
|
+
}[];
|
|
13432
|
+
teamPolicyPack?: {
|
|
13433
|
+
name?: string;
|
|
13434
|
+
updatedAt?: string;
|
|
13435
|
+
sharedHarnessDefaults?: Record<string, "observe" | "prompt" | "enforce">;
|
|
13436
|
+
allowedPublishers?: string[];
|
|
13437
|
+
blockedPublishers?: string[];
|
|
13438
|
+
blockedDomains?: string[];
|
|
13439
|
+
blockedArtifacts?: string[];
|
|
13440
|
+
alertChannel?: "email" | "slack" | "teams" | "webhook";
|
|
13441
|
+
auditTrail?: {
|
|
13442
|
+
summary?: string;
|
|
13443
|
+
changedAt?: string;
|
|
13444
|
+
actor?: string;
|
|
13445
|
+
change?: "created" | "updated";
|
|
13446
|
+
}[];
|
|
13447
|
+
};
|
|
13448
|
+
}, {
|
|
13449
|
+
syncedAt?: string;
|
|
13450
|
+
receiptsStored?: number;
|
|
13451
|
+
inventoryStored?: number;
|
|
13452
|
+
inventoryDiff?: {
|
|
13453
|
+
items?: {
|
|
13454
|
+
artifactType?: "skill" | "plugin";
|
|
13455
|
+
artifactId?: string;
|
|
13456
|
+
artifactName?: string;
|
|
13457
|
+
changeType?: "new" | "changed" | "removed";
|
|
13458
|
+
previousHash?: string;
|
|
13459
|
+
currentHash?: string;
|
|
13460
|
+
}[];
|
|
13461
|
+
generatedAt?: string;
|
|
13462
|
+
};
|
|
13463
|
+
advisories?: {
|
|
13464
|
+
reason?: string;
|
|
13465
|
+
id?: string;
|
|
13466
|
+
confidence?: number;
|
|
13467
|
+
artifactId?: string;
|
|
13468
|
+
artifactName?: string;
|
|
13469
|
+
severity?: "low" | "medium" | "high";
|
|
13470
|
+
publishedAt?: string;
|
|
13471
|
+
remediation?: string;
|
|
13472
|
+
scope?: "domain" | "ecosystem" | "artifact" | "publisher" | "workspace";
|
|
13473
|
+
source?: string;
|
|
13474
|
+
firstSeenAt?: string;
|
|
13475
|
+
lastUpdatedAt?: string;
|
|
13476
|
+
}[];
|
|
13477
|
+
policy?: {
|
|
13478
|
+
mode?: "observe" | "prompt" | "enforce";
|
|
13479
|
+
updatedAt?: string;
|
|
13480
|
+
syncEnabled?: boolean;
|
|
13481
|
+
defaultAction?: "warn" | "block" | "allow";
|
|
13482
|
+
unknownPublisherAction?: "review" | "block" | "allow";
|
|
13483
|
+
changedHashAction?: "warn" | "block" | "allow" | "require-reapproval";
|
|
13484
|
+
newNetworkDomainAction?: "warn" | "block" | "allow";
|
|
13485
|
+
subprocessAction?: "warn" | "block" | "allow";
|
|
13486
|
+
telemetryEnabled?: boolean;
|
|
13487
|
+
};
|
|
13488
|
+
alertPreferences?: {
|
|
13489
|
+
updatedAt?: string;
|
|
13490
|
+
emailEnabled?: boolean;
|
|
13491
|
+
digestMode?: "immediate" | "daily" | "weekly";
|
|
13492
|
+
watchlistEnabled?: boolean;
|
|
13493
|
+
advisoriesEnabled?: boolean;
|
|
13494
|
+
repeatedWarningsEnabled?: boolean;
|
|
13495
|
+
teamAlertsEnabled?: boolean;
|
|
13496
|
+
};
|
|
13497
|
+
exceptions?: {
|
|
13498
|
+
reason?: string;
|
|
13499
|
+
owner?: string;
|
|
13500
|
+
createdAt?: string;
|
|
13501
|
+
updatedAt?: string;
|
|
13502
|
+
expiresAt?: string;
|
|
13503
|
+
artifactId?: string;
|
|
13504
|
+
publisher?: string;
|
|
13505
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
13506
|
+
source?: "manual" | "team-policy";
|
|
13507
|
+
harness?: string;
|
|
13508
|
+
exceptionId?: string;
|
|
13509
|
+
}[];
|
|
13510
|
+
teamPolicyPack?: {
|
|
13511
|
+
name?: string;
|
|
13512
|
+
updatedAt?: string;
|
|
13513
|
+
sharedHarnessDefaults?: Record<string, "observe" | "prompt" | "enforce">;
|
|
13514
|
+
allowedPublishers?: string[];
|
|
13515
|
+
blockedPublishers?: string[];
|
|
13516
|
+
blockedDomains?: string[];
|
|
13517
|
+
blockedArtifacts?: string[];
|
|
13518
|
+
alertChannel?: "email" | "slack" | "teams" | "webhook";
|
|
13519
|
+
auditTrail?: {
|
|
13520
|
+
summary?: string;
|
|
13521
|
+
changedAt?: string;
|
|
13522
|
+
actor?: string;
|
|
13523
|
+
change?: "created" | "updated";
|
|
13524
|
+
}[];
|
|
13525
|
+
};
|
|
13526
|
+
}>;
|
|
13527
|
+
declare const guardInventoryResponseSchema: z.ZodObject<{
|
|
13528
|
+
generatedAt: z.ZodString;
|
|
13529
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13530
|
+
artifactId: z.ZodString;
|
|
13531
|
+
artifactName: z.ZodString;
|
|
13532
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13533
|
+
artifactSlug: z.ZodString;
|
|
13534
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
13535
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
13536
|
+
devices: z.ZodArray<z.ZodString, "many">;
|
|
13537
|
+
eventCount: z.ZodNumber;
|
|
13538
|
+
firstSeenAt: z.ZodString;
|
|
13539
|
+
lastSeenAt: z.ZodString;
|
|
13540
|
+
latestDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
13541
|
+
latestRecommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
13542
|
+
latestHash: z.ZodString;
|
|
13543
|
+
latestSummary: z.ZodString;
|
|
13544
|
+
}, "strip", z.ZodTypeAny, {
|
|
13545
|
+
artifactType?: "skill" | "plugin";
|
|
13546
|
+
artifactId?: string;
|
|
13547
|
+
artifactName?: string;
|
|
13548
|
+
artifactSlug?: string;
|
|
13549
|
+
publisher?: string;
|
|
13550
|
+
firstSeenAt?: string;
|
|
13551
|
+
harnesses?: string[];
|
|
13552
|
+
eventCount?: number;
|
|
13553
|
+
lastSeenAt?: string;
|
|
13554
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13555
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13556
|
+
devices?: string[];
|
|
13557
|
+
latestHash?: string;
|
|
13558
|
+
latestSummary?: string;
|
|
13559
|
+
}, {
|
|
13560
|
+
artifactType?: "skill" | "plugin";
|
|
13561
|
+
artifactId?: string;
|
|
13562
|
+
artifactName?: string;
|
|
13563
|
+
artifactSlug?: string;
|
|
13564
|
+
publisher?: string;
|
|
13565
|
+
firstSeenAt?: string;
|
|
13566
|
+
harnesses?: string[];
|
|
13567
|
+
eventCount?: number;
|
|
13568
|
+
lastSeenAt?: string;
|
|
13569
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13570
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13571
|
+
devices?: string[];
|
|
13572
|
+
latestHash?: string;
|
|
13573
|
+
latestSummary?: string;
|
|
13574
|
+
}>, "many">;
|
|
13575
|
+
}, "strip", z.ZodTypeAny, {
|
|
13576
|
+
items?: {
|
|
13577
|
+
artifactType?: "skill" | "plugin";
|
|
13578
|
+
artifactId?: string;
|
|
13579
|
+
artifactName?: string;
|
|
13580
|
+
artifactSlug?: string;
|
|
13581
|
+
publisher?: string;
|
|
13582
|
+
firstSeenAt?: string;
|
|
13583
|
+
harnesses?: string[];
|
|
13584
|
+
eventCount?: number;
|
|
13585
|
+
lastSeenAt?: string;
|
|
13586
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13587
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13588
|
+
devices?: string[];
|
|
13589
|
+
latestHash?: string;
|
|
13590
|
+
latestSummary?: string;
|
|
13591
|
+
}[];
|
|
13592
|
+
generatedAt?: string;
|
|
13593
|
+
}, {
|
|
13594
|
+
items?: {
|
|
13595
|
+
artifactType?: "skill" | "plugin";
|
|
13596
|
+
artifactId?: string;
|
|
13597
|
+
artifactName?: string;
|
|
13598
|
+
artifactSlug?: string;
|
|
13599
|
+
publisher?: string;
|
|
13600
|
+
firstSeenAt?: string;
|
|
13601
|
+
harnesses?: string[];
|
|
13602
|
+
eventCount?: number;
|
|
13603
|
+
lastSeenAt?: string;
|
|
13604
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13605
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13606
|
+
devices?: string[];
|
|
13607
|
+
latestHash?: string;
|
|
13608
|
+
latestSummary?: string;
|
|
13609
|
+
}[];
|
|
13610
|
+
generatedAt?: string;
|
|
13611
|
+
}>;
|
|
13612
|
+
declare const guardAbomSummarySchema: z.ZodObject<{
|
|
13613
|
+
totalArtifacts: z.ZodNumber;
|
|
13614
|
+
totalDevices: z.ZodNumber;
|
|
13615
|
+
totalHarnesses: z.ZodNumber;
|
|
13616
|
+
blockedArtifacts: z.ZodNumber;
|
|
13617
|
+
reviewArtifacts: z.ZodNumber;
|
|
13618
|
+
}, "strip", z.ZodTypeAny, {
|
|
13619
|
+
blockedArtifacts?: number;
|
|
13620
|
+
totalArtifacts?: number;
|
|
13621
|
+
totalDevices?: number;
|
|
13622
|
+
totalHarnesses?: number;
|
|
13623
|
+
reviewArtifacts?: number;
|
|
13624
|
+
}, {
|
|
13625
|
+
blockedArtifacts?: number;
|
|
13626
|
+
totalArtifacts?: number;
|
|
13627
|
+
totalDevices?: number;
|
|
13628
|
+
totalHarnesses?: number;
|
|
13629
|
+
reviewArtifacts?: number;
|
|
13630
|
+
}>;
|
|
13631
|
+
declare const guardAbomResponseSchema: z.ZodObject<{
|
|
13632
|
+
generatedAt: z.ZodString;
|
|
13633
|
+
summary: z.ZodObject<{
|
|
13634
|
+
totalArtifacts: z.ZodNumber;
|
|
13635
|
+
totalDevices: z.ZodNumber;
|
|
13636
|
+
totalHarnesses: z.ZodNumber;
|
|
13637
|
+
blockedArtifacts: z.ZodNumber;
|
|
13638
|
+
reviewArtifacts: z.ZodNumber;
|
|
13639
|
+
}, "strip", z.ZodTypeAny, {
|
|
13640
|
+
blockedArtifacts?: number;
|
|
13641
|
+
totalArtifacts?: number;
|
|
13642
|
+
totalDevices?: number;
|
|
13643
|
+
totalHarnesses?: number;
|
|
13644
|
+
reviewArtifacts?: number;
|
|
13645
|
+
}, {
|
|
13646
|
+
blockedArtifacts?: number;
|
|
13647
|
+
totalArtifacts?: number;
|
|
13648
|
+
totalDevices?: number;
|
|
13649
|
+
totalHarnesses?: number;
|
|
13650
|
+
reviewArtifacts?: number;
|
|
13651
|
+
}>;
|
|
13652
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13653
|
+
artifactId: z.ZodString;
|
|
13654
|
+
artifactName: z.ZodString;
|
|
13655
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13656
|
+
artifactSlug: z.ZodString;
|
|
13657
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
13658
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
13659
|
+
devices: z.ZodArray<z.ZodString, "many">;
|
|
13660
|
+
eventCount: z.ZodNumber;
|
|
13661
|
+
firstSeenAt: z.ZodString;
|
|
13662
|
+
lastSeenAt: z.ZodString;
|
|
13663
|
+
latestDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
13664
|
+
latestRecommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
13665
|
+
latestHash: z.ZodString;
|
|
13666
|
+
latestSummary: z.ZodString;
|
|
13667
|
+
}, "strip", z.ZodTypeAny, {
|
|
13668
|
+
artifactType?: "skill" | "plugin";
|
|
13669
|
+
artifactId?: string;
|
|
13670
|
+
artifactName?: string;
|
|
13671
|
+
artifactSlug?: string;
|
|
13672
|
+
publisher?: string;
|
|
13673
|
+
firstSeenAt?: string;
|
|
13674
|
+
harnesses?: string[];
|
|
13675
|
+
eventCount?: number;
|
|
13676
|
+
lastSeenAt?: string;
|
|
13677
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13678
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13679
|
+
devices?: string[];
|
|
13680
|
+
latestHash?: string;
|
|
13681
|
+
latestSummary?: string;
|
|
13682
|
+
}, {
|
|
13683
|
+
artifactType?: "skill" | "plugin";
|
|
13684
|
+
artifactId?: string;
|
|
13685
|
+
artifactName?: string;
|
|
13686
|
+
artifactSlug?: string;
|
|
13687
|
+
publisher?: string;
|
|
13688
|
+
firstSeenAt?: string;
|
|
13689
|
+
harnesses?: string[];
|
|
13690
|
+
eventCount?: number;
|
|
13691
|
+
lastSeenAt?: string;
|
|
13692
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13693
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13694
|
+
devices?: string[];
|
|
13695
|
+
latestHash?: string;
|
|
13696
|
+
latestSummary?: string;
|
|
13697
|
+
}>, "many">;
|
|
13698
|
+
}, "strip", z.ZodTypeAny, {
|
|
13699
|
+
summary?: {
|
|
13700
|
+
blockedArtifacts?: number;
|
|
13701
|
+
totalArtifacts?: number;
|
|
13702
|
+
totalDevices?: number;
|
|
13703
|
+
totalHarnesses?: number;
|
|
13704
|
+
reviewArtifacts?: number;
|
|
13705
|
+
};
|
|
13706
|
+
items?: {
|
|
13707
|
+
artifactType?: "skill" | "plugin";
|
|
13708
|
+
artifactId?: string;
|
|
13709
|
+
artifactName?: string;
|
|
13710
|
+
artifactSlug?: string;
|
|
13711
|
+
publisher?: string;
|
|
13712
|
+
firstSeenAt?: string;
|
|
13713
|
+
harnesses?: string[];
|
|
13714
|
+
eventCount?: number;
|
|
13715
|
+
lastSeenAt?: string;
|
|
13716
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13717
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13718
|
+
devices?: string[];
|
|
13719
|
+
latestHash?: string;
|
|
13720
|
+
latestSummary?: string;
|
|
13721
|
+
}[];
|
|
13722
|
+
generatedAt?: string;
|
|
13723
|
+
}, {
|
|
13724
|
+
summary?: {
|
|
13725
|
+
blockedArtifacts?: number;
|
|
13726
|
+
totalArtifacts?: number;
|
|
13727
|
+
totalDevices?: number;
|
|
13728
|
+
totalHarnesses?: number;
|
|
13729
|
+
reviewArtifacts?: number;
|
|
13730
|
+
};
|
|
13731
|
+
items?: {
|
|
13732
|
+
artifactType?: "skill" | "plugin";
|
|
13733
|
+
artifactId?: string;
|
|
13734
|
+
artifactName?: string;
|
|
13735
|
+
artifactSlug?: string;
|
|
13736
|
+
publisher?: string;
|
|
13737
|
+
firstSeenAt?: string;
|
|
13738
|
+
harnesses?: string[];
|
|
13739
|
+
eventCount?: number;
|
|
13740
|
+
lastSeenAt?: string;
|
|
13741
|
+
latestDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13742
|
+
latestRecommendation?: "monitor" | "review" | "block";
|
|
13743
|
+
devices?: string[];
|
|
13744
|
+
latestHash?: string;
|
|
13745
|
+
latestSummary?: string;
|
|
13746
|
+
}[];
|
|
13747
|
+
generatedAt?: string;
|
|
13748
|
+
}>;
|
|
13749
|
+
declare const guardTimelineEventSchema: z.ZodObject<{
|
|
13750
|
+
receiptId: z.ZodString;
|
|
13751
|
+
capturedAt: z.ZodString;
|
|
13752
|
+
harness: z.ZodString;
|
|
13753
|
+
deviceId: z.ZodString;
|
|
13754
|
+
deviceName: z.ZodString;
|
|
13755
|
+
artifactHash: z.ZodString;
|
|
13756
|
+
policyDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
13757
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
13758
|
+
changedSinceLastApproval: z.ZodBoolean;
|
|
13759
|
+
summary: z.ZodString;
|
|
13760
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
13761
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
13762
|
+
}, "strip", z.ZodTypeAny, {
|
|
13763
|
+
capabilities?: string[];
|
|
13764
|
+
summary?: string;
|
|
13765
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13766
|
+
publisher?: string;
|
|
13767
|
+
receiptId?: string;
|
|
13768
|
+
capturedAt?: string;
|
|
13769
|
+
harness?: string;
|
|
13770
|
+
deviceId?: string;
|
|
13771
|
+
deviceName?: string;
|
|
13772
|
+
artifactHash?: string;
|
|
13773
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13774
|
+
changedSinceLastApproval?: boolean;
|
|
13775
|
+
}, {
|
|
13776
|
+
capabilities?: string[];
|
|
13777
|
+
summary?: string;
|
|
13778
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13779
|
+
publisher?: string;
|
|
13780
|
+
receiptId?: string;
|
|
13781
|
+
capturedAt?: string;
|
|
13782
|
+
harness?: string;
|
|
13783
|
+
deviceId?: string;
|
|
13784
|
+
deviceName?: string;
|
|
13785
|
+
artifactHash?: string;
|
|
13786
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13787
|
+
changedSinceLastApproval?: boolean;
|
|
13788
|
+
}>;
|
|
13789
|
+
declare const guardArtifactTimelineResponseSchema: z.ZodObject<{
|
|
13790
|
+
generatedAt: z.ZodString;
|
|
13791
|
+
artifactId: z.ZodString;
|
|
13792
|
+
artifactName: z.ZodString;
|
|
13793
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13794
|
+
artifactSlug: z.ZodString;
|
|
13795
|
+
events: z.ZodArray<z.ZodObject<{
|
|
13796
|
+
receiptId: z.ZodString;
|
|
13797
|
+
capturedAt: z.ZodString;
|
|
13798
|
+
harness: z.ZodString;
|
|
13799
|
+
deviceId: z.ZodString;
|
|
13800
|
+
deviceName: z.ZodString;
|
|
13801
|
+
artifactHash: z.ZodString;
|
|
13802
|
+
policyDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
13803
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
13804
|
+
changedSinceLastApproval: z.ZodBoolean;
|
|
13805
|
+
summary: z.ZodString;
|
|
13806
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
13807
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
13808
|
+
}, "strip", z.ZodTypeAny, {
|
|
13809
|
+
capabilities?: string[];
|
|
13810
|
+
summary?: string;
|
|
13811
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13812
|
+
publisher?: string;
|
|
13813
|
+
receiptId?: string;
|
|
13814
|
+
capturedAt?: string;
|
|
13815
|
+
harness?: string;
|
|
13816
|
+
deviceId?: string;
|
|
13817
|
+
deviceName?: string;
|
|
13818
|
+
artifactHash?: string;
|
|
13819
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13820
|
+
changedSinceLastApproval?: boolean;
|
|
13821
|
+
}, {
|
|
13822
|
+
capabilities?: string[];
|
|
13823
|
+
summary?: string;
|
|
13824
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13825
|
+
publisher?: string;
|
|
13826
|
+
receiptId?: string;
|
|
13827
|
+
capturedAt?: string;
|
|
13828
|
+
harness?: string;
|
|
13829
|
+
deviceId?: string;
|
|
13830
|
+
deviceName?: string;
|
|
13831
|
+
artifactHash?: string;
|
|
13832
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13833
|
+
changedSinceLastApproval?: boolean;
|
|
13834
|
+
}>, "many">;
|
|
13835
|
+
}, "strip", z.ZodTypeAny, {
|
|
13836
|
+
generatedAt?: string;
|
|
13837
|
+
artifactType?: "skill" | "plugin";
|
|
13838
|
+
artifactId?: string;
|
|
13839
|
+
artifactName?: string;
|
|
13840
|
+
artifactSlug?: string;
|
|
13841
|
+
events?: {
|
|
13842
|
+
capabilities?: string[];
|
|
13843
|
+
summary?: string;
|
|
13844
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13845
|
+
publisher?: string;
|
|
13846
|
+
receiptId?: string;
|
|
13847
|
+
capturedAt?: string;
|
|
13848
|
+
harness?: string;
|
|
13849
|
+
deviceId?: string;
|
|
13850
|
+
deviceName?: string;
|
|
13851
|
+
artifactHash?: string;
|
|
13852
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13853
|
+
changedSinceLastApproval?: boolean;
|
|
13854
|
+
}[];
|
|
13855
|
+
}, {
|
|
13856
|
+
generatedAt?: string;
|
|
13857
|
+
artifactType?: "skill" | "plugin";
|
|
13858
|
+
artifactId?: string;
|
|
13859
|
+
artifactName?: string;
|
|
13860
|
+
artifactSlug?: string;
|
|
13861
|
+
events?: {
|
|
13862
|
+
capabilities?: string[];
|
|
13863
|
+
summary?: string;
|
|
13864
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13865
|
+
publisher?: string;
|
|
13866
|
+
receiptId?: string;
|
|
13867
|
+
capturedAt?: string;
|
|
13868
|
+
harness?: string;
|
|
13869
|
+
deviceId?: string;
|
|
13870
|
+
deviceName?: string;
|
|
13871
|
+
artifactHash?: string;
|
|
13872
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13873
|
+
changedSinceLastApproval?: boolean;
|
|
13874
|
+
}[];
|
|
13875
|
+
}>;
|
|
13876
|
+
declare const guardReceiptExportSummarySchema: z.ZodObject<{
|
|
13877
|
+
totalReceipts: z.ZodNumber;
|
|
13878
|
+
blockedCount: z.ZodNumber;
|
|
13879
|
+
reviewCount: z.ZodNumber;
|
|
13880
|
+
approvedCount: z.ZodNumber;
|
|
13881
|
+
}, "strip", z.ZodTypeAny, {
|
|
13882
|
+
reviewCount?: number;
|
|
13883
|
+
totalReceipts?: number;
|
|
13884
|
+
blockedCount?: number;
|
|
13885
|
+
approvedCount?: number;
|
|
13886
|
+
}, {
|
|
13887
|
+
reviewCount?: number;
|
|
13888
|
+
totalReceipts?: number;
|
|
13889
|
+
blockedCount?: number;
|
|
13890
|
+
approvedCount?: number;
|
|
13891
|
+
}>;
|
|
13892
|
+
declare const guardExportSignatureSchema: z.ZodObject<{
|
|
13893
|
+
algorithm: z.ZodEnum<["hmac-sha256", "none"]>;
|
|
13894
|
+
digest: z.ZodString;
|
|
13895
|
+
}, "strip", z.ZodTypeAny, {
|
|
13896
|
+
digest?: string;
|
|
13897
|
+
algorithm?: "none" | "hmac-sha256";
|
|
13898
|
+
}, {
|
|
13899
|
+
digest?: string;
|
|
13900
|
+
algorithm?: "none" | "hmac-sha256";
|
|
13901
|
+
}>;
|
|
13902
|
+
declare const guardReceiptExportResponseSchema: z.ZodObject<{
|
|
13903
|
+
generatedAt: z.ZodString;
|
|
13904
|
+
summary: z.ZodObject<{
|
|
13905
|
+
totalReceipts: z.ZodNumber;
|
|
13906
|
+
blockedCount: z.ZodNumber;
|
|
13907
|
+
reviewCount: z.ZodNumber;
|
|
13908
|
+
approvedCount: z.ZodNumber;
|
|
13909
|
+
}, "strip", z.ZodTypeAny, {
|
|
13910
|
+
reviewCount?: number;
|
|
13911
|
+
totalReceipts?: number;
|
|
13912
|
+
blockedCount?: number;
|
|
13913
|
+
approvedCount?: number;
|
|
13914
|
+
}, {
|
|
13915
|
+
reviewCount?: number;
|
|
13916
|
+
totalReceipts?: number;
|
|
13917
|
+
blockedCount?: number;
|
|
13918
|
+
approvedCount?: number;
|
|
13919
|
+
}>;
|
|
13920
|
+
provenanceSummary: z.ZodArray<z.ZodString, "many">;
|
|
13921
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13922
|
+
receiptId: z.ZodString;
|
|
13923
|
+
capturedAt: z.ZodString;
|
|
13924
|
+
harness: z.ZodString;
|
|
13925
|
+
deviceId: z.ZodString;
|
|
13926
|
+
deviceName: z.ZodString;
|
|
13927
|
+
artifactId: z.ZodString;
|
|
13928
|
+
artifactName: z.ZodString;
|
|
13929
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
13930
|
+
artifactSlug: z.ZodString;
|
|
13931
|
+
artifactHash: z.ZodString;
|
|
13932
|
+
policyDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
13933
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
13934
|
+
changedSinceLastApproval: z.ZodBoolean;
|
|
13935
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
13936
|
+
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
13937
|
+
summary: z.ZodString;
|
|
13938
|
+
}, "strip", z.ZodTypeAny, {
|
|
13939
|
+
capabilities?: string[];
|
|
13940
|
+
summary?: string;
|
|
13941
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13942
|
+
artifactType?: "skill" | "plugin";
|
|
13943
|
+
artifactId?: string;
|
|
13944
|
+
artifactName?: string;
|
|
13945
|
+
artifactSlug?: string;
|
|
13946
|
+
publisher?: string;
|
|
13947
|
+
receiptId?: string;
|
|
13948
|
+
capturedAt?: string;
|
|
13949
|
+
harness?: string;
|
|
13950
|
+
deviceId?: string;
|
|
13951
|
+
deviceName?: string;
|
|
13952
|
+
artifactHash?: string;
|
|
13953
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13954
|
+
changedSinceLastApproval?: boolean;
|
|
13955
|
+
}, {
|
|
13956
|
+
capabilities?: string[];
|
|
13957
|
+
summary?: string;
|
|
13958
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13959
|
+
artifactType?: "skill" | "plugin";
|
|
13960
|
+
artifactId?: string;
|
|
13961
|
+
artifactName?: string;
|
|
13962
|
+
artifactSlug?: string;
|
|
13963
|
+
publisher?: string;
|
|
13964
|
+
receiptId?: string;
|
|
13965
|
+
capturedAt?: string;
|
|
13966
|
+
harness?: string;
|
|
13967
|
+
deviceId?: string;
|
|
13968
|
+
deviceName?: string;
|
|
13969
|
+
artifactHash?: string;
|
|
13970
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
13971
|
+
changedSinceLastApproval?: boolean;
|
|
13972
|
+
}>, "many">;
|
|
13973
|
+
signature: z.ZodObject<{
|
|
13974
|
+
algorithm: z.ZodEnum<["hmac-sha256", "none"]>;
|
|
13975
|
+
digest: z.ZodString;
|
|
13976
|
+
}, "strip", z.ZodTypeAny, {
|
|
13977
|
+
digest?: string;
|
|
13978
|
+
algorithm?: "none" | "hmac-sha256";
|
|
13979
|
+
}, {
|
|
13980
|
+
digest?: string;
|
|
13981
|
+
algorithm?: "none" | "hmac-sha256";
|
|
13982
|
+
}>;
|
|
13983
|
+
}, "strip", z.ZodTypeAny, {
|
|
13984
|
+
signature?: {
|
|
13985
|
+
digest?: string;
|
|
13986
|
+
algorithm?: "none" | "hmac-sha256";
|
|
13987
|
+
};
|
|
13988
|
+
summary?: {
|
|
13989
|
+
reviewCount?: number;
|
|
13990
|
+
totalReceipts?: number;
|
|
13991
|
+
blockedCount?: number;
|
|
13992
|
+
approvedCount?: number;
|
|
13993
|
+
};
|
|
13994
|
+
items?: {
|
|
13995
|
+
capabilities?: string[];
|
|
13996
|
+
summary?: string;
|
|
13997
|
+
recommendation?: "monitor" | "review" | "block";
|
|
13998
|
+
artifactType?: "skill" | "plugin";
|
|
13999
|
+
artifactId?: string;
|
|
14000
|
+
artifactName?: string;
|
|
14001
|
+
artifactSlug?: string;
|
|
14002
|
+
publisher?: string;
|
|
14003
|
+
receiptId?: string;
|
|
14004
|
+
capturedAt?: string;
|
|
14005
|
+
harness?: string;
|
|
14006
|
+
deviceId?: string;
|
|
14007
|
+
deviceName?: string;
|
|
14008
|
+
artifactHash?: string;
|
|
14009
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
14010
|
+
changedSinceLastApproval?: boolean;
|
|
14011
|
+
}[];
|
|
14012
|
+
generatedAt?: string;
|
|
14013
|
+
provenanceSummary?: string[];
|
|
14014
|
+
}, {
|
|
14015
|
+
signature?: {
|
|
14016
|
+
digest?: string;
|
|
14017
|
+
algorithm?: "none" | "hmac-sha256";
|
|
14018
|
+
};
|
|
14019
|
+
summary?: {
|
|
14020
|
+
reviewCount?: number;
|
|
14021
|
+
totalReceipts?: number;
|
|
14022
|
+
blockedCount?: number;
|
|
14023
|
+
approvedCount?: number;
|
|
14024
|
+
};
|
|
14025
|
+
items?: {
|
|
14026
|
+
capabilities?: string[];
|
|
14027
|
+
summary?: string;
|
|
14028
|
+
recommendation?: "monitor" | "review" | "block";
|
|
14029
|
+
artifactType?: "skill" | "plugin";
|
|
14030
|
+
artifactId?: string;
|
|
14031
|
+
artifactName?: string;
|
|
14032
|
+
artifactSlug?: string;
|
|
14033
|
+
publisher?: string;
|
|
14034
|
+
receiptId?: string;
|
|
14035
|
+
capturedAt?: string;
|
|
14036
|
+
harness?: string;
|
|
14037
|
+
deviceId?: string;
|
|
14038
|
+
deviceName?: string;
|
|
14039
|
+
artifactHash?: string;
|
|
14040
|
+
policyDecision?: "warn" | "review" | "block" | "allow" | "require-reapproval" | "sandbox-required";
|
|
14041
|
+
changedSinceLastApproval?: boolean;
|
|
14042
|
+
}[];
|
|
14043
|
+
generatedAt?: string;
|
|
14044
|
+
provenanceSummary?: string[];
|
|
14045
|
+
}>;
|
|
14046
|
+
declare const guardAlertPreferencesSchema: z.ZodObject<{
|
|
14047
|
+
emailEnabled: z.ZodBoolean;
|
|
14048
|
+
digestMode: z.ZodEnum<["immediate", "daily", "weekly"]>;
|
|
14049
|
+
watchlistEnabled: z.ZodBoolean;
|
|
14050
|
+
advisoriesEnabled: z.ZodBoolean;
|
|
14051
|
+
repeatedWarningsEnabled: z.ZodBoolean;
|
|
14052
|
+
teamAlertsEnabled: z.ZodBoolean;
|
|
14053
|
+
updatedAt: z.ZodString;
|
|
14054
|
+
}, "strip", z.ZodTypeAny, {
|
|
14055
|
+
updatedAt?: string;
|
|
14056
|
+
emailEnabled?: boolean;
|
|
14057
|
+
digestMode?: "immediate" | "daily" | "weekly";
|
|
14058
|
+
watchlistEnabled?: boolean;
|
|
14059
|
+
advisoriesEnabled?: boolean;
|
|
14060
|
+
repeatedWarningsEnabled?: boolean;
|
|
14061
|
+
teamAlertsEnabled?: boolean;
|
|
14062
|
+
}, {
|
|
14063
|
+
updatedAt?: string;
|
|
14064
|
+
emailEnabled?: boolean;
|
|
14065
|
+
digestMode?: "immediate" | "daily" | "weekly";
|
|
14066
|
+
watchlistEnabled?: boolean;
|
|
14067
|
+
advisoriesEnabled?: boolean;
|
|
14068
|
+
repeatedWarningsEnabled?: boolean;
|
|
14069
|
+
teamAlertsEnabled?: boolean;
|
|
14070
|
+
}>;
|
|
14071
|
+
declare const guardWatchlistItemSchema: z.ZodObject<{
|
|
14072
|
+
artifactId: z.ZodString;
|
|
14073
|
+
artifactName: z.ZodString;
|
|
14074
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14075
|
+
artifactSlug: z.ZodString;
|
|
14076
|
+
reason: z.ZodString;
|
|
14077
|
+
source: z.ZodEnum<["manual", "synced", "team-policy"]>;
|
|
14078
|
+
createdAt: z.ZodString;
|
|
14079
|
+
}, "strip", z.ZodTypeAny, {
|
|
14080
|
+
reason?: string;
|
|
14081
|
+
createdAt?: string;
|
|
14082
|
+
artifactType?: "skill" | "plugin";
|
|
14083
|
+
artifactId?: string;
|
|
14084
|
+
artifactName?: string;
|
|
14085
|
+
artifactSlug?: string;
|
|
14086
|
+
source?: "manual" | "team-policy" | "synced";
|
|
14087
|
+
}, {
|
|
14088
|
+
reason?: string;
|
|
14089
|
+
createdAt?: string;
|
|
14090
|
+
artifactType?: "skill" | "plugin";
|
|
14091
|
+
artifactId?: string;
|
|
14092
|
+
artifactName?: string;
|
|
14093
|
+
artifactSlug?: string;
|
|
14094
|
+
source?: "manual" | "team-policy" | "synced";
|
|
14095
|
+
}>;
|
|
14096
|
+
declare const guardWatchlistResponseSchema: z.ZodObject<{
|
|
14097
|
+
generatedAt: z.ZodString;
|
|
14098
|
+
items: z.ZodArray<z.ZodObject<{
|
|
14099
|
+
artifactId: z.ZodString;
|
|
14100
|
+
artifactName: z.ZodString;
|
|
14101
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14102
|
+
artifactSlug: z.ZodString;
|
|
14103
|
+
reason: z.ZodString;
|
|
14104
|
+
source: z.ZodEnum<["manual", "synced", "team-policy"]>;
|
|
14105
|
+
createdAt: z.ZodString;
|
|
14106
|
+
}, "strip", z.ZodTypeAny, {
|
|
14107
|
+
reason?: string;
|
|
14108
|
+
createdAt?: string;
|
|
14109
|
+
artifactType?: "skill" | "plugin";
|
|
14110
|
+
artifactId?: string;
|
|
14111
|
+
artifactName?: string;
|
|
14112
|
+
artifactSlug?: string;
|
|
14113
|
+
source?: "manual" | "team-policy" | "synced";
|
|
14114
|
+
}, {
|
|
14115
|
+
reason?: string;
|
|
14116
|
+
createdAt?: string;
|
|
14117
|
+
artifactType?: "skill" | "plugin";
|
|
14118
|
+
artifactId?: string;
|
|
14119
|
+
artifactName?: string;
|
|
14120
|
+
artifactSlug?: string;
|
|
14121
|
+
source?: "manual" | "team-policy" | "synced";
|
|
14122
|
+
}>, "many">;
|
|
14123
|
+
}, "strip", z.ZodTypeAny, {
|
|
14124
|
+
items?: {
|
|
14125
|
+
reason?: string;
|
|
14126
|
+
createdAt?: string;
|
|
14127
|
+
artifactType?: "skill" | "plugin";
|
|
14128
|
+
artifactId?: string;
|
|
14129
|
+
artifactName?: string;
|
|
14130
|
+
artifactSlug?: string;
|
|
14131
|
+
source?: "manual" | "team-policy" | "synced";
|
|
14132
|
+
}[];
|
|
14133
|
+
generatedAt?: string;
|
|
14134
|
+
}, {
|
|
14135
|
+
items?: {
|
|
14136
|
+
reason?: string;
|
|
14137
|
+
createdAt?: string;
|
|
14138
|
+
artifactType?: "skill" | "plugin";
|
|
14139
|
+
artifactId?: string;
|
|
14140
|
+
artifactName?: string;
|
|
14141
|
+
artifactSlug?: string;
|
|
14142
|
+
source?: "manual" | "team-policy" | "synced";
|
|
14143
|
+
}[];
|
|
14144
|
+
generatedAt?: string;
|
|
14145
|
+
}>;
|
|
14146
|
+
declare const guardWatchlistLookupResponseSchema: z.ZodObject<{
|
|
14147
|
+
generatedAt: z.ZodString;
|
|
14148
|
+
matched: z.ZodBoolean;
|
|
14149
|
+
scope: z.ZodEnum<["artifact", "publisher", "domain", "none"]>;
|
|
14150
|
+
item: z.ZodNullable<z.ZodObject<{
|
|
14151
|
+
artifactId: z.ZodNullable<z.ZodString>;
|
|
14152
|
+
publisher: z.ZodNullable<z.ZodString>;
|
|
14153
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
14154
|
+
source: z.ZodEnum<["watchlist", "team-policy"]>;
|
|
14155
|
+
reason: z.ZodString;
|
|
14156
|
+
}, "strip", z.ZodTypeAny, {
|
|
14157
|
+
reason?: string;
|
|
14158
|
+
domain?: string;
|
|
14159
|
+
artifactId?: string;
|
|
14160
|
+
publisher?: string;
|
|
14161
|
+
source?: "team-policy" | "watchlist";
|
|
14162
|
+
}, {
|
|
14163
|
+
reason?: string;
|
|
14164
|
+
domain?: string;
|
|
14165
|
+
artifactId?: string;
|
|
14166
|
+
publisher?: string;
|
|
14167
|
+
source?: "team-policy" | "watchlist";
|
|
14168
|
+
}>>;
|
|
14169
|
+
}, "strip", z.ZodTypeAny, {
|
|
14170
|
+
generatedAt?: string;
|
|
14171
|
+
scope?: "none" | "domain" | "artifact" | "publisher";
|
|
14172
|
+
matched?: boolean;
|
|
14173
|
+
item?: {
|
|
14174
|
+
reason?: string;
|
|
14175
|
+
domain?: string;
|
|
14176
|
+
artifactId?: string;
|
|
14177
|
+
publisher?: string;
|
|
14178
|
+
source?: "team-policy" | "watchlist";
|
|
14179
|
+
};
|
|
14180
|
+
}, {
|
|
14181
|
+
generatedAt?: string;
|
|
14182
|
+
scope?: "none" | "domain" | "artifact" | "publisher";
|
|
14183
|
+
matched?: boolean;
|
|
14184
|
+
item?: {
|
|
14185
|
+
reason?: string;
|
|
14186
|
+
domain?: string;
|
|
14187
|
+
artifactId?: string;
|
|
14188
|
+
publisher?: string;
|
|
14189
|
+
source?: "team-policy" | "watchlist";
|
|
14190
|
+
};
|
|
14191
|
+
}>;
|
|
14192
|
+
declare const guardPainSignalSchema: z.ZodObject<{
|
|
14193
|
+
signalId: z.ZodString;
|
|
14194
|
+
signalName: z.ZodString;
|
|
14195
|
+
artifactId: z.ZodString;
|
|
14196
|
+
artifactName: z.ZodString;
|
|
14197
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14198
|
+
harness: z.ZodString;
|
|
14199
|
+
latestSummary: z.ZodString;
|
|
14200
|
+
firstSeenAt: z.ZodString;
|
|
14201
|
+
lastSeenAt: z.ZodString;
|
|
14202
|
+
count: z.ZodNumber;
|
|
14203
|
+
source: z.ZodLiteral<"scanner">;
|
|
14204
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
14205
|
+
}, "strip", z.ZodTypeAny, {
|
|
14206
|
+
artifactType?: "skill" | "plugin";
|
|
14207
|
+
artifactId?: string;
|
|
14208
|
+
artifactName?: string;
|
|
14209
|
+
publisher?: string;
|
|
14210
|
+
source?: "scanner";
|
|
14211
|
+
firstSeenAt?: string;
|
|
14212
|
+
harness?: string;
|
|
14213
|
+
lastSeenAt?: string;
|
|
14214
|
+
latestSummary?: string;
|
|
14215
|
+
signalId?: string;
|
|
14216
|
+
signalName?: string;
|
|
14217
|
+
count?: number;
|
|
14218
|
+
}, {
|
|
14219
|
+
artifactType?: "skill" | "plugin";
|
|
14220
|
+
artifactId?: string;
|
|
14221
|
+
artifactName?: string;
|
|
14222
|
+
publisher?: string;
|
|
14223
|
+
source?: "scanner";
|
|
14224
|
+
firstSeenAt?: string;
|
|
14225
|
+
harness?: string;
|
|
14226
|
+
lastSeenAt?: string;
|
|
14227
|
+
latestSummary?: string;
|
|
14228
|
+
signalId?: string;
|
|
14229
|
+
signalName?: string;
|
|
14230
|
+
count?: number;
|
|
14231
|
+
}>;
|
|
14232
|
+
declare const guardPainSignalListResponseSchema: z.ZodObject<{
|
|
14233
|
+
generatedAt: z.ZodString;
|
|
14234
|
+
items: z.ZodArray<z.ZodObject<{
|
|
14235
|
+
signalId: z.ZodString;
|
|
14236
|
+
signalName: z.ZodString;
|
|
14237
|
+
artifactId: z.ZodString;
|
|
14238
|
+
artifactName: z.ZodString;
|
|
14239
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14240
|
+
harness: z.ZodString;
|
|
14241
|
+
latestSummary: z.ZodString;
|
|
14242
|
+
firstSeenAt: z.ZodString;
|
|
14243
|
+
lastSeenAt: z.ZodString;
|
|
14244
|
+
count: z.ZodNumber;
|
|
14245
|
+
source: z.ZodLiteral<"scanner">;
|
|
14246
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
14247
|
+
}, "strip", z.ZodTypeAny, {
|
|
14248
|
+
artifactType?: "skill" | "plugin";
|
|
14249
|
+
artifactId?: string;
|
|
14250
|
+
artifactName?: string;
|
|
14251
|
+
publisher?: string;
|
|
14252
|
+
source?: "scanner";
|
|
14253
|
+
firstSeenAt?: string;
|
|
14254
|
+
harness?: string;
|
|
14255
|
+
lastSeenAt?: string;
|
|
14256
|
+
latestSummary?: string;
|
|
14257
|
+
signalId?: string;
|
|
14258
|
+
signalName?: string;
|
|
14259
|
+
count?: number;
|
|
14260
|
+
}, {
|
|
14261
|
+
artifactType?: "skill" | "plugin";
|
|
14262
|
+
artifactId?: string;
|
|
14263
|
+
artifactName?: string;
|
|
14264
|
+
publisher?: string;
|
|
14265
|
+
source?: "scanner";
|
|
14266
|
+
firstSeenAt?: string;
|
|
14267
|
+
harness?: string;
|
|
14268
|
+
lastSeenAt?: string;
|
|
14269
|
+
latestSummary?: string;
|
|
14270
|
+
signalId?: string;
|
|
14271
|
+
signalName?: string;
|
|
14272
|
+
count?: number;
|
|
14273
|
+
}>, "many">;
|
|
14274
|
+
}, "strip", z.ZodTypeAny, {
|
|
14275
|
+
items?: {
|
|
14276
|
+
artifactType?: "skill" | "plugin";
|
|
14277
|
+
artifactId?: string;
|
|
14278
|
+
artifactName?: string;
|
|
14279
|
+
publisher?: string;
|
|
14280
|
+
source?: "scanner";
|
|
14281
|
+
firstSeenAt?: string;
|
|
14282
|
+
harness?: string;
|
|
14283
|
+
lastSeenAt?: string;
|
|
14284
|
+
latestSummary?: string;
|
|
14285
|
+
signalId?: string;
|
|
14286
|
+
signalName?: string;
|
|
14287
|
+
count?: number;
|
|
14288
|
+
}[];
|
|
14289
|
+
generatedAt?: string;
|
|
14290
|
+
}, {
|
|
14291
|
+
items?: {
|
|
14292
|
+
artifactType?: "skill" | "plugin";
|
|
14293
|
+
artifactId?: string;
|
|
14294
|
+
artifactName?: string;
|
|
14295
|
+
publisher?: string;
|
|
14296
|
+
source?: "scanner";
|
|
14297
|
+
firstSeenAt?: string;
|
|
14298
|
+
harness?: string;
|
|
14299
|
+
lastSeenAt?: string;
|
|
14300
|
+
latestSummary?: string;
|
|
14301
|
+
signalId?: string;
|
|
14302
|
+
signalName?: string;
|
|
14303
|
+
count?: number;
|
|
14304
|
+
}[];
|
|
14305
|
+
generatedAt?: string;
|
|
14306
|
+
}>;
|
|
14307
|
+
declare const guardPainSignalAggregateSchema: z.ZodObject<{
|
|
14308
|
+
artifactId: z.ZodString;
|
|
14309
|
+
artifactName: z.ZodString;
|
|
14310
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14311
|
+
signalName: z.ZodString;
|
|
14312
|
+
latestSummary: z.ZodString;
|
|
14313
|
+
firstSeenAt: z.ZodString;
|
|
14314
|
+
lastSeenAt: z.ZodString;
|
|
14315
|
+
totalCount: z.ZodNumber;
|
|
14316
|
+
consumerCount: z.ZodNumber;
|
|
14317
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
14318
|
+
publishers: z.ZodArray<z.ZodString, "many">;
|
|
14319
|
+
}, "strip", z.ZodTypeAny, {
|
|
14320
|
+
artifactType?: "skill" | "plugin";
|
|
14321
|
+
artifactId?: string;
|
|
14322
|
+
artifactName?: string;
|
|
14323
|
+
firstSeenAt?: string;
|
|
14324
|
+
harnesses?: string[];
|
|
14325
|
+
lastSeenAt?: string;
|
|
14326
|
+
latestSummary?: string;
|
|
14327
|
+
signalName?: string;
|
|
14328
|
+
totalCount?: number;
|
|
14329
|
+
consumerCount?: number;
|
|
14330
|
+
publishers?: string[];
|
|
14331
|
+
}, {
|
|
14332
|
+
artifactType?: "skill" | "plugin";
|
|
14333
|
+
artifactId?: string;
|
|
14334
|
+
artifactName?: string;
|
|
14335
|
+
firstSeenAt?: string;
|
|
14336
|
+
harnesses?: string[];
|
|
14337
|
+
lastSeenAt?: string;
|
|
14338
|
+
latestSummary?: string;
|
|
14339
|
+
signalName?: string;
|
|
14340
|
+
totalCount?: number;
|
|
14341
|
+
consumerCount?: number;
|
|
14342
|
+
publishers?: string[];
|
|
14343
|
+
}>;
|
|
14344
|
+
declare const guardPainSignalAggregateResponseSchema: z.ZodObject<{
|
|
14345
|
+
generatedAt: z.ZodString;
|
|
14346
|
+
summary: z.ZodObject<{
|
|
14347
|
+
totalSignals: z.ZodNumber;
|
|
14348
|
+
uniqueArtifacts: z.ZodNumber;
|
|
14349
|
+
uniqueConsumers: z.ZodNumber;
|
|
14350
|
+
}, "strip", z.ZodTypeAny, {
|
|
14351
|
+
totalSignals?: number;
|
|
14352
|
+
uniqueArtifacts?: number;
|
|
14353
|
+
uniqueConsumers?: number;
|
|
14354
|
+
}, {
|
|
14355
|
+
totalSignals?: number;
|
|
14356
|
+
uniqueArtifacts?: number;
|
|
14357
|
+
uniqueConsumers?: number;
|
|
14358
|
+
}>;
|
|
14359
|
+
items: z.ZodArray<z.ZodObject<{
|
|
14360
|
+
artifactId: z.ZodString;
|
|
14361
|
+
artifactName: z.ZodString;
|
|
14362
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14363
|
+
signalName: z.ZodString;
|
|
14364
|
+
latestSummary: z.ZodString;
|
|
14365
|
+
firstSeenAt: z.ZodString;
|
|
14366
|
+
lastSeenAt: z.ZodString;
|
|
14367
|
+
totalCount: z.ZodNumber;
|
|
14368
|
+
consumerCount: z.ZodNumber;
|
|
14369
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
14370
|
+
publishers: z.ZodArray<z.ZodString, "many">;
|
|
14371
|
+
}, "strip", z.ZodTypeAny, {
|
|
14372
|
+
artifactType?: "skill" | "plugin";
|
|
14373
|
+
artifactId?: string;
|
|
14374
|
+
artifactName?: string;
|
|
14375
|
+
firstSeenAt?: string;
|
|
14376
|
+
harnesses?: string[];
|
|
14377
|
+
lastSeenAt?: string;
|
|
14378
|
+
latestSummary?: string;
|
|
14379
|
+
signalName?: string;
|
|
14380
|
+
totalCount?: number;
|
|
14381
|
+
consumerCount?: number;
|
|
14382
|
+
publishers?: string[];
|
|
14383
|
+
}, {
|
|
14384
|
+
artifactType?: "skill" | "plugin";
|
|
14385
|
+
artifactId?: string;
|
|
14386
|
+
artifactName?: string;
|
|
14387
|
+
firstSeenAt?: string;
|
|
14388
|
+
harnesses?: string[];
|
|
14389
|
+
lastSeenAt?: string;
|
|
14390
|
+
latestSummary?: string;
|
|
14391
|
+
signalName?: string;
|
|
14392
|
+
totalCount?: number;
|
|
14393
|
+
consumerCount?: number;
|
|
14394
|
+
publishers?: string[];
|
|
14395
|
+
}>, "many">;
|
|
14396
|
+
}, "strip", z.ZodTypeAny, {
|
|
14397
|
+
summary?: {
|
|
14398
|
+
totalSignals?: number;
|
|
14399
|
+
uniqueArtifacts?: number;
|
|
14400
|
+
uniqueConsumers?: number;
|
|
14401
|
+
};
|
|
14402
|
+
items?: {
|
|
14403
|
+
artifactType?: "skill" | "plugin";
|
|
14404
|
+
artifactId?: string;
|
|
14405
|
+
artifactName?: string;
|
|
14406
|
+
firstSeenAt?: string;
|
|
14407
|
+
harnesses?: string[];
|
|
14408
|
+
lastSeenAt?: string;
|
|
14409
|
+
latestSummary?: string;
|
|
14410
|
+
signalName?: string;
|
|
14411
|
+
totalCount?: number;
|
|
14412
|
+
consumerCount?: number;
|
|
14413
|
+
publishers?: string[];
|
|
14414
|
+
}[];
|
|
14415
|
+
generatedAt?: string;
|
|
14416
|
+
}, {
|
|
14417
|
+
summary?: {
|
|
14418
|
+
totalSignals?: number;
|
|
14419
|
+
uniqueArtifacts?: number;
|
|
14420
|
+
uniqueConsumers?: number;
|
|
14421
|
+
};
|
|
14422
|
+
items?: {
|
|
14423
|
+
artifactType?: "skill" | "plugin";
|
|
14424
|
+
artifactId?: string;
|
|
14425
|
+
artifactName?: string;
|
|
14426
|
+
firstSeenAt?: string;
|
|
14427
|
+
harnesses?: string[];
|
|
14428
|
+
lastSeenAt?: string;
|
|
14429
|
+
latestSummary?: string;
|
|
14430
|
+
signalName?: string;
|
|
14431
|
+
totalCount?: number;
|
|
14432
|
+
consumerCount?: number;
|
|
14433
|
+
publishers?: string[];
|
|
14434
|
+
}[];
|
|
14435
|
+
generatedAt?: string;
|
|
14436
|
+
}>;
|
|
14437
|
+
declare const guardExceptionItemSchema: z.ZodObject<{
|
|
14438
|
+
exceptionId: z.ZodString;
|
|
14439
|
+
scope: z.ZodEnum<["artifact", "publisher", "harness", "global"]>;
|
|
14440
|
+
harness: z.ZodNullable<z.ZodString>;
|
|
14441
|
+
artifactId: z.ZodNullable<z.ZodString>;
|
|
14442
|
+
publisher: z.ZodNullable<z.ZodString>;
|
|
14443
|
+
reason: z.ZodString;
|
|
14444
|
+
owner: z.ZodString;
|
|
14445
|
+
source: z.ZodEnum<["manual", "team-policy"]>;
|
|
14446
|
+
expiresAt: z.ZodString;
|
|
14447
|
+
createdAt: z.ZodString;
|
|
14448
|
+
updatedAt: z.ZodString;
|
|
14449
|
+
}, "strip", z.ZodTypeAny, {
|
|
14450
|
+
reason?: string;
|
|
14451
|
+
owner?: string;
|
|
14452
|
+
createdAt?: string;
|
|
14453
|
+
updatedAt?: string;
|
|
14454
|
+
expiresAt?: string;
|
|
14455
|
+
artifactId?: string;
|
|
14456
|
+
publisher?: string;
|
|
14457
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14458
|
+
source?: "manual" | "team-policy";
|
|
14459
|
+
harness?: string;
|
|
14460
|
+
exceptionId?: string;
|
|
14461
|
+
}, {
|
|
14462
|
+
reason?: string;
|
|
14463
|
+
owner?: string;
|
|
14464
|
+
createdAt?: string;
|
|
14465
|
+
updatedAt?: string;
|
|
14466
|
+
expiresAt?: string;
|
|
14467
|
+
artifactId?: string;
|
|
14468
|
+
publisher?: string;
|
|
14469
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14470
|
+
source?: "manual" | "team-policy";
|
|
14471
|
+
harness?: string;
|
|
14472
|
+
exceptionId?: string;
|
|
14473
|
+
}>;
|
|
14474
|
+
declare const guardExceptionListResponseSchema: z.ZodObject<{
|
|
14475
|
+
generatedAt: z.ZodString;
|
|
14476
|
+
items: z.ZodArray<z.ZodObject<{
|
|
14477
|
+
exceptionId: z.ZodString;
|
|
14478
|
+
scope: z.ZodEnum<["artifact", "publisher", "harness", "global"]>;
|
|
14479
|
+
harness: z.ZodNullable<z.ZodString>;
|
|
14480
|
+
artifactId: z.ZodNullable<z.ZodString>;
|
|
14481
|
+
publisher: z.ZodNullable<z.ZodString>;
|
|
14482
|
+
reason: z.ZodString;
|
|
14483
|
+
owner: z.ZodString;
|
|
14484
|
+
source: z.ZodEnum<["manual", "team-policy"]>;
|
|
14485
|
+
expiresAt: z.ZodString;
|
|
14486
|
+
createdAt: z.ZodString;
|
|
14487
|
+
updatedAt: z.ZodString;
|
|
14488
|
+
}, "strip", z.ZodTypeAny, {
|
|
14489
|
+
reason?: string;
|
|
14490
|
+
owner?: string;
|
|
14491
|
+
createdAt?: string;
|
|
14492
|
+
updatedAt?: string;
|
|
14493
|
+
expiresAt?: string;
|
|
14494
|
+
artifactId?: string;
|
|
14495
|
+
publisher?: string;
|
|
14496
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14497
|
+
source?: "manual" | "team-policy";
|
|
14498
|
+
harness?: string;
|
|
14499
|
+
exceptionId?: string;
|
|
14500
|
+
}, {
|
|
14501
|
+
reason?: string;
|
|
14502
|
+
owner?: string;
|
|
14503
|
+
createdAt?: string;
|
|
14504
|
+
updatedAt?: string;
|
|
14505
|
+
expiresAt?: string;
|
|
14506
|
+
artifactId?: string;
|
|
14507
|
+
publisher?: string;
|
|
14508
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14509
|
+
source?: "manual" | "team-policy";
|
|
14510
|
+
harness?: string;
|
|
14511
|
+
exceptionId?: string;
|
|
14512
|
+
}>, "many">;
|
|
14513
|
+
}, "strip", z.ZodTypeAny, {
|
|
14514
|
+
items?: {
|
|
14515
|
+
reason?: string;
|
|
14516
|
+
owner?: string;
|
|
14517
|
+
createdAt?: string;
|
|
14518
|
+
updatedAt?: string;
|
|
14519
|
+
expiresAt?: string;
|
|
14520
|
+
artifactId?: string;
|
|
14521
|
+
publisher?: string;
|
|
14522
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14523
|
+
source?: "manual" | "team-policy";
|
|
14524
|
+
harness?: string;
|
|
14525
|
+
exceptionId?: string;
|
|
14526
|
+
}[];
|
|
14527
|
+
generatedAt?: string;
|
|
14528
|
+
}, {
|
|
14529
|
+
items?: {
|
|
14530
|
+
reason?: string;
|
|
14531
|
+
owner?: string;
|
|
14532
|
+
createdAt?: string;
|
|
14533
|
+
updatedAt?: string;
|
|
14534
|
+
expiresAt?: string;
|
|
14535
|
+
artifactId?: string;
|
|
14536
|
+
publisher?: string;
|
|
14537
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14538
|
+
source?: "manual" | "team-policy";
|
|
14539
|
+
harness?: string;
|
|
14540
|
+
exceptionId?: string;
|
|
14541
|
+
}[];
|
|
14542
|
+
generatedAt?: string;
|
|
14543
|
+
}>;
|
|
14544
|
+
declare const guardPreflightEvidenceSchema: z.ZodObject<{
|
|
14545
|
+
category: z.ZodEnum<["policy", "trust", "watchlist", "team-policy", "exception"]>;
|
|
14546
|
+
source: z.ZodString;
|
|
14547
|
+
detail: z.ZodString;
|
|
14548
|
+
}, "strip", z.ZodTypeAny, {
|
|
14549
|
+
source?: string;
|
|
14550
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14551
|
+
detail?: string;
|
|
14552
|
+
}, {
|
|
14553
|
+
source?: string;
|
|
14554
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14555
|
+
detail?: string;
|
|
14556
|
+
}>;
|
|
14557
|
+
declare const guardPreflightRequestSchema: z.ZodObject<{
|
|
14558
|
+
harness: z.ZodString;
|
|
14559
|
+
artifactName: z.ZodString;
|
|
14560
|
+
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
14561
|
+
artifactId: z.ZodOptional<z.ZodString>;
|
|
14562
|
+
artifactSlug: z.ZodOptional<z.ZodString>;
|
|
14563
|
+
artifactHash: z.ZodOptional<z.ZodString>;
|
|
14564
|
+
publisher: z.ZodOptional<z.ZodString>;
|
|
14565
|
+
domain: z.ZodOptional<z.ZodString>;
|
|
14566
|
+
launchSummary: z.ZodOptional<z.ZodString>;
|
|
14567
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14568
|
+
workspacePath: z.ZodOptional<z.ZodString>;
|
|
14569
|
+
}, "strip", z.ZodTypeAny, {
|
|
14570
|
+
capabilities?: string[];
|
|
14571
|
+
domain?: string;
|
|
14572
|
+
artifactType?: "skill" | "plugin";
|
|
14573
|
+
artifactId?: string;
|
|
14574
|
+
artifactName?: string;
|
|
14575
|
+
artifactSlug?: string;
|
|
14576
|
+
publisher?: string;
|
|
14577
|
+
harness?: string;
|
|
14578
|
+
artifactHash?: string;
|
|
14579
|
+
launchSummary?: string;
|
|
14580
|
+
workspacePath?: string;
|
|
14581
|
+
}, {
|
|
14582
|
+
capabilities?: string[];
|
|
14583
|
+
domain?: string;
|
|
14584
|
+
artifactType?: "skill" | "plugin";
|
|
14585
|
+
artifactId?: string;
|
|
14586
|
+
artifactName?: string;
|
|
14587
|
+
artifactSlug?: string;
|
|
14588
|
+
publisher?: string;
|
|
14589
|
+
harness?: string;
|
|
14590
|
+
artifactHash?: string;
|
|
14591
|
+
launchSummary?: string;
|
|
14592
|
+
workspacePath?: string;
|
|
14593
|
+
}>;
|
|
14594
|
+
declare const guardPreflightVerdictResponseSchema: z.ZodObject<{
|
|
14595
|
+
generatedAt: z.ZodString;
|
|
14596
|
+
principal: z.ZodObject<{
|
|
14597
|
+
signedIn: z.ZodBoolean;
|
|
14598
|
+
principalType: z.ZodDefault<z.ZodEnum<["user", "service"]>>;
|
|
14599
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
14600
|
+
email: z.ZodOptional<z.ZodString>;
|
|
14601
|
+
accountId: z.ZodOptional<z.ZodString>;
|
|
14602
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
14603
|
+
serviceId: z.ZodOptional<z.ZodString>;
|
|
14604
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
14605
|
+
serviceLabel: z.ZodOptional<z.ZodString>;
|
|
14606
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
14607
|
+
}, "strip", z.ZodTypeAny, {
|
|
14608
|
+
accountId?: string;
|
|
14609
|
+
userId?: string;
|
|
14610
|
+
email?: string;
|
|
14611
|
+
signedIn?: boolean;
|
|
14612
|
+
principalType?: "service" | "user";
|
|
14613
|
+
stripeCustomerId?: string;
|
|
14614
|
+
serviceId?: string;
|
|
14615
|
+
workspaceId?: string;
|
|
14616
|
+
serviceLabel?: string;
|
|
14617
|
+
roles?: string[];
|
|
12169
14618
|
}, {
|
|
12170
|
-
|
|
12171
|
-
|
|
12172
|
-
|
|
14619
|
+
accountId?: string;
|
|
14620
|
+
userId?: string;
|
|
14621
|
+
email?: string;
|
|
14622
|
+
signedIn?: boolean;
|
|
14623
|
+
principalType?: "service" | "user";
|
|
14624
|
+
stripeCustomerId?: string;
|
|
14625
|
+
serviceId?: string;
|
|
14626
|
+
workspaceId?: string;
|
|
14627
|
+
serviceLabel?: string;
|
|
14628
|
+
roles?: string[];
|
|
12173
14629
|
}>;
|
|
12174
|
-
|
|
14630
|
+
decision: z.ZodEnum<["allow", "review", "block"]>;
|
|
14631
|
+
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
14632
|
+
rationale: z.ZodString;
|
|
14633
|
+
category: z.ZodOptional<z.ZodEnum<["exception", "team-policy", "watchlist", "trust", "policy"]>>;
|
|
14634
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
14635
|
+
freshnessTimestamp: z.ZodOptional<z.ZodString>;
|
|
14636
|
+
evidenceSources: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14637
|
+
scope: z.ZodEnum<["artifact", "publisher", "domain", "policy"]>;
|
|
14638
|
+
matchedEvidence: z.ZodArray<z.ZodObject<{
|
|
14639
|
+
category: z.ZodEnum<["policy", "trust", "watchlist", "team-policy", "exception"]>;
|
|
14640
|
+
source: z.ZodString;
|
|
14641
|
+
detail: z.ZodString;
|
|
14642
|
+
}, "strip", z.ZodTypeAny, {
|
|
14643
|
+
source?: string;
|
|
14644
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14645
|
+
detail?: string;
|
|
14646
|
+
}, {
|
|
14647
|
+
source?: string;
|
|
14648
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14649
|
+
detail?: string;
|
|
14650
|
+
}>, "many">;
|
|
14651
|
+
matchedException: z.ZodNullable<z.ZodObject<{
|
|
14652
|
+
exceptionId: z.ZodString;
|
|
14653
|
+
scope: z.ZodEnum<["artifact", "publisher", "harness", "global"]>;
|
|
14654
|
+
harness: z.ZodNullable<z.ZodString>;
|
|
14655
|
+
artifactId: z.ZodNullable<z.ZodString>;
|
|
14656
|
+
publisher: z.ZodNullable<z.ZodString>;
|
|
14657
|
+
reason: z.ZodString;
|
|
14658
|
+
owner: z.ZodString;
|
|
14659
|
+
source: z.ZodEnum<["manual", "team-policy"]>;
|
|
14660
|
+
expiresAt: z.ZodString;
|
|
14661
|
+
createdAt: z.ZodString;
|
|
14662
|
+
updatedAt: z.ZodString;
|
|
14663
|
+
}, "strip", z.ZodTypeAny, {
|
|
14664
|
+
reason?: string;
|
|
14665
|
+
owner?: string;
|
|
14666
|
+
createdAt?: string;
|
|
14667
|
+
updatedAt?: string;
|
|
14668
|
+
expiresAt?: string;
|
|
14669
|
+
artifactId?: string;
|
|
14670
|
+
publisher?: string;
|
|
14671
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14672
|
+
source?: "manual" | "team-policy";
|
|
14673
|
+
harness?: string;
|
|
14674
|
+
exceptionId?: string;
|
|
14675
|
+
}, {
|
|
14676
|
+
reason?: string;
|
|
14677
|
+
owner?: string;
|
|
14678
|
+
createdAt?: string;
|
|
14679
|
+
updatedAt?: string;
|
|
14680
|
+
expiresAt?: string;
|
|
14681
|
+
artifactId?: string;
|
|
14682
|
+
publisher?: string;
|
|
14683
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14684
|
+
source?: "manual" | "team-policy";
|
|
14685
|
+
harness?: string;
|
|
14686
|
+
exceptionId?: string;
|
|
14687
|
+
}>>;
|
|
14688
|
+
trustMatch: z.ZodNullable<z.ZodObject<{
|
|
12175
14689
|
artifactId: z.ZodString;
|
|
12176
14690
|
artifactName: z.ZodString;
|
|
12177
14691
|
artifactType: z.ZodEnum<["skill", "plugin"]>;
|
|
@@ -12185,171 +14699,261 @@ declare const guardTrustResolveResponseSchema: z.ZodObject<{
|
|
|
12185
14699
|
}, "strip", z.ZodTypeAny, {
|
|
12186
14700
|
recommendation?: "monitor" | "review" | "block";
|
|
12187
14701
|
trustScore?: number;
|
|
12188
|
-
artifactId?: string;
|
|
12189
|
-
artifactName?: string;
|
|
12190
14702
|
artifactType?: "skill" | "plugin";
|
|
12191
|
-
artifactSlug?: string;
|
|
12192
|
-
verified?: boolean;
|
|
12193
|
-
safetyScore?: number;
|
|
12194
14703
|
href?: string;
|
|
12195
14704
|
ecosystem?: string;
|
|
14705
|
+
safetyScore?: number;
|
|
14706
|
+
verified?: boolean;
|
|
14707
|
+
artifactId?: string;
|
|
14708
|
+
artifactName?: string;
|
|
14709
|
+
artifactSlug?: string;
|
|
12196
14710
|
}, {
|
|
12197
14711
|
recommendation?: "monitor" | "review" | "block";
|
|
12198
14712
|
trustScore?: number;
|
|
12199
|
-
artifactId?: string;
|
|
12200
|
-
artifactName?: string;
|
|
12201
14713
|
artifactType?: "skill" | "plugin";
|
|
12202
|
-
artifactSlug?: string;
|
|
12203
|
-
verified?: boolean;
|
|
12204
|
-
safetyScore?: number;
|
|
12205
14714
|
href?: string;
|
|
12206
14715
|
ecosystem?: string;
|
|
12207
|
-
|
|
14716
|
+
safetyScore?: number;
|
|
14717
|
+
verified?: boolean;
|
|
14718
|
+
artifactId?: string;
|
|
14719
|
+
artifactName?: string;
|
|
14720
|
+
artifactSlug?: string;
|
|
14721
|
+
}>>;
|
|
12208
14722
|
}, "strip", z.ZodTypeAny, {
|
|
12209
|
-
|
|
14723
|
+
confidence?: number;
|
|
14724
|
+
recommendation?: "monitor" | "review" | "block";
|
|
14725
|
+
principal?: {
|
|
14726
|
+
accountId?: string;
|
|
14727
|
+
userId?: string;
|
|
14728
|
+
email?: string;
|
|
14729
|
+
signedIn?: boolean;
|
|
14730
|
+
principalType?: "service" | "user";
|
|
14731
|
+
stripeCustomerId?: string;
|
|
14732
|
+
serviceId?: string;
|
|
14733
|
+
workspaceId?: string;
|
|
14734
|
+
serviceLabel?: string;
|
|
14735
|
+
roles?: string[];
|
|
14736
|
+
};
|
|
14737
|
+
generatedAt?: string;
|
|
14738
|
+
scope?: "domain" | "artifact" | "publisher" | "policy";
|
|
14739
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14740
|
+
decision?: "review" | "block" | "allow";
|
|
14741
|
+
rationale?: string;
|
|
14742
|
+
freshnessTimestamp?: string;
|
|
14743
|
+
evidenceSources?: string[];
|
|
14744
|
+
matchedEvidence?: {
|
|
14745
|
+
source?: string;
|
|
14746
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14747
|
+
detail?: string;
|
|
14748
|
+
}[];
|
|
14749
|
+
matchedException?: {
|
|
14750
|
+
reason?: string;
|
|
14751
|
+
owner?: string;
|
|
14752
|
+
createdAt?: string;
|
|
14753
|
+
updatedAt?: string;
|
|
14754
|
+
expiresAt?: string;
|
|
14755
|
+
artifactId?: string;
|
|
14756
|
+
publisher?: string;
|
|
14757
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14758
|
+
source?: "manual" | "team-policy";
|
|
14759
|
+
harness?: string;
|
|
14760
|
+
exceptionId?: string;
|
|
14761
|
+
};
|
|
14762
|
+
trustMatch?: {
|
|
12210
14763
|
recommendation?: "monitor" | "review" | "block";
|
|
12211
14764
|
trustScore?: number;
|
|
12212
|
-
artifactId?: string;
|
|
12213
|
-
artifactName?: string;
|
|
12214
14765
|
artifactType?: "skill" | "plugin";
|
|
12215
|
-
artifactSlug?: string;
|
|
12216
|
-
verified?: boolean;
|
|
12217
|
-
safetyScore?: number;
|
|
12218
14766
|
href?: string;
|
|
12219
14767
|
ecosystem?: string;
|
|
12220
|
-
|
|
12221
|
-
|
|
12222
|
-
|
|
12223
|
-
|
|
12224
|
-
|
|
14768
|
+
safetyScore?: number;
|
|
14769
|
+
verified?: boolean;
|
|
14770
|
+
artifactId?: string;
|
|
14771
|
+
artifactName?: string;
|
|
14772
|
+
artifactSlug?: string;
|
|
12225
14773
|
};
|
|
12226
|
-
generatedAt?: string;
|
|
12227
14774
|
}, {
|
|
12228
|
-
|
|
14775
|
+
confidence?: number;
|
|
14776
|
+
recommendation?: "monitor" | "review" | "block";
|
|
14777
|
+
principal?: {
|
|
14778
|
+
accountId?: string;
|
|
14779
|
+
userId?: string;
|
|
14780
|
+
email?: string;
|
|
14781
|
+
signedIn?: boolean;
|
|
14782
|
+
principalType?: "service" | "user";
|
|
14783
|
+
stripeCustomerId?: string;
|
|
14784
|
+
serviceId?: string;
|
|
14785
|
+
workspaceId?: string;
|
|
14786
|
+
serviceLabel?: string;
|
|
14787
|
+
roles?: string[];
|
|
14788
|
+
};
|
|
14789
|
+
generatedAt?: string;
|
|
14790
|
+
scope?: "domain" | "artifact" | "publisher" | "policy";
|
|
14791
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14792
|
+
decision?: "review" | "block" | "allow";
|
|
14793
|
+
rationale?: string;
|
|
14794
|
+
freshnessTimestamp?: string;
|
|
14795
|
+
evidenceSources?: string[];
|
|
14796
|
+
matchedEvidence?: {
|
|
14797
|
+
source?: string;
|
|
14798
|
+
category?: "policy" | "team-policy" | "watchlist" | "trust" | "exception";
|
|
14799
|
+
detail?: string;
|
|
14800
|
+
}[];
|
|
14801
|
+
matchedException?: {
|
|
14802
|
+
reason?: string;
|
|
14803
|
+
owner?: string;
|
|
14804
|
+
createdAt?: string;
|
|
14805
|
+
updatedAt?: string;
|
|
14806
|
+
expiresAt?: string;
|
|
14807
|
+
artifactId?: string;
|
|
14808
|
+
publisher?: string;
|
|
14809
|
+
scope?: "artifact" | "publisher" | "harness" | "global";
|
|
14810
|
+
source?: "manual" | "team-policy";
|
|
14811
|
+
harness?: string;
|
|
14812
|
+
exceptionId?: string;
|
|
14813
|
+
};
|
|
14814
|
+
trustMatch?: {
|
|
12229
14815
|
recommendation?: "monitor" | "review" | "block";
|
|
12230
14816
|
trustScore?: number;
|
|
12231
|
-
artifactId?: string;
|
|
12232
|
-
artifactName?: string;
|
|
12233
14817
|
artifactType?: "skill" | "plugin";
|
|
12234
|
-
artifactSlug?: string;
|
|
12235
|
-
verified?: boolean;
|
|
12236
|
-
safetyScore?: number;
|
|
12237
14818
|
href?: string;
|
|
12238
14819
|
ecosystem?: string;
|
|
12239
|
-
|
|
12240
|
-
|
|
12241
|
-
|
|
12242
|
-
|
|
12243
|
-
|
|
14820
|
+
safetyScore?: number;
|
|
14821
|
+
verified?: boolean;
|
|
14822
|
+
artifactId?: string;
|
|
14823
|
+
artifactName?: string;
|
|
14824
|
+
artifactSlug?: string;
|
|
12244
14825
|
};
|
|
12245
|
-
generatedAt?: string;
|
|
12246
14826
|
}>;
|
|
12247
|
-
declare const
|
|
12248
|
-
|
|
12249
|
-
|
|
12250
|
-
|
|
12251
|
-
|
|
12252
|
-
|
|
12253
|
-
|
|
12254
|
-
|
|
12255
|
-
|
|
14827
|
+
declare const guardTeamPolicyAuditItemSchema: z.ZodObject<{
|
|
14828
|
+
changedAt: z.ZodString;
|
|
14829
|
+
actor: z.ZodString;
|
|
14830
|
+
change: z.ZodEnum<["created", "updated"]>;
|
|
14831
|
+
summary: z.ZodString;
|
|
14832
|
+
}, "strip", z.ZodTypeAny, {
|
|
14833
|
+
summary?: string;
|
|
14834
|
+
changedAt?: string;
|
|
14835
|
+
actor?: string;
|
|
14836
|
+
change?: "created" | "updated";
|
|
14837
|
+
}, {
|
|
14838
|
+
summary?: string;
|
|
14839
|
+
changedAt?: string;
|
|
14840
|
+
actor?: string;
|
|
14841
|
+
change?: "created" | "updated";
|
|
14842
|
+
}>;
|
|
14843
|
+
declare const guardTeamPolicyPackSchema: z.ZodObject<{
|
|
14844
|
+
name: z.ZodString;
|
|
14845
|
+
sharedHarnessDefaults: z.ZodRecord<z.ZodString, z.ZodEnum<["observe", "prompt", "enforce"]>>;
|
|
14846
|
+
allowedPublishers: z.ZodArray<z.ZodString, "many">;
|
|
14847
|
+
blockedPublishers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14848
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14849
|
+
blockedArtifacts: z.ZodArray<z.ZodString, "many">;
|
|
14850
|
+
alertChannel: z.ZodEnum<["email", "slack", "teams", "webhook"]>;
|
|
14851
|
+
updatedAt: z.ZodString;
|
|
14852
|
+
auditTrail: z.ZodArray<z.ZodObject<{
|
|
14853
|
+
changedAt: z.ZodString;
|
|
14854
|
+
actor: z.ZodString;
|
|
14855
|
+
change: z.ZodEnum<["created", "updated"]>;
|
|
14856
|
+
summary: z.ZodString;
|
|
12256
14857
|
}, "strip", z.ZodTypeAny, {
|
|
12257
|
-
|
|
12258
|
-
|
|
12259
|
-
|
|
12260
|
-
|
|
12261
|
-
severity?: "low" | "medium" | "high";
|
|
12262
|
-
publishedAt?: string;
|
|
14858
|
+
summary?: string;
|
|
14859
|
+
changedAt?: string;
|
|
14860
|
+
actor?: string;
|
|
14861
|
+
change?: "created" | "updated";
|
|
12263
14862
|
}, {
|
|
12264
|
-
|
|
12265
|
-
|
|
12266
|
-
|
|
12267
|
-
|
|
12268
|
-
severity?: "low" | "medium" | "high";
|
|
12269
|
-
publishedAt?: string;
|
|
14863
|
+
summary?: string;
|
|
14864
|
+
changedAt?: string;
|
|
14865
|
+
actor?: string;
|
|
14866
|
+
change?: "created" | "updated";
|
|
12270
14867
|
}>, "many">;
|
|
12271
14868
|
}, "strip", z.ZodTypeAny, {
|
|
12272
|
-
|
|
12273
|
-
|
|
12274
|
-
|
|
12275
|
-
|
|
12276
|
-
|
|
12277
|
-
|
|
12278
|
-
|
|
14869
|
+
name?: string;
|
|
14870
|
+
updatedAt?: string;
|
|
14871
|
+
sharedHarnessDefaults?: Record<string, "observe" | "prompt" | "enforce">;
|
|
14872
|
+
allowedPublishers?: string[];
|
|
14873
|
+
blockedPublishers?: string[];
|
|
14874
|
+
blockedDomains?: string[];
|
|
14875
|
+
blockedArtifacts?: string[];
|
|
14876
|
+
alertChannel?: "email" | "slack" | "teams" | "webhook";
|
|
14877
|
+
auditTrail?: {
|
|
14878
|
+
summary?: string;
|
|
14879
|
+
changedAt?: string;
|
|
14880
|
+
actor?: string;
|
|
14881
|
+
change?: "created" | "updated";
|
|
12279
14882
|
}[];
|
|
12280
|
-
generatedAt?: string;
|
|
12281
14883
|
}, {
|
|
12282
|
-
|
|
12283
|
-
|
|
12284
|
-
|
|
12285
|
-
|
|
12286
|
-
|
|
12287
|
-
|
|
12288
|
-
|
|
14884
|
+
name?: string;
|
|
14885
|
+
updatedAt?: string;
|
|
14886
|
+
sharedHarnessDefaults?: Record<string, "observe" | "prompt" | "enforce">;
|
|
14887
|
+
allowedPublishers?: string[];
|
|
14888
|
+
blockedPublishers?: string[];
|
|
14889
|
+
blockedDomains?: string[];
|
|
14890
|
+
blockedArtifacts?: string[];
|
|
14891
|
+
alertChannel?: "email" | "slack" | "teams" | "webhook";
|
|
14892
|
+
auditTrail?: {
|
|
14893
|
+
summary?: string;
|
|
14894
|
+
changedAt?: string;
|
|
14895
|
+
actor?: string;
|
|
14896
|
+
change?: "created" | "updated";
|
|
12289
14897
|
}[];
|
|
12290
|
-
generatedAt?: string;
|
|
12291
14898
|
}>;
|
|
12292
|
-
declare const
|
|
12293
|
-
receiptId: z.ZodString;
|
|
12294
|
-
capturedAt: z.ZodString;
|
|
12295
|
-
harness: z.ZodString;
|
|
14899
|
+
declare const guardDeviceSchema: z.ZodObject<{
|
|
12296
14900
|
deviceId: z.ZodString;
|
|
12297
14901
|
deviceName: z.ZodString;
|
|
12298
|
-
|
|
12299
|
-
|
|
12300
|
-
|
|
12301
|
-
artifactSlug: z.ZodString;
|
|
12302
|
-
artifactHash: z.ZodString;
|
|
12303
|
-
policyDecision: z.ZodEnum<["allow", "warn", "block", "review", "require-reapproval", "sandbox-required"]>;
|
|
12304
|
-
recommendation: z.ZodEnum<["monitor", "review", "block"]>;
|
|
12305
|
-
changedSinceLastApproval: z.ZodBoolean;
|
|
12306
|
-
publisher: z.ZodOptional<z.ZodString>;
|
|
12307
|
-
capabilities: z.ZodArray<z.ZodString, "many">;
|
|
12308
|
-
summary: z.ZodString;
|
|
14902
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
14903
|
+
receiptCount: z.ZodNumber;
|
|
14904
|
+
lastSeenAt: z.ZodString;
|
|
12309
14905
|
}, "strip", z.ZodTypeAny, {
|
|
12310
|
-
capabilities?: string[];
|
|
12311
|
-
summary?: string;
|
|
12312
|
-
recommendation?: "monitor" | "review" | "block";
|
|
12313
|
-
artifactId?: string;
|
|
12314
|
-
artifactName?: string;
|
|
12315
|
-
artifactType?: "skill" | "plugin";
|
|
12316
|
-
artifactSlug?: string;
|
|
12317
|
-
receiptId?: string;
|
|
12318
|
-
capturedAt?: string;
|
|
12319
|
-
harness?: string;
|
|
12320
14906
|
deviceId?: string;
|
|
12321
14907
|
deviceName?: string;
|
|
12322
|
-
|
|
12323
|
-
|
|
12324
|
-
|
|
12325
|
-
publisher?: string;
|
|
14908
|
+
harnesses?: string[];
|
|
14909
|
+
lastSeenAt?: string;
|
|
14910
|
+
receiptCount?: number;
|
|
12326
14911
|
}, {
|
|
12327
|
-
capabilities?: string[];
|
|
12328
|
-
summary?: string;
|
|
12329
|
-
recommendation?: "monitor" | "review" | "block";
|
|
12330
|
-
artifactId?: string;
|
|
12331
|
-
artifactName?: string;
|
|
12332
|
-
artifactType?: "skill" | "plugin";
|
|
12333
|
-
artifactSlug?: string;
|
|
12334
|
-
receiptId?: string;
|
|
12335
|
-
capturedAt?: string;
|
|
12336
|
-
harness?: string;
|
|
12337
14912
|
deviceId?: string;
|
|
12338
14913
|
deviceName?: string;
|
|
12339
|
-
|
|
12340
|
-
|
|
12341
|
-
|
|
12342
|
-
publisher?: string;
|
|
14914
|
+
harnesses?: string[];
|
|
14915
|
+
lastSeenAt?: string;
|
|
14916
|
+
receiptCount?: number;
|
|
12343
14917
|
}>;
|
|
12344
|
-
declare const
|
|
12345
|
-
|
|
12346
|
-
|
|
14918
|
+
declare const guardDeviceListResponseSchema: z.ZodObject<{
|
|
14919
|
+
generatedAt: z.ZodString;
|
|
14920
|
+
items: z.ZodArray<z.ZodObject<{
|
|
14921
|
+
deviceId: z.ZodString;
|
|
14922
|
+
deviceName: z.ZodString;
|
|
14923
|
+
harnesses: z.ZodArray<z.ZodString, "many">;
|
|
14924
|
+
receiptCount: z.ZodNumber;
|
|
14925
|
+
lastSeenAt: z.ZodString;
|
|
14926
|
+
}, "strip", z.ZodTypeAny, {
|
|
14927
|
+
deviceId?: string;
|
|
14928
|
+
deviceName?: string;
|
|
14929
|
+
harnesses?: string[];
|
|
14930
|
+
lastSeenAt?: string;
|
|
14931
|
+
receiptCount?: number;
|
|
14932
|
+
}, {
|
|
14933
|
+
deviceId?: string;
|
|
14934
|
+
deviceName?: string;
|
|
14935
|
+
harnesses?: string[];
|
|
14936
|
+
lastSeenAt?: string;
|
|
14937
|
+
receiptCount?: number;
|
|
14938
|
+
}>, "many">;
|
|
12347
14939
|
}, "strip", z.ZodTypeAny, {
|
|
12348
|
-
|
|
12349
|
-
|
|
14940
|
+
items?: {
|
|
14941
|
+
deviceId?: string;
|
|
14942
|
+
deviceName?: string;
|
|
14943
|
+
harnesses?: string[];
|
|
14944
|
+
lastSeenAt?: string;
|
|
14945
|
+
receiptCount?: number;
|
|
14946
|
+
}[];
|
|
14947
|
+
generatedAt?: string;
|
|
12350
14948
|
}, {
|
|
12351
|
-
|
|
12352
|
-
|
|
14949
|
+
items?: {
|
|
14950
|
+
deviceId?: string;
|
|
14951
|
+
deviceName?: string;
|
|
14952
|
+
harnesses?: string[];
|
|
14953
|
+
lastSeenAt?: string;
|
|
14954
|
+
receiptCount?: number;
|
|
14955
|
+
}[];
|
|
14956
|
+
generatedAt?: string;
|
|
12353
14957
|
}>;
|
|
12354
14958
|
declare const hbarPurchaseIntentResponseSchema: z.ZodObject<{
|
|
12355
14959
|
transaction: z.ZodString;
|
|
@@ -12494,45 +15098,45 @@ declare const x402MinimumsResponseSchema: z.ZodObject<{
|
|
|
12494
15098
|
}, "strip", z.ZodTypeAny, {
|
|
12495
15099
|
network?: string;
|
|
12496
15100
|
gasLimit?: number;
|
|
15101
|
+
source?: string;
|
|
12497
15102
|
gasPriceWei?: string;
|
|
12498
15103
|
gasUsd?: number;
|
|
12499
15104
|
minUsd?: number;
|
|
12500
15105
|
ethUsd?: number;
|
|
12501
15106
|
fetchedAt?: string;
|
|
12502
|
-
source?: string;
|
|
12503
15107
|
}, {
|
|
12504
15108
|
network?: string;
|
|
12505
15109
|
gasLimit?: number;
|
|
15110
|
+
source?: string;
|
|
12506
15111
|
gasPriceWei?: string;
|
|
12507
15112
|
gasUsd?: number;
|
|
12508
15113
|
minUsd?: number;
|
|
12509
15114
|
ethUsd?: number;
|
|
12510
15115
|
fetchedAt?: string;
|
|
12511
|
-
source?: string;
|
|
12512
15116
|
}>>>;
|
|
12513
15117
|
creditUnitUsd: z.ZodOptional<z.ZodNumber>;
|
|
12514
15118
|
}, "strip", z.ZodTypeAny, {
|
|
12515
15119
|
minimums?: Record<string, {
|
|
12516
15120
|
network?: string;
|
|
12517
15121
|
gasLimit?: number;
|
|
15122
|
+
source?: string;
|
|
12518
15123
|
gasPriceWei?: string;
|
|
12519
15124
|
gasUsd?: number;
|
|
12520
15125
|
minUsd?: number;
|
|
12521
15126
|
ethUsd?: number;
|
|
12522
15127
|
fetchedAt?: string;
|
|
12523
|
-
source?: string;
|
|
12524
15128
|
}>;
|
|
12525
15129
|
creditUnitUsd?: number;
|
|
12526
15130
|
}, {
|
|
12527
15131
|
minimums?: Record<string, {
|
|
12528
15132
|
network?: string;
|
|
12529
15133
|
gasLimit?: number;
|
|
15134
|
+
source?: string;
|
|
12530
15135
|
gasPriceWei?: string;
|
|
12531
15136
|
gasUsd?: number;
|
|
12532
15137
|
minUsd?: number;
|
|
12533
15138
|
ethUsd?: number;
|
|
12534
15139
|
fetchedAt?: string;
|
|
12535
|
-
source?: string;
|
|
12536
15140
|
}>;
|
|
12537
15141
|
creditUnitUsd?: number;
|
|
12538
15142
|
}>;
|
|
@@ -15827,22 +18431,22 @@ declare const skillDeprecationsResponseSchema: z.ZodObject<{
|
|
|
15827
18431
|
declare const skillSecurityBreakdownResponseSchema: z.ZodObject<{
|
|
15828
18432
|
jobId: z.ZodString;
|
|
15829
18433
|
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15830
|
-
findings: z.ZodOptional<z.ZodArray<z.
|
|
15831
|
-
summary: z.ZodOptional<z.
|
|
18434
|
+
findings: z.ZodOptional<z.ZodArray<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>, "many">>;
|
|
18435
|
+
summary: z.ZodOptional<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>;
|
|
15832
18436
|
generatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15833
18437
|
scannerVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15834
18438
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15835
18439
|
jobId: z.ZodString;
|
|
15836
18440
|
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15837
|
-
findings: z.ZodOptional<z.ZodArray<z.
|
|
15838
|
-
summary: z.ZodOptional<z.
|
|
18441
|
+
findings: z.ZodOptional<z.ZodArray<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>, "many">>;
|
|
18442
|
+
summary: z.ZodOptional<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>;
|
|
15839
18443
|
generatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15840
18444
|
scannerVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15841
18445
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15842
18446
|
jobId: z.ZodString;
|
|
15843
18447
|
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15844
|
-
findings: z.ZodOptional<z.ZodArray<z.
|
|
15845
|
-
summary: z.ZodOptional<z.
|
|
18448
|
+
findings: z.ZodOptional<z.ZodArray<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>, "many">>;
|
|
18449
|
+
summary: z.ZodOptional<z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>;
|
|
15846
18450
|
generatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15847
18451
|
scannerVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15848
18452
|
}, z.ZodTypeAny, "passthrough">>;
|
|
@@ -35204,6 +37808,11 @@ type GuardEntitlements = z.infer<typeof guardEntitlementsSchema>;
|
|
|
35204
37808
|
type GuardBucketBalance = z.infer<typeof guardBucketBalanceSchema>;
|
|
35205
37809
|
type GuardSessionResponse = z.infer<typeof guardSessionResponseSchema>;
|
|
35206
37810
|
type GuardBalanceResponse = z.infer<typeof guardBalanceResponseSchema>;
|
|
37811
|
+
type GuardFeedItem = z.infer<typeof guardFeedItemSchema>;
|
|
37812
|
+
type GuardFeedSummary = z.infer<typeof guardFeedSummarySchema>;
|
|
37813
|
+
type GuardFeedResponse = z.infer<typeof guardFeedResponseSchema>;
|
|
37814
|
+
type GuardOverviewResponse = z.infer<typeof guardOverviewResponseSchema>;
|
|
37815
|
+
type GuardPolicy = z.infer<typeof guardPolicySchema>;
|
|
35207
37816
|
type GuardTrustMatch = z.infer<typeof guardTrustMatchSchema>;
|
|
35208
37817
|
type GuardTrustByHashResponse = z.infer<typeof guardTrustByHashResponseSchema>;
|
|
35209
37818
|
interface GuardTrustResolveQuery {
|
|
@@ -35216,8 +37825,89 @@ type GuardRevocationResponse = z.infer<typeof guardRevocationResponseSchema>;
|
|
|
35216
37825
|
type GuardReceipt = z.infer<typeof guardReceiptSchema>;
|
|
35217
37826
|
interface GuardReceiptSyncPayload {
|
|
35218
37827
|
receipts: GuardReceipt[];
|
|
37828
|
+
inventory?: GuardInventoryArtifact[];
|
|
35219
37829
|
}
|
|
35220
37830
|
type GuardReceiptSyncResponse = z.infer<typeof guardReceiptSyncResponseSchema>;
|
|
37831
|
+
type GuardHistoryArtifact = z.infer<typeof guardHistoryArtifactSchema>;
|
|
37832
|
+
type GuardReceiptHistoryResponse = z.infer<typeof guardReceiptHistoryResponseSchema>;
|
|
37833
|
+
type GuardInventoryArtifact = z.infer<typeof guardInventoryArtifactSchema>;
|
|
37834
|
+
type GuardInventoryResponse = z.infer<typeof guardInventoryResponseSchema>;
|
|
37835
|
+
type GuardInventoryDiffEntry = z.infer<typeof guardInventoryDiffEntrySchema>;
|
|
37836
|
+
type GuardInventoryDiffResponse = z.infer<typeof guardInventoryDiffResponseSchema>;
|
|
37837
|
+
type GuardAbomSummary = z.infer<typeof guardAbomSummarySchema>;
|
|
37838
|
+
type GuardAbomResponse = z.infer<typeof guardAbomResponseSchema>;
|
|
37839
|
+
type GuardTimelineEvent = z.infer<typeof guardTimelineEventSchema>;
|
|
37840
|
+
type GuardArtifactTimelineResponse = z.infer<typeof guardArtifactTimelineResponseSchema>;
|
|
37841
|
+
type GuardReceiptExportSummary = z.infer<typeof guardReceiptExportSummarySchema>;
|
|
37842
|
+
type GuardExportSignature = z.infer<typeof guardExportSignatureSchema>;
|
|
37843
|
+
type GuardReceiptExportResponse = z.infer<typeof guardReceiptExportResponseSchema>;
|
|
37844
|
+
type GuardAlertPreferences = z.infer<typeof guardAlertPreferencesSchema>;
|
|
37845
|
+
interface GuardAlertPreferencesUpdate {
|
|
37846
|
+
emailEnabled?: boolean;
|
|
37847
|
+
digestMode?: GuardAlertPreferences['digestMode'];
|
|
37848
|
+
watchlistEnabled?: boolean;
|
|
37849
|
+
advisoriesEnabled?: boolean;
|
|
37850
|
+
repeatedWarningsEnabled?: boolean;
|
|
37851
|
+
teamAlertsEnabled?: boolean;
|
|
37852
|
+
}
|
|
37853
|
+
type GuardWatchlistItem = z.infer<typeof guardWatchlistItemSchema>;
|
|
37854
|
+
type GuardWatchlistResponse = z.infer<typeof guardWatchlistResponseSchema>;
|
|
37855
|
+
type GuardWatchlistLookupResponse = z.infer<typeof guardWatchlistLookupResponseSchema>;
|
|
37856
|
+
type GuardPainSignal = z.infer<typeof guardPainSignalSchema>;
|
|
37857
|
+
type GuardPainSignalAggregate = z.infer<typeof guardPainSignalAggregateSchema>;
|
|
37858
|
+
type GuardPainSignalListResponse = z.infer<typeof guardPainSignalListResponseSchema>;
|
|
37859
|
+
type GuardPainSignalAggregateResponse = z.infer<typeof guardPainSignalAggregateResponseSchema>;
|
|
37860
|
+
type GuardPreflightEvidence = z.infer<typeof guardPreflightEvidenceSchema>;
|
|
37861
|
+
type GuardPreflightRequest = z.infer<typeof guardPreflightRequestSchema>;
|
|
37862
|
+
type GuardPreflightVerdictResponse = z.infer<typeof guardPreflightVerdictResponseSchema>;
|
|
37863
|
+
interface GuardPainSignalIngestItem {
|
|
37864
|
+
signalId: string;
|
|
37865
|
+
signalName: string;
|
|
37866
|
+
artifactId: string;
|
|
37867
|
+
artifactName: string;
|
|
37868
|
+
artifactType: GuardInventoryArtifact['artifactType'];
|
|
37869
|
+
harness: string;
|
|
37870
|
+
latestSummary: string;
|
|
37871
|
+
occurredAt: string;
|
|
37872
|
+
count?: number;
|
|
37873
|
+
source?: 'scanner';
|
|
37874
|
+
publisher?: string;
|
|
37875
|
+
}
|
|
37876
|
+
interface GuardWatchlistUpsert {
|
|
37877
|
+
artifactId: string;
|
|
37878
|
+
artifactName: string;
|
|
37879
|
+
artifactType: GuardInventoryArtifact['artifactType'];
|
|
37880
|
+
artifactSlug: string;
|
|
37881
|
+
reason: string;
|
|
37882
|
+
source: GuardWatchlistItem['source'];
|
|
37883
|
+
}
|
|
37884
|
+
type GuardExceptionScope = z.infer<typeof guardExceptionItemSchema>['scope'];
|
|
37885
|
+
type GuardExceptionSource = z.infer<typeof guardExceptionItemSchema>['source'];
|
|
37886
|
+
type GuardExceptionItem = z.infer<typeof guardExceptionItemSchema>;
|
|
37887
|
+
type GuardExceptionListResponse = z.infer<typeof guardExceptionListResponseSchema>;
|
|
37888
|
+
type GuardTeamPolicyAuditItem = z.infer<typeof guardTeamPolicyAuditItemSchema>;
|
|
37889
|
+
type GuardTeamPolicyPack = z.infer<typeof guardTeamPolicyPackSchema>;
|
|
37890
|
+
interface GuardTeamPolicyPackUpdate {
|
|
37891
|
+
name?: string;
|
|
37892
|
+
sharedHarnessDefaults?: GuardTeamPolicyPack['sharedHarnessDefaults'];
|
|
37893
|
+
allowedPublishers?: string[];
|
|
37894
|
+
blockedPublishers?: string[];
|
|
37895
|
+
blockedDomains?: string[];
|
|
37896
|
+
blockedArtifacts?: string[];
|
|
37897
|
+
alertChannel?: GuardTeamPolicyPack['alertChannel'];
|
|
37898
|
+
}
|
|
37899
|
+
type GuardDevice = z.infer<typeof guardDeviceSchema>;
|
|
37900
|
+
type GuardDeviceListResponse = z.infer<typeof guardDeviceListResponseSchema>;
|
|
37901
|
+
interface GuardExceptionUpsert {
|
|
37902
|
+
scope: GuardExceptionScope;
|
|
37903
|
+
harness?: string | null;
|
|
37904
|
+
artifactId?: string | null;
|
|
37905
|
+
publisher?: string | null;
|
|
37906
|
+
reason: string;
|
|
37907
|
+
owner: string;
|
|
37908
|
+
source: GuardExceptionSource;
|
|
37909
|
+
expiresAt: string;
|
|
37910
|
+
}
|
|
35221
37911
|
interface RegisterAgentOptions {
|
|
35222
37912
|
autoTopUp?: AutoTopUpOptions;
|
|
35223
37913
|
}
|
|
@@ -36017,10 +38707,41 @@ declare class RegistryBrokerClient {
|
|
|
36017
38707
|
getGuardSession(): Promise<GuardSessionResponse>;
|
|
36018
38708
|
getGuardEntitlements(): Promise<GuardSessionResponse>;
|
|
36019
38709
|
getGuardBillingBalance(): Promise<GuardBalanceResponse>;
|
|
38710
|
+
getGuardFeed(limit?: number): Promise<GuardFeedResponse>;
|
|
38711
|
+
getGuardOverview(): Promise<GuardOverviewResponse>;
|
|
36020
38712
|
getGuardTrustByHash(sha256: string): Promise<GuardTrustByHashResponse>;
|
|
36021
38713
|
resolveGuardTrust(query: GuardTrustResolveQuery): Promise<GuardTrustResolveResponse>;
|
|
36022
38714
|
getGuardRevocations(): Promise<GuardRevocationResponse>;
|
|
38715
|
+
fetchGuardAdvisories(): Promise<GuardRevocationResponse>;
|
|
38716
|
+
fetchGuardPolicy(): Promise<GuardPolicy>;
|
|
38717
|
+
getGuardInventory(): Promise<GuardInventoryResponse>;
|
|
38718
|
+
getGuardReceiptHistory(): Promise<GuardReceiptHistoryResponse>;
|
|
38719
|
+
getGuardArtifactTimeline(artifactId: string): Promise<GuardArtifactTimelineResponse>;
|
|
38720
|
+
getGuardInventoryDiff(): Promise<GuardInventoryDiffResponse>;
|
|
38721
|
+
exportGuardAbom(): Promise<GuardAbomResponse>;
|
|
38722
|
+
exportGuardArtifactAbom(artifactId: string): Promise<GuardAbomResponse>;
|
|
38723
|
+
exportGuardReceipts(): Promise<GuardReceiptExportResponse>;
|
|
38724
|
+
getGuardDevices(): Promise<GuardDeviceListResponse>;
|
|
38725
|
+
getGuardAlertPreferences(): Promise<GuardAlertPreferences>;
|
|
38726
|
+
updateGuardAlertPreferences(payload: GuardAlertPreferencesUpdate): Promise<GuardAlertPreferences>;
|
|
38727
|
+
getGuardExceptions(): Promise<GuardExceptionListResponse>;
|
|
38728
|
+
getGuardWatchlist(): Promise<GuardWatchlistResponse>;
|
|
38729
|
+
lookupGuardWatchlist(payload: GuardPreflightRequest): Promise<GuardWatchlistLookupResponse>;
|
|
38730
|
+
getGuardPainSignals(): Promise<GuardPainSignalListResponse>;
|
|
38731
|
+
getGuardAggregatedPainSignals(): Promise<GuardPainSignalAggregateResponse>;
|
|
38732
|
+
getGuardPreInstallVerdict(payload: GuardPreflightRequest): Promise<GuardPreflightVerdictResponse>;
|
|
38733
|
+
getGuardPreExecutionVerdict(payload: GuardPreflightRequest): Promise<GuardPreflightVerdictResponse>;
|
|
38734
|
+
addGuardWatchlistItem(payload: GuardWatchlistUpsert): Promise<GuardWatchlistResponse>;
|
|
38735
|
+
removeGuardWatchlistItem(artifactId: string): Promise<GuardWatchlistResponse>;
|
|
38736
|
+
addGuardException(payload: GuardExceptionUpsert): Promise<GuardExceptionListResponse>;
|
|
38737
|
+
requestGuardException(payload: GuardExceptionUpsert): Promise<GuardExceptionListResponse>;
|
|
38738
|
+
removeGuardException(exceptionId: string): Promise<GuardExceptionListResponse>;
|
|
38739
|
+
ingestGuardPainSignals(items: GuardPainSignalIngestItem[]): Promise<GuardPainSignalListResponse>;
|
|
36023
38740
|
syncGuardReceipts(payload: GuardReceiptSyncPayload): Promise<GuardReceiptSyncResponse>;
|
|
38741
|
+
syncGuardInventory(payload: GuardReceiptSyncPayload): Promise<GuardReceiptSyncResponse>;
|
|
38742
|
+
submitGuardReceipts(payload: GuardReceiptSyncPayload): Promise<GuardReceiptSyncResponse>;
|
|
38743
|
+
getGuardTeamPolicyPack(): Promise<GuardTeamPolicyPack>;
|
|
38744
|
+
updateGuardTeamPolicyPack(payload: GuardTeamPolicyPackUpdate): Promise<GuardTeamPolicyPack>;
|
|
36024
38745
|
createHbarPurchaseIntent(payload: HbarPurchaseIntentRequest): Promise<HbarPurchaseIntentResponse>;
|
|
36025
38746
|
purchaseCreditsWithHbar(params: {
|
|
36026
38747
|
accountId: string;
|
|
@@ -36172,4 +38893,4 @@ declare const buildJobStatusMessage: (input: {
|
|
|
36172
38893
|
jobId: number;
|
|
36173
38894
|
}) => string;
|
|
36174
38895
|
|
|
36175
|
-
export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditBalanceResponse, type CreditProviderSummary, type CreditProvidersResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, type GenerateEncryptionKeyPairOptions, type GuardBalanceResponse, type GuardBucketBalance, type GuardEntitlements, type GuardPlanId, type GuardPrincipal, type GuardReceipt, type GuardReceiptSyncPayload, type GuardReceiptSyncResponse, type GuardRevocationResponse, type GuardSessionResponse, type GuardTrustByHashResponse, type GuardTrustMatch, type GuardTrustResolveQuery, type GuardTrustResolveResponse, HOL_CHAT_PROTOCOL_ID, type HbarPurchaseIntentRequest, type HbarPurchaseIntentResponse, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillConversionSignalsResponse, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillQuotePreviewRange, type SkillQuotePreviewRequest, type SkillQuotePreviewResponse, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };
|
|
38896
|
+
export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditBalanceResponse, type CreditProviderSummary, type CreditProvidersResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, type GenerateEncryptionKeyPairOptions, type GuardAbomResponse, type GuardAbomSummary, type GuardAlertPreferences, type GuardAlertPreferencesUpdate, type GuardArtifactTimelineResponse, type GuardBalanceResponse, type GuardBucketBalance, type GuardDevice, type GuardDeviceListResponse, type GuardEntitlements, type GuardExceptionItem, type GuardExceptionListResponse, type GuardExceptionScope, type GuardExceptionSource, type GuardExceptionUpsert, type GuardExportSignature, type GuardFeedItem, type GuardFeedResponse, type GuardFeedSummary, type GuardHistoryArtifact, type GuardInventoryArtifact, type GuardInventoryDiffEntry, type GuardInventoryDiffResponse, type GuardInventoryResponse, type GuardOverviewResponse, type GuardPainSignal, type GuardPainSignalAggregate, type GuardPainSignalAggregateResponse, type GuardPainSignalIngestItem, type GuardPainSignalListResponse, type GuardPlanId, type GuardPolicy, type GuardPreflightEvidence, type GuardPreflightRequest, type GuardPreflightVerdictResponse, type GuardPrincipal, type GuardReceipt, type GuardReceiptExportResponse, type GuardReceiptExportSummary, type GuardReceiptHistoryResponse, type GuardReceiptSyncPayload, type GuardReceiptSyncResponse, type GuardRevocationResponse, type GuardSessionResponse, type GuardTeamPolicyAuditItem, type GuardTeamPolicyPack, type GuardTeamPolicyPackUpdate, type GuardTimelineEvent, type GuardTrustByHashResponse, type GuardTrustMatch, type GuardTrustResolveQuery, type GuardTrustResolveResponse, type GuardWatchlistItem, type GuardWatchlistLookupResponse, type GuardWatchlistResponse, type GuardWatchlistUpsert, HOL_CHAT_PROTOCOL_ID, type HbarPurchaseIntentRequest, type HbarPurchaseIntentResponse, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillConversionSignalsResponse, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillQuotePreviewRange, type SkillQuotePreviewRequest, type SkillQuotePreviewResponse, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };
|