graphlit-client 1.0.20241104001 → 1.0.20241116001
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.
@@ -47,10 +47,14 @@ var AnthropicModels;
|
|
47
47
|
/** Developer-specified model */
|
48
48
|
AnthropicModels["Custom"] = "CUSTOM";
|
49
49
|
})(AnthropicModels || (exports.AnthropicModels = AnthropicModels = {}));
|
50
|
+
/** Defines when a policy shall be executed. */
|
50
51
|
var ApplyPolicy;
|
51
52
|
(function (ApplyPolicy) {
|
53
|
+
/** After the resolver was executed. */
|
52
54
|
ApplyPolicy["AfterResolver"] = "AFTER_RESOLVER";
|
55
|
+
/** Before the resolver was executed. */
|
53
56
|
ApplyPolicy["BeforeResolver"] = "BEFORE_RESOLVER";
|
57
|
+
/** The policy is applied in the validation step before the execution. */
|
54
58
|
ApplyPolicy["Validation"] = "VALIDATION";
|
55
59
|
})(ApplyPolicy || (exports.ApplyPolicy = ApplyPolicy = {}));
|
56
60
|
var AzureDocumentIntelligenceModels;
|