npm package diff
Package: @forge/cli-shared
Versions: 6.6.2-next.5 - 6.6.2-next.6
File: package/out/graphql/graphql-types.d.ts
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -86421,16 +86421,30 @@
export declare type ShepherdAlertSnippet = {
__typename?: 'ShepherdAlertSnippet';
adf?: Maybe<Scalars['JSON']['output']>;
contentId: Scalars['ID']['output'];
+ failureReason?: Maybe<ShepherdAlertSnippetRedactionFailureReason>;
field: Scalars['String']['output'];
redactable: Scalars['Boolean']['output'];
redactedOn?: Maybe<Scalars['DateTime']['output']>;
redactionStatus: ShepherdAlertSnippetRedactionStatus;
snippetTextBlocks?: Maybe<Array<ShepherdAlertSnippetTextBlock>>;
};
+export declare enum ShepherdAlertSnippetRedactionFailureReason {
+ ContainerId = "CONTAINER_ID",
+ ContainerIdFormat = "CONTAINER_ID_FORMAT",
+ EntityId = "ENTITY_ID",
+ HashMismatch = "HASH_MISMATCH",
+ InvalidAdfPointer = "INVALID_ADF_POINTER",
+ InvalidPointer = "INVALID_POINTER",
+ MaxFieldLength = "MAX_FIELD_LENGTH",
+ OverlappingRequestsForContentItem = "OVERLAPPING_REQUESTS_FOR_CONTENT_ITEM",
+ TooManyRequestsPerContentItem = "TOO_MANY_REQUESTS_PER_CONTENT_ITEM",
+ Unknown = "UNKNOWN"
+}
export declare enum ShepherdAlertSnippetRedactionStatus {
Redacted = "REDACTED",
+ RedactedHistoryScanFailed = "REDACTED_HISTORY_SCAN_FAILED",
RedactionFailed = "REDACTION_FAILED",
RedactionPending = "REDACTION_PENDING",
Unredacted = "UNREDACTED"
}