@absolutejs/absolute 0.19.0-beta.956 → 0.19.0-beta.957
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/dist/types/jsonLd.d.ts
CHANGED
|
@@ -22,6 +22,9 @@ export type ContactPoint = {
|
|
|
22
22
|
telephone?: string;
|
|
23
23
|
contactType?: string;
|
|
24
24
|
availableLanguage?: string | string[];
|
|
25
|
+
email?: string;
|
|
26
|
+
url?: string;
|
|
27
|
+
areaServed?: string | string[];
|
|
25
28
|
};
|
|
26
29
|
export type Offer = {
|
|
27
30
|
'@type': 'Offer';
|
|
@@ -30,6 +33,9 @@ export type Offer = {
|
|
|
30
33
|
availability?: string;
|
|
31
34
|
url?: string;
|
|
32
35
|
validFrom?: string;
|
|
36
|
+
category?: string;
|
|
37
|
+
itemCondition?: string;
|
|
38
|
+
sku?: string;
|
|
33
39
|
};
|
|
34
40
|
export type AggregateRating = {
|
|
35
41
|
'@type': 'AggregateRating';
|
|
@@ -82,7 +88,20 @@ export type OrganizationSchema = {
|
|
|
82
88
|
email?: string;
|
|
83
89
|
telephone?: string;
|
|
84
90
|
sameAs?: string[];
|
|
85
|
-
contactPoint?: ContactPoint;
|
|
91
|
+
contactPoint?: ContactPoint | ContactPoint[];
|
|
92
|
+
legalName?: string;
|
|
93
|
+
founder?: PersonSchema;
|
|
94
|
+
founders?: PersonSchema[];
|
|
95
|
+
slogan?: string;
|
|
96
|
+
numberOfEmployees?: string | number;
|
|
97
|
+
parentOrganization?: OrganizationSchema;
|
|
98
|
+
subOrganization?: OrganizationSchema | OrganizationSchema[];
|
|
99
|
+
brand?: OrganizationSchema | {
|
|
100
|
+
'@type': 'Brand';
|
|
101
|
+
name: string;
|
|
102
|
+
};
|
|
103
|
+
keywords?: string | string[];
|
|
104
|
+
knowsAbout?: string | string[];
|
|
86
105
|
};
|
|
87
106
|
export type WebSiteSchema = {
|
|
88
107
|
'@type': 'WebSite';
|
|
@@ -243,8 +262,18 @@ export type SoftwareApplicationSchema = {
|
|
|
243
262
|
image?: string;
|
|
244
263
|
operatingSystem?: string;
|
|
245
264
|
applicationCategory?: string;
|
|
246
|
-
offers?: Offer;
|
|
265
|
+
offers?: Offer | Offer[];
|
|
247
266
|
aggregateRating?: AggregateRating;
|
|
267
|
+
url?: string;
|
|
268
|
+
featureList?: string | string[];
|
|
269
|
+
screenshot?: string | ImageObject | (string | ImageObject)[];
|
|
270
|
+
softwareVersion?: string;
|
|
271
|
+
applicationSubCategory?: string;
|
|
272
|
+
downloadUrl?: string;
|
|
273
|
+
installUrl?: string;
|
|
274
|
+
releaseNotes?: string;
|
|
275
|
+
softwareRequirements?: string;
|
|
276
|
+
permissions?: string;
|
|
248
277
|
};
|
|
249
278
|
export type JobPostingSchema = {
|
|
250
279
|
'@type': 'JobPosting';
|
package/package.json
CHANGED