@themoltnet/pi-extension 0.22.4 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -3
- package/dist/index.js +8175 -1503
- package/package.json +6 -4
package/dist/index.d.ts
CHANGED
|
@@ -718,9 +718,8 @@ declare const Task: Type.TObject<{
|
|
|
718
718
|
acceptedAttemptN: Type.TUnion<[Type.TNumber, Type.TNull]>;
|
|
719
719
|
claimCondition: Type.TUnion<[Type.TUnsafe<ClaimCondition>, Type.TNull]>;
|
|
720
720
|
requiredExecutorTrustLevel: Type.TUnion<[Type.TLiteral<"selfDeclared">, Type.TLiteral<"agentSigned">, Type.TLiteral<"releaseVerifiedTool">, Type.TLiteral<"sandboxAttested">]>;
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
model: Type.TString;
|
|
721
|
+
allowedProfiles: Type.TArray<Type.TObject<{
|
|
722
|
+
profileId: Type.TString;
|
|
724
723
|
}>>;
|
|
725
724
|
status: Type.TUnion<[Type.TLiteral<"waiting">, Type.TLiteral<"queued">, Type.TLiteral<"dispatched">, Type.TLiteral<"running">, Type.TLiteral<"completed">, Type.TLiteral<"failed">, Type.TLiteral<"cancelled">, Type.TLiteral<"expired">]>;
|
|
726
725
|
queuedAt: Type.TString;
|