@fragno-dev/github-app-fragment 0.0.1 → 0.0.3

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.
@@ -397,39 +397,6 @@ interface FragnoPublicClientConfig {
397
397
  * Shared configuration for fragment routes.
398
398
  */
399
399
  //#endregion
400
- //#region ../fragno/dist/api/api.d.ts
401
- //#region src/api/api.d.ts
402
- type HTTPMethod = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
403
- type NonGetHTTPMethod = Exclude<HTTPMethod, "GET">;
404
- interface RequestThisContext {}
405
- /**
406
- * Content types that can be accepted by a route.
407
- *
408
- * - `"application/json"` (default): JSON request body, validated against inputSchema
409
- * - `"multipart/form-data"`: FormData request body (file uploads), no schema validation
410
- */
411
- type RouteContentType = "application/json" | "multipart/form-data" | "application/octet-stream";
412
- interface FragnoRouteConfig<TMethod extends HTTPMethod, TPath extends string, TInputSchema extends StandardSchemaV1 | undefined, TOutputSchema extends StandardSchemaV1 | undefined, TErrorCode extends string = string, TQueryParameters extends string = string, TThisContext extends RequestThisContext = RequestThisContext> {
413
- method: TMethod;
414
- path: TPath;
415
- /**
416
- * The expected content type for this route's request body.
417
- *
418
- * - `"application/json"` (default): Expects JSON body, will be validated against inputSchema
419
- * - `"multipart/form-data"`: Expects FormData body (for file uploads), use `ctx.formData()` in handler
420
- *
421
- * The server will reject requests with mismatched Content-Type headers.
422
- *
423
- * @default "application/json"
424
- */
425
- contentType?: RouteContentType;
426
- inputSchema?: TInputSchema;
427
- outputSchema?: TOutputSchema;
428
- errorCodes?: readonly TErrorCode[];
429
- queryParameters?: readonly TQueryParameters[];
430
- handler(this: TThisContext, inputCtx: RequestInputContext<TPath, TInputSchema>, outputCtx: RequestOutputContext<TOutputSchema, TErrorCode>): Promise<Response>;
431
- }
432
- //#endregion
433
400
  //#region ../fragno/dist/client/client-error.d.ts
434
401
  //#region src/client/client-error.d.ts
435
402
  type FragnoErrorOptions = {
@@ -444,7 +411,7 @@ declare abstract class FragnoClientError<TCode extends string = string> extends
444
411
  get code(): TCode | (string & {});
445
412
  }
446
413
  //#endregion
447
- //#region ../../node_modules/.pnpm/nanostores@1.1.0/node_modules/nanostores/atom/index.d.ts
414
+ //#region ../../node_modules/.pnpm/nanostores@1.2.0/node_modules/nanostores/atom/index.d.ts
448
415
  type AllKeys<T> = T extends any ? keyof T : never;
449
416
  type Primitive = boolean | number | string;
450
417
  type ReadonlyIfObject<Value> = Value extends undefined ? Value : Value extends ((...args: any) => any) ? Value : Value extends Primitive ? Value : Value extends object ? Readonly<Value> : Value;
@@ -465,6 +432,10 @@ interface ReadableAtom<Value = any> {
465
432
  * @returns Store value.
466
433
  */
467
434
  get(): Value;
435
+ /**
436
+ * Low-level attribute to read store’s initial value.
437
+ */
438
+ readonly init: undefined | Value;
468
439
  /**
469
440
  * Listeners count.
470
441
  */
@@ -529,7 +500,7 @@ interface WritableAtom<Value = any> extends ReadableAtom<Value> {
529
500
  set(newValue: Value): void;
530
501
  }
531
502
  //#endregion
532
- //#region ../../node_modules/.pnpm/nanostores@1.1.0/node_modules/nanostores/map/index.d.ts
503
+ //#region ../../node_modules/.pnpm/nanostores@1.2.0/node_modules/nanostores/map/index.d.ts
533
504
  type KeyofBase = keyof any;
534
505
  type Get<T, K extends KeyofBase> = Extract<T, { [K1 in K]: any }>[K];
535
506
  type HasIndexSignature<T> = string extends keyof T ? true : false;
@@ -603,7 +574,7 @@ interface MapStore<Value extends object = any> extends WritableAtom<Value> {
603
574
  subscribe(listener: (value: ReadonlyIfObject<Value>, oldValue: ReadonlyIfObject<Value> | undefined, changedKey: AllKeys<Value> | undefined) => void): () => void;
604
575
  }
605
576
  //#endregion
606
- //#region ../../node_modules/.pnpm/@nanostores+query@0.3.4_nanostores@1.1.0/node_modules/@nanostores/query/dist/factory.d.ts
577
+ //#region ../../node_modules/.pnpm/@nanostores+query@0.3.4_nanostores@1.2.0/node_modules/@nanostores/query/dist/factory.d.ts
607
578
  type MutateCb<Data, Result = unknown> = Data extends void ? () => Promise<Result> : (data: Data) => Promise<Result>;
608
579
  type MutatorStore<Data = void, Result = unknown, E = Error> = MapStore<{
609
580
  mutate: MutateCb<Data, Result>;
@@ -616,27 +587,60 @@ type MutatorStore<Data = void, Result = unknown, E = Error> = MapStore<{
616
587
  //#endregion
617
588
  //#region ../fragno/dist/client/client.d.ts
618
589
  declare const MUTATOR_HOOK_SYMBOL: unique symbol;
619
- type FragnoClientMutatorData<TMethod extends NonGetHTTPMethod, TPath extends string, TInputSchema extends StandardSchemaV1 | undefined, TOutputSchema extends StandardSchemaV1 | undefined, TErrorCode extends string, TQueryParameters extends string> = {
620
- route: FragnoRouteConfig<TMethod, TPath, TInputSchema, TOutputSchema, TErrorCode, TQueryParameters>;
590
+ type FragnoClientMutatorData<TMethod$1 extends NonGetHTTPMethod, TPath$1 extends string, TInputSchema$1 extends StandardSchemaV1 | undefined, TOutputSchema$1 extends StandardSchemaV1 | undefined, TErrorCode$1 extends string, TQueryParameters$1 extends string> = {
591
+ route: FragnoRouteConfig<TMethod$1, TPath$1, TInputSchema$1, TOutputSchema$1, TErrorCode$1, TQueryParameters$1>;
621
592
  mutateQuery(args?: {
622
- body?: InferOr<TInputSchema, undefined>;
623
- path?: MaybeExtractPathParamsOrWiden<TPath, string>;
624
- query?: Record<TQueryParameters, string | undefined>;
625
- }): Promise<InferOr<TOutputSchema, undefined>>;
593
+ body?: InferOr<TInputSchema$1, undefined>;
594
+ path?: MaybeExtractPathParamsOrWiden<TPath$1, string>;
595
+ query?: Record<TQueryParameters$1, string | undefined>;
596
+ }): Promise<InferOr<TOutputSchema$1, undefined>>;
626
597
  mutatorStore: MutatorStore<{
627
- body?: InferOr<TInputSchema, undefined>;
628
- path?: MaybeExtractPathParamsOrWiden<TPath, string | ReadableAtom<string>>;
629
- query?: Record<TQueryParameters, string | undefined | ReadableAtom<string | undefined>>;
630
- }, InferOr<TOutputSchema, undefined>, FragnoClientError<TErrorCode>>;
598
+ body?: InferOr<TInputSchema$1, undefined>;
599
+ path?: MaybeExtractPathParamsOrWiden<TPath$1, string | ReadableAtom<string>>;
600
+ query?: Record<TQueryParameters$1, string | undefined | ReadableAtom<string | undefined>>;
601
+ }, InferOr<TOutputSchema$1, undefined>, FragnoClientError<TErrorCode$1>>;
631
602
  [MUTATOR_HOOK_SYMBOL]: true;
632
603
  } & {
633
- readonly _inputSchema?: TInputSchema;
634
- readonly _outputSchema?: TOutputSchema;
604
+ readonly _inputSchema?: TInputSchema$1;
605
+ readonly _outputSchema?: TOutputSchema$1;
635
606
  };
636
607
  /**
637
608
  * @internal
638
609
  */
639
610
  //#endregion
611
+ //#region ../fragno/dist/api/api.d.ts
612
+ //#region src/api/api.d.ts
613
+ type HTTPMethod = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
614
+ type NonGetHTTPMethod = Exclude<HTTPMethod, "GET">;
615
+ interface RequestThisContext {}
616
+ /**
617
+ * Content types that can be accepted by a route.
618
+ *
619
+ * - `"application/json"` (default): JSON request body, validated against inputSchema
620
+ * - `"multipart/form-data"`: FormData request body (file uploads), no schema validation
621
+ */
622
+ type RouteContentType = "application/json" | "multipart/form-data" | "application/octet-stream";
623
+ interface FragnoRouteConfig<TMethod extends HTTPMethod, TPath extends string, TInputSchema extends StandardSchemaV1 | undefined, TOutputSchema extends StandardSchemaV1 | undefined, TErrorCode extends string = string, TQueryParameters extends string = string, TThisContext extends RequestThisContext = RequestThisContext> {
624
+ method: TMethod;
625
+ path: TPath;
626
+ /**
627
+ * The expected content type for this route's request body.
628
+ *
629
+ * - `"application/json"` (default): Expects JSON body, will be validated against inputSchema
630
+ * - `"multipart/form-data"`: Expects FormData body (for file uploads), use `ctx.formData()` in handler
631
+ *
632
+ * The server will reject requests with mismatched Content-Type headers.
633
+ *
634
+ * @default "application/json"
635
+ */
636
+ contentType?: RouteContentType;
637
+ inputSchema?: TInputSchema;
638
+ outputSchema?: TOutputSchema;
639
+ errorCodes?: readonly TErrorCode[];
640
+ queryParameters?: readonly TQueryParameters[];
641
+ handler(this: TThisContext, inputCtx: RequestInputContext<TPath, TInputSchema>, outputCtx: RequestOutputContext<TOutputSchema, TErrorCode>): Promise<Response>;
642
+ }
643
+ //#endregion
640
644
  //#region src/github/types.d.ts
641
645
  type GitHubAppWebhookHandler<TEventName extends EmitterWebhookEventName> = (event: EmitterWebhookEvent<TEventName>, idempotencyKey: string) => void | Promise<void>;
642
646
  type GitHubAppWebhookOn = <TEventName extends EmitterWebhookEventName>(event: TEventName | TEventName[], handler: GitHubAppWebhookHandler<TEventName>) => void;
@@ -656,5 +660,5 @@ type GitHubAppFragmentConfig = {
656
660
  };
657
661
  type GitHubAppFragmentPublicClientConfig = FragnoPublicClientConfig;
658
662
  //#endregion
659
- export { GitHubAppWebhookOn as a, FragnoClientError as c, InferOr as d, ExtractPathParamsOrWiden as f, QueryParamsHint as h, GitHubAppWebhookHandler as i, NonGetHTTPMethod as l, MaybeExtractPathParamsOrWiden as m, GitHubAppFragmentPublicClientConfig as n, FragnoClientMutatorData as o, HasPathParams as p, GitHubAppWebhookConfig as r, ReadableAtom as s, GitHubAppFragmentConfig as t, FragnoPublicClientConfig as u };
660
- //# sourceMappingURL=types-BzeSSOQU.d.ts.map
663
+ export { GitHubAppWebhookOn as a, ReadableAtom as c, InferOr as d, ExtractPathParamsOrWiden as f, QueryParamsHint as h, GitHubAppWebhookHandler as i, FragnoClientError as l, MaybeExtractPathParamsOrWiden as m, GitHubAppFragmentPublicClientConfig as n, NonGetHTTPMethod as o, HasPathParams as p, GitHubAppWebhookConfig as r, FragnoClientMutatorData as s, GitHubAppFragmentConfig as t, FragnoPublicClientConfig as u };
664
+ //# sourceMappingURL=types-B3_U7vnu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types-B3_U7vnu.d.ts","names":["SplitPath","T","Rest","First","ExtractParam","Name","ExtractParamsFromSegments","ExtractPathParams","ValueType","Record","ExtractPathParamsOrWiden","MaybeExtractPathParamsOrWiden","HasPathParams","ExtractPathParamNames","QueryParamsHint","TQueryParameters","Partial","RequestBodyType","MutableRequestState","Record","URLSearchParams","Headers","private","constructor","pathParams","searchParams","body","headers","config","setBody","hasBodyOverride","ExtractPathParams","MutableRequestState","HTTPMethod","StandardSchemaV1","RequestBodyType","FormData","Blob","Uint8Array","ReadableStream","RequestInputContext","TPath","TInputSchema","URLSearchParams","Headers","Request","Promise","Exclude","InferOutput","private","constructor","path","method","pathParams","searchParams","parsedBody","rawBody","headers","request","inputSchema","shouldValidateInput","config","fromRequest","state","fromSSRContext","body","query","formData","isFormData","bodyStream","isBodyStream","input","schema","valid","InfoStatusCode","SuccessStatusCode","DeprecatedStatusCode","RedirectStatusCode","ClientErrorStatusCode","ServerErrorStatusCode","StatusCode","ContentlessStatusCode","StandardSchemaV1","InferOr","T","U","NonNullable","InferOutput","InferOrUnknown","Error","Message","__errorMessage","ResponseStream","TArray","ReadableStream","WritableStream","Uint8Array","Promise","private","aborted","closed","responseReadable","constructor","writable","readable","writeRaw","input","write","U","sleep","ms","close","onAbort","listener","abort","ContentlessStatusCode","StatusCode","InferOrUnknown","ResponseStream","StandardSchemaV1","ResponseInit","T","HeadersInit","headers","status","statusText","OutputContext","TOutput","TErrorCode","message","code","Response","Promise","onError","Error","error","initOrStatus","empty","json","object","jsonStream","stream","cb","RequestOutputContext","TOutputSchema","private","constructor","outputSchema","HTTPMethod","StandardSchemaV1","FragnoPublicConfig","mountRoute","FetcherConfig","RequestInit","fetch","type","options","fetcher","FragnoPublicClientConfig","baseUrl","fetcherConfig","FragnoFragmentSharedConfig","TRoutes","method","path","inputSchema","outputSchema","errorCodes","queryParameters","pathParameters","name","routes","StatusCode","FragnoErrorOptions","Error","cause","FragnoClientError","TCode","private","constructor","message","code","options","FragnoClientFetchError","fromUnknownFetchError","error","FragnoClientFetchNetworkError","FragnoClientFetchAbortError","FragnoClientUnknownApiError","status","FragnoClientApiError","TErrorCode","Response","Promise","fromResponse","response","AllKeys","T","Primitive","ReadonlyIfObject","Value","Readonly","args","ReadableAtom","get","init","lc","listen","value","oldValue","listener","notify","off","subscribe","WritableAtom","set","newValue","PreinitializedWritableAtom","Atom","notifyId","atom","StoreExt","readonlyType","store","AllKeys","ReadableAtom","ReadonlyIfObject","WritableAtom","KeyofBase","Get","T","K","Extract","K1","HasIndexSignature","ValueWithUndefinedForIndexSignatures","Value","Key","WritableStore","MapStore","Store","AnyStore","get","value","StoreValue","SomeStore","BaseMapStore","setKey","key","MapStoreKeys","args","listen","oldValue","changedKey","listener","notify","set","newValue","subscribe","PreinitializedMapStore","map","StoreExt","PlatformCompat","MapStore","ReadableAtom","NoKey","SomeKey","KeyInput","FetcherStore","Array","Key","KeyParts","KeySelector","key","Fetcher","T","Promise","args","OnErrorRetry","error","retryCount","opts","EventTypes","onError","RefetchSettings","dedupeTime","revalidateOnFocus","revalidateOnReconnect","revalidateInterval","cacheLifetime","onErrorRetry","CommonSettings","fetcher","NanoqueryArgs","Map","cache","data","created","expires","FetcherValue","E","Error","loading","promise","LazyFetchValue","Symbol","_","invalidate","revalidate","mutate","fetch","FetcherStoreCreator","keys","settings","ManualMutator","Data","Result","getCacheUpdater","shouldRevalidate","newValue","MutateCb","MutatorStore","defaultOnErrorRetry","nanoqueryFactory","E_1","globalFetcher","isAppVisible","visibilityChangeSubscribe","reconnectChangeSubscribe","globalSettings","keyInput","fetcherSettings","mutator","throttleCalls","__unsafeOverruleSettings","invalidateKeys","keySelector","revalidateKeys","mutateCache","MaybeExtractPathParamsOrWiden","InferOr","AnyFragnoRouteConfig","AnyRouteOrFactory","FlattenRouteFactories","FetcherConfig","FragnoFragmentSharedConfig","FragnoFragmentSharedConfig$1","FragnoPublicClientConfig","FragnoPublicConfig","FragmentDefinition","FragnoClientApiError","FragnoClientError","FragnoClientFetchAbortError","FragnoClientFetchError","FragnoClientFetchNetworkError","FragnoClientUnknownApiError","FragnoErrorOptions","FragnoRouteConfig","HTTPMethod","NonGetHTTPMethod","RequestThisContext","ReadableAtom","Store","FetcherStore","MutatorStore","StandardSchemaV1","GET_HOOK_SYMBOL","MUTATOR_HOOK_SYMBOL","STORE_SYMBOL","FilterRouteByMethod","TRoute$1","TExpectedMethod","TMethod","Extract","TPath","TInputSchema","TOutputSchema","TErrorCode","TQueryParameters","TThisContext","FilterRouteByPath","TPath$1","TRoutePath","ExtractGetRoutesExact","T","K","ExtractGetRoutes","ExtractRoutePathExact","ExtractRoutePathLoose","_TMethod","HasWidenedRouteShape","TRoute","ExtractRoutePath","ExtractGetRoutePaths","ExtractNonGetRoutePaths","ExtractRouteByPathExact","TRoutes","TMethod$1","TRouteMethod","ExtractRouteByPathLoose","ExtractRouteByPath","ExtractOutputSchemaForPath","outputSchema","IsValidGetRoutePath","ValidateGetRoutePath","HasGetRoutes","ObjectContainingStoreField","P","Omit","Partial","FragnoStoreObjectData","obj","FragnoStoreFactoryData","TArgs","factory","args","FragnoStoreData","FragnoClientHookData","TOutputSchema$1","TErrorCode$1","TQueryParameters$1","Record","InferOutput","Promise","route","query","path","store","_outputSchema","FragnoClientMutatorData","TInputSchema$1","mutateQuery","body","mutatorStore","_inputSchema","buildUrl","baseUrl","mountRoute","config","pathParams","queryParams","params","getCacheKey","method","isGetHook","hook","isMutatorHook","isStore","TStore","OnErrorRetryFn","error","key","retryCount","opts","CreateHookOptions","onErrorRetry","OnInvalidateFn","TInnerPath","invalidate","CacheLine","data","created","expires","ClientBuilder","TFragmentConfig","Readonly","fetch","RequestInit","NonNullable","private","constructor","publicConfig","fragmentConfig","cacheEntries","createStore","getFetcher","fetcher","defaultOptions","createHook","options","createMutator","onInvalidate","createClientBuilder","TConfig","TOptions","TDeps","TBaseServices","TServices","TServiceDependencies","TPrivateServices","TServiceThisContext","THandlerThisContext","TRequestStorage","TRoutesOrFactories","TInternalRoutes","definition","routesOrFactories","authorFetcherConfig","RequestInputContext","RequestOutputContext","FragnoApiError","FragnoApiValidationError","FragnoPublicConfig","RouteHandlerInputOptions","RouteCallerConfig","RouteCallerForFragment","createRouteCaller","StandardSchemaV1","StandardSchemaV1$1","HTTPMethod","NonGetHTTPMethod","Exclude","PathError","T","TMessage","ValidPath","Rest","RequestThisContext","RouteContentType","FragnoRouteConfig","TMethod","TPath","TInputSchema","TOutputSchema","TErrorCode","TQueryParameters","TThisContext","Response","Promise","method","path","contentType","inputSchema","outputSchema","errorCodes","queryParameters","handler","this","inputCtx","outputCtx","addRoute","route"],"sources":["../../../fragno/dist/api/internal/path.d.ts","../../../fragno/dist/api/mutable-request-state.d.ts","../../../fragno/dist/api/request-input-context.d.ts","../../../fragno/dist/http/http-status.d.ts","../../../fragno/dist/util/types-util.d.ts","../../../fragno/dist/api/internal/response-stream.d.ts","../../../fragno/dist/api/request-output-context.d.ts","../../../fragno/dist/api/shared-types.d.ts","../../../fragno/dist/client/client-error.d.ts","../../../../node_modules/.pnpm/nanostores@1.2.0/node_modules/nanostores/atom/index.d.ts","../../../../node_modules/.pnpm/nanostores@1.2.0/node_modules/nanostores/map/index.d.ts","../../../../node_modules/.pnpm/@nanostores+query@0.3.4_nanostores@1.2.0/node_modules/@nanostores/query/dist/factory.d.ts","../../../fragno/dist/client/client.d.ts","../../../fragno/dist/api/api.d.ts","../../src/github/types.ts"],"x_google_ignoreList":[9,10,11],"mappings":"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"}