Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@gcforms/announce

Package Overview
Dependencies
Maintainers
6
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gcforms/announce - npm Package Compare versions

Comparing version
1.0.2
to
1.0.3
+1
-1
package.json
{
"name": "@gcforms/announce",
"version": "1.0.2",
"version": "1.0.3",
"author": "Canadian Digital Service",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -6,6 +6,7 @@ "use client";

export enum Priority {
LOW = "polite",
HIGH = "assertive",
}
export const Priority = {
LOW: "polite",
HIGH: "assertive",
} as const;
export type Priority = (typeof Priority)[keyof typeof Priority];

@@ -12,0 +13,0 @@ interface Message {