Skip to content

NotificationPushEndpoint — @gj-kit/nest-notifications

A public interface from @gj-kit/nest-notifications. The signature below is taken directly from the 0.1.1 release declaration.

import { NotificationPushEndpoint } from '@gj-kit/nest-notifications';
/**
* 전송 포트 — provider 중립(설계 §3.4.5).
*
* 소스가 스스로 "provider port. 저장소도 recipient의 application identity도 모른다"고
* 적어 둔 경계다. 우리는 그 경계를 지운 게 아니라 지킨다 — 어떤 provider SDK도 dependency,
* peer, optional peer 중 무엇으로도 들어오지 않는다(설계 §2.2). provider 고유 지식은
* 별도 서브패스가 무의존 순수 함수로 소유하고, 이 파일은 그 이름조차 모른다(가드가 강제).
*/
interface NotificationPushEndpoint {
readonly id: string;
/** Opaque to this library. The dispatcher's `providers` option decides routing. */
readonly provider: string;
readonly address: string;
}

This declaration is the source of truth for parameters, optionality, generics, return values, and public union/type contracts. Check the package golden path and this subpath’s import conditions for required environment, permission, and error boundaries before calling it.

  • Package: @gj-kit/nest-notifications
  • Version: 0.1.1
  • Public entry: .
  • Source: GitHub