antigravity-auth 1.6.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/README.md +61 -0
- package/dist/antigravity/oauth.d.ts +30 -0
- package/dist/antigravity/oauth.js +170 -0
- package/dist/claude/login.d.ts +7 -0
- package/dist/claude/login.js +480 -0
- package/dist/claude/menu-helpers.d.ts +22 -0
- package/dist/claude/menu-helpers.js +281 -0
- package/dist/claude/proxy-manager.d.ts +11 -0
- package/dist/claude/proxy-manager.js +129 -0
- package/dist/claude/proxy.d.ts +1 -0
- package/dist/claude/proxy.js +733 -0
- package/dist/constants.d.ts +138 -0
- package/dist/constants.js +216 -0
- package/dist/hooks/auto-update-checker/cache.d.ts +2 -0
- package/dist/hooks/auto-update-checker/cache.js +70 -0
- package/dist/hooks/auto-update-checker/checker.d.ts +15 -0
- package/dist/hooks/auto-update-checker/checker.js +233 -0
- package/dist/hooks/auto-update-checker/constants.d.ts +8 -0
- package/dist/hooks/auto-update-checker/constants.js +22 -0
- package/dist/hooks/auto-update-checker/index.d.ts +33 -0
- package/dist/hooks/auto-update-checker/index.js +121 -0
- package/dist/hooks/auto-update-checker/logging.d.ts +2 -0
- package/dist/hooks/auto-update-checker/logging.js +8 -0
- package/dist/hooks/auto-update-checker/types.d.ts +24 -0
- package/dist/hooks/auto-update-checker/types.js +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +5 -0
- package/dist/opencode/hooks/auto-update-checker/cache.d.ts +2 -0
- package/dist/opencode/hooks/auto-update-checker/cache.js +70 -0
- package/dist/opencode/hooks/auto-update-checker/checker.d.ts +15 -0
- package/dist/opencode/hooks/auto-update-checker/checker.js +233 -0
- package/dist/opencode/hooks/auto-update-checker/constants.d.ts +8 -0
- package/dist/opencode/hooks/auto-update-checker/constants.js +22 -0
- package/dist/opencode/hooks/auto-update-checker/index.d.ts +33 -0
- package/dist/opencode/hooks/auto-update-checker/index.js +121 -0
- package/dist/opencode/hooks/auto-update-checker/logging.d.ts +2 -0
- package/dist/opencode/hooks/auto-update-checker/logging.js +8 -0
- package/dist/opencode/hooks/auto-update-checker/types.d.ts +24 -0
- package/dist/opencode/hooks/auto-update-checker/types.js +1 -0
- package/dist/opencode/plugin.d.ts +29 -0
- package/dist/opencode/plugin.js +2954 -0
- package/dist/plugin/accounts.d.ts +173 -0
- package/dist/plugin/accounts.js +966 -0
- package/dist/plugin/auth.d.ts +20 -0
- package/dist/plugin/auth.js +44 -0
- package/dist/plugin/cache/index.d.ts +4 -0
- package/dist/plugin/cache/index.js +4 -0
- package/dist/plugin/cache/signature-cache.d.ts +110 -0
- package/dist/plugin/cache/signature-cache.js +347 -0
- package/dist/plugin/cache.d.ts +43 -0
- package/dist/plugin/cache.js +180 -0
- package/dist/plugin/cli.d.ts +26 -0
- package/dist/plugin/cli.js +126 -0
- package/dist/plugin/config/index.d.ts +15 -0
- package/dist/plugin/config/index.js +15 -0
- package/dist/plugin/config/loader.d.ts +38 -0
- package/dist/plugin/config/loader.js +150 -0
- package/dist/plugin/config/models.d.ts +26 -0
- package/dist/plugin/config/models.js +95 -0
- package/dist/plugin/config/schema.d.ts +144 -0
- package/dist/plugin/config/schema.js +458 -0
- package/dist/plugin/config/updater.d.ts +76 -0
- package/dist/plugin/config/updater.js +205 -0
- package/dist/plugin/core/streaming/index.d.ts +2 -0
- package/dist/plugin/core/streaming/index.js +2 -0
- package/dist/plugin/core/streaming/transformer.d.ts +9 -0
- package/dist/plugin/core/streaming/transformer.js +301 -0
- package/dist/plugin/core/streaming/types.d.ts +28 -0
- package/dist/plugin/core/streaming/types.js +1 -0
- package/dist/plugin/debug.d.ts +93 -0
- package/dist/plugin/debug.js +375 -0
- package/dist/plugin/errors.d.ts +27 -0
- package/dist/plugin/errors.js +41 -0
- package/dist/plugin/fingerprint.d.ts +69 -0
- package/dist/plugin/fingerprint.js +137 -0
- package/dist/plugin/image-saver.d.ts +24 -0
- package/dist/plugin/image-saver.js +78 -0
- package/dist/plugin/logger.d.ts +35 -0
- package/dist/plugin/logger.js +67 -0
- package/dist/plugin/logging-utils.d.ts +22 -0
- package/dist/plugin/logging-utils.js +91 -0
- package/dist/plugin/project.d.ts +32 -0
- package/dist/plugin/project.js +229 -0
- package/dist/plugin/quota.d.ts +34 -0
- package/dist/plugin/quota.js +261 -0
- package/dist/plugin/recovery/constants.d.ts +21 -0
- package/dist/plugin/recovery/constants.js +42 -0
- package/dist/plugin/recovery/index.d.ts +11 -0
- package/dist/plugin/recovery/index.js +11 -0
- package/dist/plugin/recovery/storage.d.ts +23 -0
- package/dist/plugin/recovery/storage.js +340 -0
- package/dist/plugin/recovery/types.d.ts +115 -0
- package/dist/plugin/recovery/types.js +6 -0
- package/dist/plugin/recovery.d.ts +60 -0
- package/dist/plugin/recovery.js +360 -0
- package/dist/plugin/refresh-queue.d.ts +99 -0
- package/dist/plugin/refresh-queue.js +235 -0
- package/dist/plugin/request-helpers.d.ts +281 -0
- package/dist/plugin/request-helpers.js +2200 -0
- package/dist/plugin/request.d.ts +110 -0
- package/dist/plugin/request.js +1489 -0
- package/dist/plugin/rotation.d.ts +182 -0
- package/dist/plugin/rotation.js +364 -0
- package/dist/plugin/search.d.ts +31 -0
- package/dist/plugin/search.js +185 -0
- package/dist/plugin/server.d.ts +22 -0
- package/dist/plugin/server.js +306 -0
- package/dist/plugin/storage.d.ts +136 -0
- package/dist/plugin/storage.js +599 -0
- package/dist/plugin/stores/signature-store.d.ts +4 -0
- package/dist/plugin/stores/signature-store.js +24 -0
- package/dist/plugin/thinking-recovery.d.ts +89 -0
- package/dist/plugin/thinking-recovery.js +289 -0
- package/dist/plugin/token.d.ts +18 -0
- package/dist/plugin/token.js +127 -0
- package/dist/plugin/transform/claude.d.ts +79 -0
- package/dist/plugin/transform/claude.js +256 -0
- package/dist/plugin/transform/cross-model-sanitizer.d.ts +34 -0
- package/dist/plugin/transform/cross-model-sanitizer.js +224 -0
- package/dist/plugin/transform/gemini.d.ts +132 -0
- package/dist/plugin/transform/gemini.js +659 -0
- package/dist/plugin/transform/index.d.ts +14 -0
- package/dist/plugin/transform/index.js +9 -0
- package/dist/plugin/transform/model-resolver.d.ts +98 -0
- package/dist/plugin/transform/model-resolver.js +320 -0
- package/dist/plugin/transform/types.d.ts +110 -0
- package/dist/plugin/transform/types.js +1 -0
- package/dist/plugin/types.d.ts +95 -0
- package/dist/plugin/types.js +1 -0
- package/dist/plugin/ui/ansi.d.ts +31 -0
- package/dist/plugin/ui/ansi.js +45 -0
- package/dist/plugin/ui/auth-menu.d.ts +47 -0
- package/dist/plugin/ui/auth-menu.js +199 -0
- package/dist/plugin/ui/confirm.d.ts +1 -0
- package/dist/plugin/ui/confirm.js +14 -0
- package/dist/plugin/ui/select.d.ts +22 -0
- package/dist/plugin/ui/select.js +243 -0
- package/dist/plugin/version.d.ts +18 -0
- package/dist/plugin/version.js +79 -0
- package/dist/src/antigravity/oauth.d.ts +30 -0
- package/dist/src/antigravity/oauth.js +170 -0
- package/dist/src/constants.d.ts +138 -0
- package/dist/src/constants.js +216 -0
- package/dist/src/hooks/auto-update-checker/cache.d.ts +2 -0
- package/dist/src/hooks/auto-update-checker/cache.js +70 -0
- package/dist/src/hooks/auto-update-checker/checker.d.ts +15 -0
- package/dist/src/hooks/auto-update-checker/checker.js +233 -0
- package/dist/src/hooks/auto-update-checker/constants.d.ts +8 -0
- package/dist/src/hooks/auto-update-checker/constants.js +22 -0
- package/dist/src/hooks/auto-update-checker/index.d.ts +33 -0
- package/dist/src/hooks/auto-update-checker/index.js +121 -0
- package/dist/src/hooks/auto-update-checker/logging.d.ts +2 -0
- package/dist/src/hooks/auto-update-checker/logging.js +8 -0
- package/dist/src/hooks/auto-update-checker/types.d.ts +24 -0
- package/dist/src/hooks/auto-update-checker/types.js +1 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.js +5 -0
- package/dist/src/plugin/accounts.d.ts +173 -0
- package/dist/src/plugin/accounts.js +966 -0
- package/dist/src/plugin/auth.d.ts +20 -0
- package/dist/src/plugin/auth.js +44 -0
- package/dist/src/plugin/cache/index.d.ts +4 -0
- package/dist/src/plugin/cache/index.js +4 -0
- package/dist/src/plugin/cache/signature-cache.d.ts +110 -0
- package/dist/src/plugin/cache/signature-cache.js +347 -0
- package/dist/src/plugin/cache.d.ts +43 -0
- package/dist/src/plugin/cache.js +180 -0
- package/dist/src/plugin/cli.d.ts +26 -0
- package/dist/src/plugin/cli.js +126 -0
- package/dist/src/plugin/config/index.d.ts +15 -0
- package/dist/src/plugin/config/index.js +15 -0
- package/dist/src/plugin/config/loader.d.ts +38 -0
- package/dist/src/plugin/config/loader.js +150 -0
- package/dist/src/plugin/config/models.d.ts +26 -0
- package/dist/src/plugin/config/models.js +95 -0
- package/dist/src/plugin/config/schema.d.ts +144 -0
- package/dist/src/plugin/config/schema.js +458 -0
- package/dist/src/plugin/config/updater.d.ts +76 -0
- package/dist/src/plugin/config/updater.js +205 -0
- package/dist/src/plugin/core/streaming/index.d.ts +2 -0
- package/dist/src/plugin/core/streaming/index.js +2 -0
- package/dist/src/plugin/core/streaming/transformer.d.ts +9 -0
- package/dist/src/plugin/core/streaming/transformer.js +301 -0
- package/dist/src/plugin/core/streaming/types.d.ts +28 -0
- package/dist/src/plugin/core/streaming/types.js +1 -0
- package/dist/src/plugin/debug.d.ts +93 -0
- package/dist/src/plugin/debug.js +375 -0
- package/dist/src/plugin/errors.d.ts +27 -0
- package/dist/src/plugin/errors.js +41 -0
- package/dist/src/plugin/fingerprint.d.ts +69 -0
- package/dist/src/plugin/fingerprint.js +137 -0
- package/dist/src/plugin/image-saver.d.ts +24 -0
- package/dist/src/plugin/image-saver.js +78 -0
- package/dist/src/plugin/logger.d.ts +35 -0
- package/dist/src/plugin/logger.js +67 -0
- package/dist/src/plugin/logging-utils.d.ts +22 -0
- package/dist/src/plugin/logging-utils.js +91 -0
- package/dist/src/plugin/project.d.ts +32 -0
- package/dist/src/plugin/project.js +229 -0
- package/dist/src/plugin/quota.d.ts +34 -0
- package/dist/src/plugin/quota.js +261 -0
- package/dist/src/plugin/recovery/constants.d.ts +21 -0
- package/dist/src/plugin/recovery/constants.js +42 -0
- package/dist/src/plugin/recovery/index.d.ts +11 -0
- package/dist/src/plugin/recovery/index.js +11 -0
- package/dist/src/plugin/recovery/storage.d.ts +23 -0
- package/dist/src/plugin/recovery/storage.js +340 -0
- package/dist/src/plugin/recovery/types.d.ts +115 -0
- package/dist/src/plugin/recovery/types.js +6 -0
- package/dist/src/plugin/recovery.d.ts +60 -0
- package/dist/src/plugin/recovery.js +360 -0
- package/dist/src/plugin/refresh-queue.d.ts +99 -0
- package/dist/src/plugin/refresh-queue.js +235 -0
- package/dist/src/plugin/request-helpers.d.ts +281 -0
- package/dist/src/plugin/request-helpers.js +2200 -0
- package/dist/src/plugin/request.d.ts +110 -0
- package/dist/src/plugin/request.js +1489 -0
- package/dist/src/plugin/rotation.d.ts +182 -0
- package/dist/src/plugin/rotation.js +364 -0
- package/dist/src/plugin/search.d.ts +31 -0
- package/dist/src/plugin/search.js +185 -0
- package/dist/src/plugin/server.d.ts +22 -0
- package/dist/src/plugin/server.js +306 -0
- package/dist/src/plugin/storage.d.ts +136 -0
- package/dist/src/plugin/storage.js +599 -0
- package/dist/src/plugin/stores/signature-store.d.ts +4 -0
- package/dist/src/plugin/stores/signature-store.js +24 -0
- package/dist/src/plugin/thinking-recovery.d.ts +89 -0
- package/dist/src/plugin/thinking-recovery.js +289 -0
- package/dist/src/plugin/token.d.ts +18 -0
- package/dist/src/plugin/token.js +127 -0
- package/dist/src/plugin/transform/claude.d.ts +79 -0
- package/dist/src/plugin/transform/claude.js +256 -0
- package/dist/src/plugin/transform/cross-model-sanitizer.d.ts +34 -0
- package/dist/src/plugin/transform/cross-model-sanitizer.js +224 -0
- package/dist/src/plugin/transform/gemini.d.ts +132 -0
- package/dist/src/plugin/transform/gemini.js +659 -0
- package/dist/src/plugin/transform/index.d.ts +14 -0
- package/dist/src/plugin/transform/index.js +9 -0
- package/dist/src/plugin/transform/model-resolver.d.ts +98 -0
- package/dist/src/plugin/transform/model-resolver.js +320 -0
- package/dist/src/plugin/transform/types.d.ts +110 -0
- package/dist/src/plugin/transform/types.js +1 -0
- package/dist/src/plugin/types.d.ts +95 -0
- package/dist/src/plugin/types.js +1 -0
- package/dist/src/plugin/ui/ansi.d.ts +31 -0
- package/dist/src/plugin/ui/ansi.js +45 -0
- package/dist/src/plugin/ui/auth-menu.d.ts +47 -0
- package/dist/src/plugin/ui/auth-menu.js +199 -0
- package/dist/src/plugin/ui/confirm.d.ts +1 -0
- package/dist/src/plugin/ui/confirm.js +14 -0
- package/dist/src/plugin/ui/select.d.ts +22 -0
- package/dist/src/plugin/ui/select.js +243 -0
- package/dist/src/plugin/version.d.ts +18 -0
- package/dist/src/plugin/version.js +79 -0
- package/package.json +54 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { type HeaderStyle } from "../constants";
|
|
2
|
+
import { createStreamingTransformer, transformSseLine, transformStreamingPayload } from "./core/streaming";
|
|
3
|
+
import { type AntigravityDebugContext } from "./debug";
|
|
4
|
+
import { type Fingerprint } from "./fingerprint";
|
|
5
|
+
import type { GoogleSearchConfig } from "./transform/types";
|
|
6
|
+
declare function buildSignatureSessionKey(sessionId: string, model?: string, conversationKey?: string, projectKey?: string): string;
|
|
7
|
+
declare function hashConversationSeed(seed: string): string;
|
|
8
|
+
declare function extractTextFromContent(content: unknown): string;
|
|
9
|
+
declare function extractConversationSeedFromMessages(messages: any[]): string;
|
|
10
|
+
declare function extractConversationSeedFromContents(contents: any[]): string;
|
|
11
|
+
declare function resolveConversationKey(requestPayload: Record<string, unknown>): string | undefined;
|
|
12
|
+
declare function resolveProjectKey(candidate?: unknown, fallback?: string): string | undefined;
|
|
13
|
+
declare function isGeminiToolUsePart(part: any): boolean;
|
|
14
|
+
declare function isGeminiThinkingPart(part: any): boolean;
|
|
15
|
+
declare function ensureThoughtSignature(part: any, sessionId: string): any;
|
|
16
|
+
declare function hasSignedThinkingPart(part: any, sessionId?: string): boolean;
|
|
17
|
+
declare function ensureThinkingBeforeToolUseInContents(contents: any[], signatureSessionKey: string): any[];
|
|
18
|
+
declare function hasToolUseInContents(contents: any[]): boolean;
|
|
19
|
+
declare function hasSignedThinkingInContents(contents: any[], sessionId?: string): boolean;
|
|
20
|
+
declare function hasToolUseInMessages(messages: any[]): boolean;
|
|
21
|
+
declare function hasSignedThinkingInMessages(messages: any[], sessionId?: string): boolean;
|
|
22
|
+
declare function ensureThinkingBeforeToolUseInMessages(messages: any[], signatureSessionKey: string): any[];
|
|
23
|
+
/**
|
|
24
|
+
* Gets the stable session ID for this plugin instance.
|
|
25
|
+
*/
|
|
26
|
+
export declare function getPluginSessionId(): string;
|
|
27
|
+
declare function generateSyntheticProjectId(): string;
|
|
28
|
+
/**
|
|
29
|
+
* Resolve a fetch() URL from RequestInfo. OpenCode / AI SDK often calls fetch(Request, init)
|
|
30
|
+
* instead of fetch(string, init); we must inspect the URL the same way in both cases.
|
|
31
|
+
*/
|
|
32
|
+
export declare function requestInfoToUrlString(input: RequestInfo): string | null;
|
|
33
|
+
/**
|
|
34
|
+
* Detects requests headed to the Google Generative Language API (or Antigravity / Cloud Code PA)
|
|
35
|
+
* so we can intercept and rewrite them.
|
|
36
|
+
*/
|
|
37
|
+
export declare function isGenerativeLanguageRequest(input: RequestInfo): boolean;
|
|
38
|
+
/**
|
|
39
|
+
* OpenCode / AI SDK often calls fetch(Request, init) with the JSON body on the Request only.
|
|
40
|
+
* prepareAntigravityRequest reads init.body as a string; materialize so sanitization always runs.
|
|
41
|
+
*/
|
|
42
|
+
export declare function materializeGenerativeLanguageFetchInput(input: RequestInfo, init?: RequestInit): Promise<{
|
|
43
|
+
input: RequestInfo;
|
|
44
|
+
init?: RequestInit;
|
|
45
|
+
}>;
|
|
46
|
+
/**
|
|
47
|
+
* Options for request preparation.
|
|
48
|
+
*/
|
|
49
|
+
export interface PrepareRequestOptions {
|
|
50
|
+
/** Enable Claude tool hardening (parameter signatures + system instruction). Default: true */
|
|
51
|
+
claudeToolHardening?: boolean;
|
|
52
|
+
/** Enable top-level Claude prompt auto-caching (`cache_control`). Default: false */
|
|
53
|
+
claudePromptAutoCaching?: boolean;
|
|
54
|
+
/** Google Search configuration (global default) */
|
|
55
|
+
googleSearch?: GoogleSearchConfig;
|
|
56
|
+
/** Per-account fingerprint for rate limit mitigation. Falls back to session fingerprint if not provided. */
|
|
57
|
+
fingerprint?: Fingerprint;
|
|
58
|
+
/** Write Gemini payloads to debug log. Default: false */
|
|
59
|
+
debugGeminiPayloads?: boolean;
|
|
60
|
+
}
|
|
61
|
+
export declare function prepareAntigravityRequest(input: RequestInfo, init: RequestInit | undefined, accessToken: string, projectId: string, endpointOverride?: string, headerStyle?: HeaderStyle, forceThinkingRecovery?: boolean, options?: PrepareRequestOptions): {
|
|
62
|
+
request: RequestInfo;
|
|
63
|
+
init: RequestInit;
|
|
64
|
+
streaming: boolean;
|
|
65
|
+
requestedModel?: string;
|
|
66
|
+
effectiveModel?: string;
|
|
67
|
+
projectId?: string;
|
|
68
|
+
endpoint?: string;
|
|
69
|
+
sessionId?: string;
|
|
70
|
+
toolDebugMissing?: number;
|
|
71
|
+
toolDebugSummary?: string;
|
|
72
|
+
toolDebugPayload?: string;
|
|
73
|
+
needsSignedThinkingWarmup?: boolean;
|
|
74
|
+
headerStyle: HeaderStyle;
|
|
75
|
+
thinkingRecoveryMessage?: string;
|
|
76
|
+
};
|
|
77
|
+
export declare function buildThinkingWarmupBody(bodyText: string | undefined, isClaudeThinking: boolean): string | null;
|
|
78
|
+
/**
|
|
79
|
+
* Normalizes Antigravity responses: applies retry headers, extracts cache usage into headers,
|
|
80
|
+
* rewrites preview errors, flattens streaming payloads, and logs debug metadata.
|
|
81
|
+
*
|
|
82
|
+
* For streaming SSE responses, uses TransformStream for true real-time incremental streaming.
|
|
83
|
+
* Thinking/reasoning tokens are transformed and forwarded immediately as they arrive.
|
|
84
|
+
*/
|
|
85
|
+
export declare function transformAntigravityResponse(response: Response, streaming: boolean, debugContext?: AntigravityDebugContext | null, requestedModel?: string, projectId?: string, endpoint?: string, effectiveModel?: string, sessionId?: string, toolDebugMissing?: number, toolDebugSummary?: string, toolDebugPayload?: string, debugLines?: string[], onComplete?: () => void, onWatchdogTimeout?: () => Promise<void> | void): Promise<Response>;
|
|
86
|
+
export declare const __testExports: {
|
|
87
|
+
buildSignatureSessionKey: typeof buildSignatureSessionKey;
|
|
88
|
+
hashConversationSeed: typeof hashConversationSeed;
|
|
89
|
+
extractTextFromContent: typeof extractTextFromContent;
|
|
90
|
+
extractConversationSeedFromMessages: typeof extractConversationSeedFromMessages;
|
|
91
|
+
extractConversationSeedFromContents: typeof extractConversationSeedFromContents;
|
|
92
|
+
resolveConversationKey: typeof resolveConversationKey;
|
|
93
|
+
resolveProjectKey: typeof resolveProjectKey;
|
|
94
|
+
isGeminiToolUsePart: typeof isGeminiToolUsePart;
|
|
95
|
+
isGeminiThinkingPart: typeof isGeminiThinkingPart;
|
|
96
|
+
ensureThoughtSignature: typeof ensureThoughtSignature;
|
|
97
|
+
hasSignedThinkingPart: typeof hasSignedThinkingPart;
|
|
98
|
+
hasSignedThinkingInContents: typeof hasSignedThinkingInContents;
|
|
99
|
+
hasSignedThinkingInMessages: typeof hasSignedThinkingInMessages;
|
|
100
|
+
hasToolUseInContents: typeof hasToolUseInContents;
|
|
101
|
+
hasToolUseInMessages: typeof hasToolUseInMessages;
|
|
102
|
+
ensureThinkingBeforeToolUseInContents: typeof ensureThinkingBeforeToolUseInContents;
|
|
103
|
+
ensureThinkingBeforeToolUseInMessages: typeof ensureThinkingBeforeToolUseInMessages;
|
|
104
|
+
generateSyntheticProjectId: typeof generateSyntheticProjectId;
|
|
105
|
+
MIN_SIGNATURE_LENGTH: number;
|
|
106
|
+
transformSseLine: typeof transformSseLine;
|
|
107
|
+
transformStreamingPayload: typeof transformStreamingPayload;
|
|
108
|
+
createStreamingTransformer: typeof createStreamingTransformer;
|
|
109
|
+
};
|
|
110
|
+
export {};
|