@pipobscure/vcard 0.0.1
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/LICENSE +190 -0
- package/README.md +1079 -0
- package/dist/escape.d.ts +59 -0
- package/dist/escape.d.ts.map +1 -0
- package/dist/escape.js +136 -0
- package/dist/escape.js.map +1 -0
- package/dist/generator.d.ts +49 -0
- package/dist/generator.d.ts.map +1 -0
- package/dist/generator.js +194 -0
- package/dist/generator.js.map +1 -0
- package/dist/index.d.ts +47 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +85 -0
- package/dist/index.js.map +1 -0
- package/dist/parser.d.ts +54 -0
- package/dist/parser.d.ts.map +1 -0
- package/dist/parser.js +381 -0
- package/dist/parser.js.map +1 -0
- package/dist/property.d.ts +347 -0
- package/dist/property.d.ts.map +1 -0
- package/dist/property.js +854 -0
- package/dist/property.js.map +1 -0
- package/dist/tests/edgecases.test.d.ts +10 -0
- package/dist/tests/edgecases.test.d.ts.map +1 -0
- package/dist/tests/edgecases.test.js +950 -0
- package/dist/tests/edgecases.test.js.map +1 -0
- package/dist/tests/vcard.test.d.ts +6 -0
- package/dist/tests/vcard.test.d.ts.map +1 -0
- package/dist/tests/vcard.test.js +496 -0
- package/dist/tests/vcard.test.js.map +1 -0
- package/dist/types.d.ts +94 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/dist/vcard.d.ts +177 -0
- package/dist/vcard.d.ts.map +1 -0
- package/dist/vcard.js +424 -0
- package/dist/vcard.js.map +1 -0
- package/package.json +39 -0
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core type definitions for vCard v4 (RFC 6350)
|
|
3
|
+
*/
|
|
4
|
+
/** All value types defined in RFC 6350 section 4 */
|
|
5
|
+
export type ValueType = 'text' | 'uri' | 'date' | 'time' | 'date-time' | 'date-and-or-time' | 'timestamp' | 'boolean' | 'integer' | 'float' | 'utc-offset' | 'language-tag';
|
|
6
|
+
/** Well-known TYPE parameter values */
|
|
7
|
+
export type TypeValue = 'work' | 'home' | 'voice' | 'fax' | 'cell' | 'video' | 'pager' | 'textphone' | 'text' | 'contact' | 'acquaintance' | 'friend' | 'met' | 'co-worker' | 'colleague' | 'co-resident' | 'neighbor' | 'child' | 'parent' | 'sibling' | 'spouse' | 'kin' | 'muse' | 'crush' | 'date' | 'sweetheart' | 'me' | 'agent' | 'emergency' | string;
|
|
8
|
+
/** KIND property values */
|
|
9
|
+
export type KindValue = 'individual' | 'group' | 'org' | 'location' | string;
|
|
10
|
+
/** GENDER sex component */
|
|
11
|
+
export type GenderSex = 'M' | 'F' | 'O' | 'N' | 'U' | '';
|
|
12
|
+
/**
|
|
13
|
+
* Partial date representation (RFC 6350 section 4.3.1).
|
|
14
|
+
* Supports reduced accuracy: year-only, year-month, or full date.
|
|
15
|
+
* Also supports omitted year (month-day only) for birthdays where year is unknown.
|
|
16
|
+
*/
|
|
17
|
+
export interface PartialDate {
|
|
18
|
+
year?: number;
|
|
19
|
+
month?: number;
|
|
20
|
+
day?: number;
|
|
21
|
+
}
|
|
22
|
+
/** Time-of-day representation */
|
|
23
|
+
export interface TimeValue {
|
|
24
|
+
hour?: number;
|
|
25
|
+
minute?: number;
|
|
26
|
+
second?: number;
|
|
27
|
+
/** UTC offset: '+HH:MM', '-HH:MM', or 'Z' */
|
|
28
|
+
utcOffset?: string;
|
|
29
|
+
}
|
|
30
|
+
/** Combined date-and-or-time value */
|
|
31
|
+
export interface DateAndOrTime extends PartialDate, TimeValue {
|
|
32
|
+
hasTime: boolean;
|
|
33
|
+
}
|
|
34
|
+
/** Structured name (N property) — RFC 6350 section 6.2.2 */
|
|
35
|
+
export interface StructuredName {
|
|
36
|
+
familyNames: string[];
|
|
37
|
+
givenNames: string[];
|
|
38
|
+
additionalNames: string[];
|
|
39
|
+
honorificPrefixes: string[];
|
|
40
|
+
honorificSuffixes: string[];
|
|
41
|
+
}
|
|
42
|
+
/** Postal address (ADR property) — RFC 6350 section 6.3.1 */
|
|
43
|
+
export interface Address {
|
|
44
|
+
postOfficeBox: string;
|
|
45
|
+
extendedAddress: string;
|
|
46
|
+
streetAddress: string;
|
|
47
|
+
locality: string;
|
|
48
|
+
region: string;
|
|
49
|
+
postalCode: string;
|
|
50
|
+
countryName: string;
|
|
51
|
+
}
|
|
52
|
+
/** Organization (ORG property) — RFC 6350 section 6.6.4 */
|
|
53
|
+
export interface Organization {
|
|
54
|
+
name: string;
|
|
55
|
+
units: string[];
|
|
56
|
+
}
|
|
57
|
+
/** Gender value — RFC 6350 section 6.2.7 */
|
|
58
|
+
export interface Gender {
|
|
59
|
+
sex: GenderSex;
|
|
60
|
+
identity?: string;
|
|
61
|
+
}
|
|
62
|
+
/** CLIENTPIDMAP value — RFC 6350 section 6.7.7 */
|
|
63
|
+
export interface ClientPidMap {
|
|
64
|
+
pid: number;
|
|
65
|
+
uri: string;
|
|
66
|
+
}
|
|
67
|
+
/** Geographic position — URI format: geo:lat,lon */
|
|
68
|
+
export interface GeoCoordinates {
|
|
69
|
+
latitude: number;
|
|
70
|
+
longitude: number;
|
|
71
|
+
}
|
|
72
|
+
/** Raw parameter storage: parameter name → value or list of values */
|
|
73
|
+
export type ParameterMap = Map<string, string | string[]>;
|
|
74
|
+
/**
|
|
75
|
+
* A property as parsed from text, before type-specific value interpretation.
|
|
76
|
+
* Useful for round-tripping unknown properties.
|
|
77
|
+
*/
|
|
78
|
+
export interface RawProperty {
|
|
79
|
+
group?: string;
|
|
80
|
+
name: string;
|
|
81
|
+
parameters: ParameterMap;
|
|
82
|
+
value: string;
|
|
83
|
+
}
|
|
84
|
+
/** A validation error with context */
|
|
85
|
+
export interface ValidationError {
|
|
86
|
+
property: string;
|
|
87
|
+
message: string;
|
|
88
|
+
}
|
|
89
|
+
/** Result of vCard validation */
|
|
90
|
+
export interface ValidationResult {
|
|
91
|
+
valid: boolean;
|
|
92
|
+
errors: ValidationError[];
|
|
93
|
+
}
|
|
94
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/dist/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;GAEG"}
|
package/dist/vcard.d.ts
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VCard — the main vCard v4 container class (RFC 6350)
|
|
3
|
+
*
|
|
4
|
+
* Provides typed access to all RFC 6350 properties, plus methods for
|
|
5
|
+
* parsing and generating vCard text.
|
|
6
|
+
*/
|
|
7
|
+
import type { ValidationResult } from './types.js';
|
|
8
|
+
import { Property, VCardError, FNProperty, NProperty, NicknameProperty, PhotoProperty, BDayProperty, AnniversaryProperty, GenderProperty, AdrProperty, TelProperty, EmailProperty, IMPPProperty, LangProperty, TZProperty, GeoProperty, TitleProperty, RoleProperty, LogoProperty, OrgProperty, MemberProperty, RelatedProperty, CategoriesProperty, NoteProperty, ProdIDProperty, RevProperty, SoundProperty, UIDProperty, ClientPidMapProperty, URLProperty, KeyProperty, FBURLProperty, CALADRURIProperty, CALURIProperty, KindProperty, XMLProperty, SourceProperty, UnknownProperty } from './property.js';
|
|
9
|
+
import { type ParseWarning } from './parser.js';
|
|
10
|
+
import { type GenerateOptions } from './generator.js';
|
|
11
|
+
/**
|
|
12
|
+
* A vCard v4 object.
|
|
13
|
+
*
|
|
14
|
+
* Properties with cardinality `1*` are arrays that must have at least one
|
|
15
|
+
* element before generating. Properties with cardinality `*1` are single
|
|
16
|
+
* optional values. Properties with cardinality `*` are arrays.
|
|
17
|
+
*
|
|
18
|
+
* Usage:
|
|
19
|
+
* ```ts
|
|
20
|
+
* // Parse
|
|
21
|
+
* const [vcard] = VCard.parse(text);
|
|
22
|
+
*
|
|
23
|
+
* // Build
|
|
24
|
+
* const vcard = new VCard();
|
|
25
|
+
* vcard.fn.push(new FNProperty('Alice Example'));
|
|
26
|
+
* vcard.email.push(new EmailProperty('alice@example.com'));
|
|
27
|
+
* console.log(vcard.toString());
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
export declare class VCard {
|
|
31
|
+
/** vCard version string (from parsing — always '4.0' when generating) */
|
|
32
|
+
parsedVersion: string;
|
|
33
|
+
/** Warnings accumulated during parsing */
|
|
34
|
+
parseWarnings: ParseWarning[];
|
|
35
|
+
/** Formatted Name — required, at least one (RFC 6350 §6.2.1) */
|
|
36
|
+
fn: FNProperty[];
|
|
37
|
+
/** Structured Name (RFC 6350 §6.2.2) */
|
|
38
|
+
n?: NProperty;
|
|
39
|
+
/** Birthday (RFC 6350 §6.2.5) */
|
|
40
|
+
bday?: BDayProperty;
|
|
41
|
+
/** Anniversary (RFC 6350 §6.2.6) */
|
|
42
|
+
anniversary?: AnniversaryProperty;
|
|
43
|
+
/** Gender (RFC 6350 §6.2.7) */
|
|
44
|
+
gender?: GenderProperty;
|
|
45
|
+
/** Product Identifier (RFC 6350 §6.7.3) */
|
|
46
|
+
prodid?: ProdIDProperty;
|
|
47
|
+
/** Revision timestamp (RFC 6350 §6.7.4) */
|
|
48
|
+
rev?: RevProperty;
|
|
49
|
+
/** Unique Identifier (RFC 6350 §6.7.6) */
|
|
50
|
+
uid?: UIDProperty;
|
|
51
|
+
/** Kind (RFC 6350 §6.1.4) */
|
|
52
|
+
kind?: KindProperty;
|
|
53
|
+
/** Nicknames (RFC 6350 §6.2.3) */
|
|
54
|
+
nickname: NicknameProperty[];
|
|
55
|
+
/** Photos (RFC 6350 §6.2.4) */
|
|
56
|
+
photo: PhotoProperty[];
|
|
57
|
+
/** Addresses (RFC 6350 §6.3.1) */
|
|
58
|
+
adr: AdrProperty[];
|
|
59
|
+
/** Telephone numbers (RFC 6350 §6.4.1) */
|
|
60
|
+
tel: TelProperty[];
|
|
61
|
+
/** Email addresses (RFC 6350 §6.4.2) */
|
|
62
|
+
email: EmailProperty[];
|
|
63
|
+
/** Instant Messaging (RFC 6350 §6.4.3) */
|
|
64
|
+
impp: IMPPProperty[];
|
|
65
|
+
/** Languages (RFC 6350 §6.4.4) */
|
|
66
|
+
lang: LangProperty[];
|
|
67
|
+
/** Time zones (RFC 6350 §6.5.1) */
|
|
68
|
+
tz: TZProperty[];
|
|
69
|
+
/** Geographic positions (RFC 6350 §6.5.2) */
|
|
70
|
+
geo: GeoProperty[];
|
|
71
|
+
/** Titles (RFC 6350 §6.6.1) */
|
|
72
|
+
title: TitleProperty[];
|
|
73
|
+
/** Roles (RFC 6350 §6.6.2) */
|
|
74
|
+
role: RoleProperty[];
|
|
75
|
+
/** Logos (RFC 6350 §6.6.3) */
|
|
76
|
+
logo: LogoProperty[];
|
|
77
|
+
/** Organizations (RFC 6350 §6.6.4) */
|
|
78
|
+
org: OrgProperty[];
|
|
79
|
+
/** Group members (RFC 6350 §6.6.5) */
|
|
80
|
+
member: MemberProperty[];
|
|
81
|
+
/** Related entities (RFC 6350 §6.6.6) */
|
|
82
|
+
related: RelatedProperty[];
|
|
83
|
+
/** Categories (RFC 6350 §6.7.1) */
|
|
84
|
+
categories: CategoriesProperty[];
|
|
85
|
+
/** Notes (RFC 6350 §6.7.2) */
|
|
86
|
+
note: NoteProperty[];
|
|
87
|
+
/** Sounds (RFC 6350 §6.7.5) */
|
|
88
|
+
sound: SoundProperty[];
|
|
89
|
+
/** Client PID maps (RFC 6350 §6.7.7) */
|
|
90
|
+
clientpidmap: ClientPidMapProperty[];
|
|
91
|
+
/** URLs (RFC 6350 §6.7.8) */
|
|
92
|
+
url: URLProperty[];
|
|
93
|
+
/** Public keys (RFC 6350 §6.8.1) */
|
|
94
|
+
key: KeyProperty[];
|
|
95
|
+
/** Free/Busy URLs (RFC 6350 §6.9.1) */
|
|
96
|
+
fburl: FBURLProperty[];
|
|
97
|
+
/** Calendar User Address URIs (RFC 6350 §6.9.2) */
|
|
98
|
+
caladruri: CALADRURIProperty[];
|
|
99
|
+
/** Calendar URIs (RFC 6350 §6.9.3) */
|
|
100
|
+
caluri: CALURIProperty[];
|
|
101
|
+
/** Source URIs (RFC 6350 §6.1.3) */
|
|
102
|
+
source: SourceProperty[];
|
|
103
|
+
/** XML properties (RFC 6350 §6.1.5) */
|
|
104
|
+
xml: XMLProperty[];
|
|
105
|
+
/** Unknown / extended / vendor properties (stored for round-tripping) */
|
|
106
|
+
extended: UnknownProperty[];
|
|
107
|
+
/**
|
|
108
|
+
* Parse one or more vCards from text.
|
|
109
|
+
* Tolerant: never throws, collects warnings instead.
|
|
110
|
+
*
|
|
111
|
+
* @returns Array of VCard instances (may be empty if input has no vCards)
|
|
112
|
+
*/
|
|
113
|
+
static parse(text: string): VCard[];
|
|
114
|
+
/**
|
|
115
|
+
* Parse exactly one vCard from text.
|
|
116
|
+
* @throws Error if zero vCards are found
|
|
117
|
+
*/
|
|
118
|
+
static parseOne(text: string): VCard;
|
|
119
|
+
/**
|
|
120
|
+
* Quick-create a vCard with just a formatted name.
|
|
121
|
+
* Useful for programmatic construction.
|
|
122
|
+
*/
|
|
123
|
+
static create(fn: string): VCard;
|
|
124
|
+
/** Construct a VCard from a flat list of Property instances */
|
|
125
|
+
private static fromRaw;
|
|
126
|
+
/**
|
|
127
|
+
* Add a property to this vCard, routing it to the appropriate typed field.
|
|
128
|
+
* Unknown properties go to `extended`.
|
|
129
|
+
*/
|
|
130
|
+
addProperty(prop: Property): void;
|
|
131
|
+
/**
|
|
132
|
+
* Get all properties as a flat array, in logical order.
|
|
133
|
+
* Includes all typed properties and extended properties.
|
|
134
|
+
*/
|
|
135
|
+
allProperties(): Property[];
|
|
136
|
+
/**
|
|
137
|
+
* Get the primary (most preferred or first) formatted name string.
|
|
138
|
+
*/
|
|
139
|
+
get displayName(): string;
|
|
140
|
+
/**
|
|
141
|
+
* Get the primary email address string.
|
|
142
|
+
*/
|
|
143
|
+
get primaryEmail(): string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* Get the primary telephone string.
|
|
146
|
+
*/
|
|
147
|
+
get primaryTel(): string | undefined;
|
|
148
|
+
/**
|
|
149
|
+
* Generate RFC 6350-compliant vCard text.
|
|
150
|
+
* Uses strict CRLF line endings and 75-octet line folding.
|
|
151
|
+
*
|
|
152
|
+
* @throws VCardError if the vCard is invalid (e.g. missing FN)
|
|
153
|
+
*/
|
|
154
|
+
toString(options?: GenerateOptions): string;
|
|
155
|
+
/**
|
|
156
|
+
* Generate without validation (useful for partial/draft vCards).
|
|
157
|
+
* Use with caution — output may not be RFC-compliant.
|
|
158
|
+
*/
|
|
159
|
+
toStringLenient(): string;
|
|
160
|
+
/**
|
|
161
|
+
* Validate this vCard against RFC 6350 requirements.
|
|
162
|
+
* Returns a result object rather than throwing.
|
|
163
|
+
*/
|
|
164
|
+
validate(): ValidationResult;
|
|
165
|
+
/**
|
|
166
|
+
* Deep-clone by round-tripping through text serialization.
|
|
167
|
+
* Produces a clean v4 vCard from whatever version was parsed.
|
|
168
|
+
*/
|
|
169
|
+
clone(): VCard;
|
|
170
|
+
/**
|
|
171
|
+
* Convert to a plain object suitable for JSON serialization (jCard-ish).
|
|
172
|
+
* This is a simplified representation, not full jCard (RFC 7095).
|
|
173
|
+
*/
|
|
174
|
+
toJSON(): Record<string, unknown>;
|
|
175
|
+
}
|
|
176
|
+
export { VCardError };
|
|
177
|
+
//# sourceMappingURL=vcard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vcard.d.ts","sourceRoot":"","sources":["../src/vcard.ts"],"names":[],"mappings":"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"}
|