You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`isLocked()`| Returns whether the feed is open for importing to new platforms. |
14
+
|`isLocked()``isPodcastIndexLocked()`| Returns whether the feed is open for importing to new platforms. |
15
15
|`getLockOwner()``getPodcastIndexLockOwner()`| Returns the email address for owner verification. |
16
16
|`getFunding()``getPodcastIndexFunding()`| Returns funding information. The output is an object with "url" and "value" properties. |
17
17
|`getPodcastIndexLicense()`| Returns license information. The output is an object with "identifier" and "url" properties. |
18
-
|`getPodcastIndexLocation()`| Returns funding information. The output is an object with "description", "geo" and "osm" properties.|
18
+
|`getPodcastIndexLocation()`| Returns location information. The output is an object with "description", "geo" and "osm" properties. |
19
19
|`getPodcastIndexImages()`| Returns information on responsive images. The output is an object with a "srcset" property. |
20
20
|`getPodcastIndexUpdateFrequency()`| Returns information on the intended release schedule. The output is an object with "description", "complete", "dtstart" and "rrule" properties. |
21
21
|`getPodcastIndexPeople()`| Returns information on the involved people. The output is an array of objects, each with the properties "name", "role", "group", "img" and "href". |
22
+
|`getPodcastIndexTrailer()`| Returns information on the podcast trailer. The output is an object with the properties "title", "pubdate", "url", "length", "type" and "season". |
23
+
|`getPodcastIndexGuid()`| Returns the podcast guid. The output is an object with the property "value". |
24
+
|`getPodcastIndexMedium()`| Returns the podcast medium. The output is an object with the property "value". |
25
+
|`getPodcastIndexBlocks()`| Returns whether or which platforms are allowed to publicly display this feed. The output is an object with the properties "value" and "id". |
26
+
|`getPodcastIndexTxts()`| Returns information on topics that do not have their own tags. The output is an object with the properties "value" and "purpose". |
27
+
|`getPodcastIndexPodping()`| Returns whether the feed sends out Podping notifications when changes are made to it. The output is an object with the property "usesPodping". |
22
28
23
29
### SET methods
24
30
@@ -31,7 +37,15 @@ single namespace.
31
37
|`setPodcastIndexImages()`| Expects an array with the required key "srcset". |
32
38
|`setPodcastIndexUpdateFrequency()`| Expects an array with the required key "description" and the optional keys "complete" (bool), "dtstart" (ISO8601 string) and "rrule". |
33
39
|`addPodcastIndexPerson()`| Expects an array with the required key "name" and the optional keys "role", "group", "img" and "href". |
34
-
|`setPodcastIndexPeople()`| Expects an array of objects with each the required key "name" and the optional keys "role", "group", "img" and "href". |
40
+
|`setPodcastIndexPeople()`| Expects an array of arrays with each the required key "name" and the optional keys "role", "group", "img" and "href". |
41
+
|`setPodcastIndexTrailer()`| Expects an array with the required keys "title", "pubdate" and "url" and the optional keys "length", "type" and "season". |
42
+
|`setPodcastIndexGuid()`| Expects an array with the required key "value". |
43
+
|`setPodcastIndexMedium()`| Expects an array with the required key "value". |
44
+
|`addPodcastIndexBlock()`| Expects an array with the required key "value" and the optional key "id". |
45
+
|`setPodcastIndexBlocks()`| Expects an array of arrays with each the required key "value" and the optional key "id". |
46
+
|`addPodcastIndexTxt()`| Expects an array with the required key "value" and the optional key "purpose". |
47
+
|`setPodcastIndexTxts()`| Expects an array of arrays with each the required key "value" and the optional key "purpose". |
48
+
|`setPodcastIndexPodping()`| Expects an array with the required key "usesPodping". |
0 commit comments