repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/parseResources.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/parseResources.js
const { entries, fromEntries, keys } = Object const APIGATEWAY_INTEGRATION_TYPE_HTTP_PROXY = "HTTP_PROXY" const APIGATEWAY_ROOT_ID = "RootResourceId" const APIGATEWAY_TYPE_METHOD = "AWS::ApiGateway::Method" const APIGATEWAY_TYPE_RESOURCE = "AWS::ApiGateway::Resource" function getApiGatewayTemplateObjects(resources) {...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/payloadSchemaValidator.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/payloadSchemaValidator.js
import { validate } from "jsonschema" export default function payloadSchemaValidator(model, body) { const result = validate(body, model) if (result.errors.length > 0) { throw new Error( `Request body validation failed: ${result.errors .map((e) => e.message) .join(", ")}`, ) } }
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/authJWTSettingsExtractor.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/authJWTSettingsExtractor.js
import { log } from "../../utils/log.js" function buildFailureResult(warningMessage) { log.warning(warningMessage) return { unsupportedAuth: true, } } function buildSuccessResult(authorizerName) { return { authorizerName, } } export default function authJWTSettingsExtractor( endpoint, provider...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/Http.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/Http.js
import HttpEventDefinition from "./HttpEventDefinition.js" import HttpServer from "./HttpServer.js" export default class Http { #httpServer = null #lambda = null #options = null #serverless = null constructor(serverless, options, lambda) { this.#lambda = lambda this.#options = options this.#s...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/LambdaIntegrationEvent.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/LambdaIntegrationEvent.js
import { env } from "node:process" import { log } from "../../../utils/log.js" import renderVelocityTemplateObject from "./renderVelocityTemplateObject.js" import VelocityContext from "./VelocityContext.js" const { parse } = JSON export default class LambdaIntegrationEvent { #path = null #request = null #requ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/index.js
export { default as LambdaIntegrationEvent } from "./LambdaIntegrationEvent.js" export { default as LambdaProxyIntegrationEvent } from "./LambdaProxyIntegrationEvent.js" export { default as renderVelocityTemplateObject } from "./renderVelocityTemplateObject.js" export { default as VelocityContext } from "./VelocityCont...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/VelocityContext.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/VelocityContext.js
import { Buffer } from "node:buffer" import crypto from "node:crypto" import { env } from "node:process" import jsEscapeString from "js-string-escape" import { decodeJwt } from "jose" import { isPlainObject, jsonPath, parseHeaders } from "../../../utils/index.js" const { parse, stringify } = JSON const { assign, entri...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/renderVelocityTemplateObject.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/renderVelocityTemplateObject.js
import velocityjs from "velocityjs" import { log } from "../../../utils/log.js" import runInPollutedScope from "../javaHelpers.js" import { isPlainObject } from "../../../utils/index.js" const { parse } = JSON const { entries } = Object function tryToParseJSON(string) { let parsed try { parsed = parse(string)...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/LambdaProxyIntegrationEventV2.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/LambdaProxyIntegrationEventV2.js
import { Buffer } from "node:buffer" import { env } from "node:process" import { decodeJwt } from "jose" import { log } from "../../../utils/log.js" import { detectEncoding, formatToClfTime, lowerCaseKeys, nullIfEmpty, parseHeaders, parseQueryStringParametersForPayloadV2, } from "../../../utils/index.js" c...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/LambdaProxyIntegrationEvent.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/http/lambda-events/LambdaProxyIntegrationEvent.js
import { Buffer } from "node:buffer" import crypto from "node:crypto" import { env } from "node:process" import { decodeJwt } from "jose" import { log } from "../../../utils/log.js" import { detectEncoding, formatToClfTime, nullIfEmpty, parseHeaders, parseMultiValueHeaders, parseMultiValueQueryStringParamet...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocketClients.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocketClients.js
import { WebSocket } from "ws" import { isBoom } from "@hapi/boom" import { log } from "../../utils/log.js" import { WebSocketAuthorizerEvent, WebSocketConnectEvent, WebSocketDisconnectEvent, WebSocketEvent, } from "./lambda-events/index.js" import authCanExecuteResource from "../authCanExecuteResource.js" impo...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocket.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocket.js
import HttpServer from "./HttpServer.js" import WebSocketEventDefinition from "./WebSocketEventDefinition.js" import WebSocketClients from "./WebSocketClients.js" import WebSocketServer from "./WebSocketServer.js" export default class WebSocket { #httpServer = null #lambda = null #options = null #serverless...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocketEventDefinition.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocketEventDefinition.js
const { assign } = Object export default class WebSocketEventDefinition { constructor(rawWebSocketEventDefinition) { let rest let route if (typeof rawWebSocketEventDefinition === "string") { route = rawWebSocketEventDefinition } else { ;({ route, ...rest } = rawWebSocketEventDefinition) ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/HttpServer.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/HttpServer.js
import { readFile } from "node:fs/promises" import { resolve } from "node:path" import { exit } from "node:process" import { Server } from "@hapi/hapi" import { log } from "../../utils/log.js" import { catchAllRoute, connectionsRoutes } from "./http-routes/index.js" export default class HttpServer { #options = null ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/index.js
export { default } from "./WebSocket.js"
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocketServer.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/WebSocketServer.js
import crypto from "node:crypto" import { WebSocketServer as WsWebSocketServer } from "ws" import { log } from "../../utils/log.js" export default class WebSocketServer { #connectionIds = new Map() #options = null #sharedServer = null #webSocketClients = null constructor(options, webSocketClients, shared...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketAuthorizerEvent.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketAuthorizerEvent.js
import WebSocketRequestContext from "./WebSocketRequestContext.js" import { parseHeaders, parseMultiValueHeaders, parseMultiValueQueryStringParameters, parseQueryStringParameters, } from "../../../utils/index.js" export default class WebSocketAuthorizerEvent { #connectionId = null #httpsProtocol = null ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketConnectEvent.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketConnectEvent.js
// import crypto from 'node:crypto' import WebSocketRequestContext from "./WebSocketRequestContext.js" import { parseHeaders, parseMultiValueHeaders, parseMultiValueQueryStringParameters, parseQueryStringParameters, } from "../../../utils/index.js" export default class WebSocketConnectEvent { #connectionId =...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/index.js
export { default as WebSocketConnectEvent } from "./WebSocketConnectEvent.js" export { default as WebSocketDisconnectEvent } from "./WebSocketDisconnectEvent.js" export { default as WebSocketEvent } from "./WebSocketEvent.js" export { default as WebSocketAuthorizerEvent } from "./WebSocketAuthorizerEvent.js"
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketDisconnectEvent.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketDisconnectEvent.js
import WebSocketRequestContext from "./WebSocketRequestContext.js" import { parseHeaders, parseMultiValueHeaders } from "../../../utils/index.js" export default class WebSocketDisconnectEvent { #connectionId = null constructor(connectionId) { this.#connectionId = connectionId } create() { // TODO FIX...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketEvent.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketEvent.js
import WebSocketRequestContext from "./WebSocketRequestContext.js" export default class WebSocketEvent { #connectionId = null #payload = null #route = null constructor(connectionId, route, payload) { this.#connectionId = connectionId this.#payload = payload this.#route = route } create() { ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketRequestContext.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/lambda-events/WebSocketRequestContext.js
import crypto from "node:crypto" import { formatToClfTime } from "../../../utils/index.js" const { now } = Date const connectedAt = new Map() export default class WebSocketRequestContext { #connectedAt = null #connectionId = null #eventType = null #route = null constructor(eventType, route, connectionI...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/index.js
export { default as catchAllRoute } from "./_catchAll/index.js" export { default as connectionsRoutes } from "./connections/index.js"
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/connections/ConnectionsController.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/connections/ConnectionsController.js
export default class ConnectionsController { #webSocketClients = null constructor(webSocketClients) { this.#webSocketClients = webSocketClients } send(connectionId, payload) { // TODO, is this correct? if (!payload) { return null } const clientExisted = this.#webSocketClients.send( ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/connections/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/connections/index.js
export { default } from "./connectionsRoutes.js"
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/connections/connectionsRoutes.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/connections/connectionsRoutes.js
import ConnectionsController from "./ConnectionsController.js" import { log } from "../../../../utils/log.js" export default function connectionsRoutes(webSocketClients) { const connectionsController = new ConnectionsController(webSocketClients) return [ { async handler(request, h) { const { ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/_catchAll/catchAllRoute.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/_catchAll/catchAllRoute.js
import { log } from "../../../../utils/log.js" export default function catchAllRoute() { return { handler(request, h) { const { url } = request log.debug(`got GET to ${url}`) return h.response(null).code(426) }, method: "GET", path: "/{path*}", } }
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/_catchAll/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/events/websocket/http-routes/_catchAll/index.js
export { default } from "./catchAllRoute.js"
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/config/supportedRuntimes.js
aws/aiHintGeneration/node_modules/serverless-offline/src/config/supportedRuntimes.js
/* eslint-disable sort-keys */ // native runtime support for AWS // https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html // .NET CORE // export const supportedDotnetcore = new Set([ // 'dotnet6', // ]) const X86_64 = "x86_64" const ARM64 = "arm64" export const supportedRuntimesArchitecture = { "nodejs...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/config/colors.js
aws/aiHintGeneration/node_modules/serverless-offline/src/config/colors.js
import chalk from "chalk" export const dodgerblue = chalk.hex("#1e90ff") export const gray = chalk.hex("#808080") export const lime = chalk.hex("#00ff00") export const orange = chalk.hex("#ffa500") export const peachpuff = chalk.hex("#ffdab9") export const plum = chalk.hex("#dda0dd") export const red = chalk.hex("#ff0...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/config/index.js
aws/aiHintGeneration/node_modules/serverless-offline/src/config/index.js
export { default as commandOptions } from "./commandOptions.js" export * from "./constants.js" export { default as defaultOptions } from "./defaultOptions.js" export * from "./supportedRuntimes.js"
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/config/commandOptions.js
aws/aiHintGeneration/node_modules/serverless-offline/src/config/commandOptions.js
export default { albPort: { type: "string", usage: "ALB port to listen on. Default: 3003.", }, corsAllowHeaders: { type: "string", usage: "Used to build the Access-Control-Allow-Headers header for CORS support.", }, corsAllowOrigin: { type: "string", usage: "Used to build t...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/config/defaultOptions.js
aws/aiHintGeneration/node_modules/serverless-offline/src/config/defaultOptions.js
export default { albPort: 3003, corsAllowHeaders: "accept,content-type,x-api-key,authorization", corsAllowOrigin: "*", corsDisallowCredentials: true, corsExposedHeaders: "WWW-Authenticate,Server-Authorization", disableCookieValidation: false, dockerHost: "localhost", dockerHostServicePath: null, docke...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/serverless-offline/src/config/constants.js
aws/aiHintGeneration/node_modules/serverless-offline/src/config/constants.js
// dummy placeholder url for the WHATWG URL constructor // https://github.com/nodejs/node/issues/12682 export const BASE_URL_PLACEHOLDER = "http://example" export const CUSTOM_OPTION = "serverless-offline" export const DEFAULT_LAMBDA_RUNTIME = "nodejs14.x" export const DEFAULT_LAMBDA_ARCHITECTURE = "arm64" // https...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.assertValidPattern = void 0; const MAX_PATTERN_LENGTH = 1024 * 64; const assertValidPattern = (pattern) => { if (typeof pattern !== 'string') { throw new TypeError('invalid pattern'); } if (pattern.length > MAX_PATT...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/index.js
aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/index.js
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = e...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
true
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/escape.js
aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/escape.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.escape = void 0; /** * Escape all magic characters in a glob pattern. * * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape} * option is used, then characters are escaped by wrapping in `[]`, because * a magic ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/ast.js
aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/ast.js
"use strict"; // parse a single path portion Object.defineProperty(exports, "__esModule", { value: true }); exports.AST = void 0; const brace_expressions_js_1 = require("./brace-expressions.js"); const unescape_js_1 = require("./unescape.js"); const types = new Set(['!', '?', '+', '*', '@']); const isExtglobType = (c) ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/unescape.js
aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/unescape.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.unescape = void 0; /** * Un-escape a string that has been escaped with {@link escape}. * * If the {@link windowsPathsNoEscape} option is used, then square-brace * escapes are removed, but not backslash escapes. For example, it wil...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/brace-expressions.js
aws/aiHintGeneration/node_modules/minimatch/dist/commonjs/brace-expressions.js
"use strict"; // translate the various posix character classes into unicode properties // this works across all unicode locales Object.defineProperty(exports, "__esModule", { value: true }); exports.parseClass = void 0; // { <posix class>: [<translation>, /u flag required, negated] const posixClasses = { '[:alnum:]...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/esm/assert-valid-pattern.js
aws/aiHintGeneration/node_modules/minimatch/dist/esm/assert-valid-pattern.js
const MAX_PATTERN_LENGTH = 1024 * 64; export const assertValidPattern = (pattern) => { if (typeof pattern !== 'string') { throw new TypeError('invalid pattern'); } if (pattern.length > MAX_PATTERN_LENGTH) { throw new TypeError('pattern is too long'); } }; //# sourceMappingURL=assert-vali...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/esm/index.js
aws/aiHintGeneration/node_modules/minimatch/dist/esm/index.js
import expand from 'brace-expansion'; import { assertValidPattern } from './assert-valid-pattern.js'; import { AST } from './ast.js'; import { escape } from './escape.js'; import { unescape } from './unescape.js'; export const minimatch = (p, pattern, options = {}) => { assertValidPattern(pattern); // shortcut:...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
true
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/esm/escape.js
aws/aiHintGeneration/node_modules/minimatch/dist/esm/escape.js
/** * Escape all magic characters in a glob pattern. * * If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape} * option is used, then characters are escaped by wrapping in `[]`, because * a magic character wrapped in a character class can only be satisfied by * that exact character. In this mode...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/esm/ast.js
aws/aiHintGeneration/node_modules/minimatch/dist/esm/ast.js
// parse a single path portion import { parseClass } from './brace-expressions.js'; import { unescape } from './unescape.js'; const types = new Set(['!', '?', '+', '*', '@']); const isExtglobType = (c) => types.has(c); // Patterns that get prepended to bind to the start of either the // entire string, or just a single ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/esm/unescape.js
aws/aiHintGeneration/node_modules/minimatch/dist/esm/unescape.js
/** * Un-escape a string that has been escaped with {@link escape}. * * If the {@link windowsPathsNoEscape} option is used, then square-brace * escapes are removed, but not backslash escapes. For example, it will turn * the string `'[*]'` into `*`, but it will not turn `'\\*'` into `'*'`, * becuase `\` is a path...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/minimatch/dist/esm/brace-expressions.js
aws/aiHintGeneration/node_modules/minimatch/dist/esm/brace-expressions.js
// translate the various posix character classes into unicode properties // this works across all unicode locales // { <posix class>: [<translation>, /u flag required, negated] const posixClasses = { '[:alnum:]': ['\\p{L}\\p{Nl}\\p{Nd}', true], '[:alpha:]': ['\\p{L}\\p{Nl}', true], '[:ascii:]': ['\\x' + '00...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/inherits/inherits_browser.js
aws/aiHintGeneration/node_modules/inherits/inherits_browser.js
if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { if (superCtor) { ctor.super_ = superCtor ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/inherits/inherits.js
aws/aiHintGeneration/node_modules/inherits/inherits.js
try { var util = require('util'); /* istanbul ignore next */ if (typeof util.inherits !== 'function') throw ''; module.exports = util.inherits; } catch (e) { /* istanbul ignore next */ module.exports = require('./inherits_browser.js'); }
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/index.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/index.js
export * from "./FormDataEncoder.js"; export * from "./FileLike.js"; export * from "./FormDataLike.js"; export * from "./util/isFileLike.js"; export * from "./util/isFormData.js";
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/FormDataEncoder.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/FormDataEncoder.js
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "func...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/FormDataLike.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/FormDataLike.js
export {};
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/FileLike.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/FileLike.js
export {};
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isPlainObject.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isPlainObject.js
const getType = (value) => (Object.prototype.toString.call(value).slice(8, -1).toLowerCase()); function isPlainObject(value) { if (getType(value) !== "object") { return false; } const pp = Object.getPrototypeOf(value); if (pp === null || pp === undefined) { return true; } const C...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isFileLike.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isFileLike.js
import isFunction from "./isFunction.js"; export const isFileLike = (value) => Boolean(value && typeof value === "object" && isFunction(value.constructor) && value[Symbol.toStringTag] === "File" && isFunction(value.stream) && value.name != null && value.size != null && value.lastModified != ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isFormData.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isFormData.js
import isFunction from "./isFunction.js"; export const isFormData = (value) => Boolean(value && isFunction(value.constructor) && value[Symbol.toStringTag] === "FormData" && isFunction(value.append) && isFunction(value.getAll) && isFunction(value.entries) && isFunction(value[Symbol.iterator])); e...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isFunction.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/isFunction.js
const isFunction = (value) => (typeof value === "function"); export default isFunction;
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/escapeName.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/escapeName.js
const escapeName = (name) => String(name) .replace(/\r/g, "%0D") .replace(/\n/g, "%0A") .replace(/"/g, "%22"); export default escapeName;
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/normalizeValue.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/normalizeValue.js
const normalizeValue = (value) => String(value) .replace(/\r|\n/g, (match, i, str) => { if ((match === "\r" && str[i + 1] !== "\n") || (match === "\n" && str[i - 1] !== "\r")) { return "\r\n"; } return match; }); export default normalizeValue;
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/createBoundary.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/esm/util/createBoundary.js
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789"; function createBoundary() { let size = 16; let res = ""; while (size--) { res += alphabet[(Math.random() * alphabet.length) << 0]; } return res; } export default createBoundary;
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/index.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/index.js
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/FormDataEncoder.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/FormDataEncoder.js
"use strict"; var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof s...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/FormDataLike.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/FormDataLike.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true });
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/FileLike.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/FileLike.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true });
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isPlainObject.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isPlainObject.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const getType = (value) => (Object.prototype.toString.call(value).slice(8, -1).toLowerCase()); function isPlainObject(value) { if (getType(value) !== "object") { return false; } const pp = Object.getPrototypeOf(value); ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isFileLike.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isFileLike.js
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.isFileLike = void 0; const isFunction_1 = __importDefault(require("./isFunction")); const isFile...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isFormData.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isFormData.js
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.isFormDataLike = exports.isFormData = void 0; const isFunction_1 = __importDefault(require("./is...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isFunction.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/isFunction.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const isFunction = (value) => (typeof value === "function"); exports.default = isFunction;
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/escapeName.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/escapeName.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const escapeName = (name) => String(name) .replace(/\r/g, "%0D") .replace(/\n/g, "%0A") .replace(/"/g, "%22"); exports.default = escapeName;
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/normalizeValue.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/normalizeValue.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const normalizeValue = (value) => String(value) .replace(/\r|\n/g, (match, i, str) => { if ((match === "\r" && str[i + 1] !== "\n") || (match === "\n" && str[i - 1] !== "\r")) { return "\r\n"; } return match; })...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/createBoundary.js
aws/aiHintGeneration/node_modules/form-data-encoder/lib/cjs/util/createBoundary.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789"; function createBoundary() { let size = 16; let res = ""; while (size--) { res += alphabet[(Math.random() * alphabet.length) << 0]; } return res; } exports.def...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/tunnel/index.js
aws/aiHintGeneration/node_modules/tunnel/index.js
module.exports = require('./lib/tunnel');
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/tunnel/lib/tunnel.js
aws/aiHintGeneration/node_modules/tunnel/lib/tunnel.js
'use strict'; var net = require('net'); var tls = require('tls'); var http = require('http'); var https = require('https'); var events = require('events'); var assert = require('assert'); var util = require('util'); exports.httpOverHttp = httpOverHttp; exports.httpsOverHttp = httpsOverHttp; exports.httpOverHttps = h...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/core.js
aws/aiHintGeneration/node_modules/openai/core.js
"use strict"; var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof s...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
true
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/index.js
aws/aiHintGeneration/node_modules/openai/index.js
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ?...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/error.js
aws/aiHintGeneration/node_modules/openai/error.js
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.ContentFilterFinishReasonError = exports.LengthFinishReasonError = exports.InternalServerError = exports.RateLimitError = exports.UnprocessableEntit...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/version.js
aws/aiHintGeneration/node_modules/openai/version.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VERSION = void 0; exports.VERSION = '4.73.0'; // x-release-please-version //# sourceMappingURL=version.js.map
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/uploads.js
aws/aiHintGeneration/node_modules/openai/uploads.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createForm = exports.multipartFormRequestOptions = exports.maybeMultipartFormRequestOptions = exports.isMultipartBody = exports.toFile = exports.isUploadable = exports.isBlobLike = exports.isFileLike = exports.isResponseLike = exports....
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/resource.js
aws/aiHintGeneration/node_modules/openai/resource.js
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.APIResource = void 0; class APIResource { constructor(client) { this._client = client; } } exports.APIResource = APIResource; //# so...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/pagination.js
aws/aiHintGeneration/node_modules/openai/pagination.js
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.CursorPage = exports.Page = void 0; const core_1 = require("./core.js"); /** * Note: no pagination actually occurs yet, this is for forwards-compat...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/streaming.js
aws/aiHintGeneration/node_modules/openai/streaming.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.readableStreamAsyncIterable = exports._decodeChunks = exports._iterSSEMessages = exports.Stream = void 0; const index_1 = require("./_shims/index.js"); const error_1 = require("./error.js"); const line_1 = require("./internal/decoders/...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/node_modules/node-fetch/browser.js
aws/aiHintGeneration/node_modules/openai/node_modules/node-fetch/browser.js
"use strict"; // ref: https://github.com/tc39/proposal-global var getGlobal = function () { // the only reliable means to get the global object is // `Function('return this')()` // However, this causes CSP violations in Chrome apps. if (typeof self !== 'undefined') { return self; } if (typeof window !== 'undefine...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/node_modules/node-fetch/lib/index.js
aws/aiHintGeneration/node_modules/openai/node_modules/node-fetch/lib/index.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } var Stream = _interopDefault(require('stream')); var http = _interopDefault(require('http')); var Url = _interopDefault(requi...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
true
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/node_modules/node-fetch/lib/index.es.js
aws/aiHintGeneration/node_modules/openai/node_modules/node-fetch/lib/index.es.js
process.emitWarning("The .es.js file is deprecated. Use .mjs instead."); import Stream from 'stream'; import http from 'http'; import Url from 'url'; import whatwgUrl from 'whatwg-url'; import https from 'https'; import zlib from 'zlib'; // Based on https://github.com/tmpvar/jsdom/blob/aa85b2abf07766ff7bf5c1f6daafb37...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
true
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/helpers/zod.js
aws/aiHintGeneration/node_modules/openai/helpers/zod.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.zodFunction = exports.zodResponseFormat = void 0; const parser_1 = require("../lib/parser.js"); const zod_to_json_schema_1 = require("../_vendor/zod-to-json-schema/index.js"); function zodToJsonSchema(schema, options) { return (0, ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/src/_shims/node-types.js
aws/aiHintGeneration/node_modules/openai/src/_shims/node-types.js
/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/src/_shims/index.js
aws/aiHintGeneration/node_modules/openai/src/_shims/index.js
/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ const shims = require('./registry'); const auto = require('openai/_shims/auto/runtime'); if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true }); for (const property of Object.keys(shims)) { Object.defineProperty(exports,...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/src/_shims/web-types.js
aws/aiHintGeneration/node_modules/openai/src/_shims/web-types.js
/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/src/_shims/manual-types.js
aws/aiHintGeneration/node_modules/openai/src/_shims/manual-types.js
/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/src/_shims/auto/types.js
aws/aiHintGeneration/node_modules/openai/src/_shims/auto/types.js
/** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/shims/web.js
aws/aiHintGeneration/node_modules/openai/shims/web.js
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/shims/node.js
aws/aiHintGeneration/node_modules/openai/shims/node.js
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/partial-json-parser/parser.js
aws/aiHintGeneration/node_modules/openai/_vendor/partial-json-parser/parser.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MalformedJSON = exports.PartialJSON = exports.partialParse = void 0; const STR = 0b000000001; const NUM = 0b000000010; const ARR = 0b000000100; const OBJ = 0b000001000; const NULL = 0b000010000; const BOOL = 0b000100000; const NAN = 0b...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/parseDef.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/parseDef.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseDef = void 0; const zod_1 = require("zod"); const any_1 = require("./parsers/any.js"); const array_1 = require("./parsers/array.js"); const bigint_1 = require("./parsers/bigint.js"); const boolean_1 = require("./parsers/boolean.js...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/errorMessages.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/errorMessages.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setResponseValueAndErrors = exports.addErrorMessage = void 0; function addErrorMessage(res, key, errorMessage, refs) { if (!refs?.errorMessages) return; if (errorMessage) { res.errorMessage = { ...re...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/index.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/index.js
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/Refs.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/Refs.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getRefs = void 0; const Options_1 = require("./Options.js"); const util_1 = require("./util.js"); const getRefs = (options) => { const _options = (0, Options_1.getDefaultOptions)(options); const currentPath = _options.name !== ...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/zodToJsonSchema.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/zodToJsonSchema.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.zodToJsonSchema = void 0; const parseDef_1 = require("./parseDef.js"); const Refs_1 = require("./Refs.js"); const util_1 = require("./util.js"); const zodToJsonSchema = (schema, options) => { const refs = (0, Refs_1.getRefs)(option...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/Options.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/Options.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDefaultOptions = exports.ignoreOverride = void 0; exports.ignoreOverride = Symbol('Let zodToJsonSchema decide on which parser to use'); const defaultOptions = { name: undefined, $refStrategy: 'root', effectStrategy: 'inp...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/util.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/util.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isEmptyObj = exports.zodDef = void 0; const zodDef = (zodSchema) => { return '_def' in zodSchema ? zodSchema._def : zodSchema; }; exports.zodDef = zodDef; function isEmptyObj(obj) { if (!obj) return true; for (const...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false
CAHLR/OATutor
https://github.com/CAHLR/OATutor/blob/10a5baf153a505267af8045b05c217b4be6bd8b4/aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/parsers/effects.js
aws/aiHintGeneration/node_modules/openai/_vendor/zod-to-json-schema/parsers/effects.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseEffectsDef = void 0; const parseDef_1 = require("../parseDef.js"); function parseEffectsDef(_def, refs, forceResolution) { return refs.effectStrategy === 'input' ? (0, parseDef_1.parseDef)(_def.schema._def, refs, forceResoluti...
javascript
MIT
10a5baf153a505267af8045b05c217b4be6bd8b4
2026-01-05T03:39:09.711315Z
false