@devvit/reddit 0.11.20-next-2025-08-06-15-03-14-c459c7bda.0 → 0.11.20-next-2025-08-06-17-14-06-e9a297083.0

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.
Files changed (2) hide show
  1. package/models/Post.d.ts +3 -3
  2. package/package.json +10 -10
package/models/Post.d.ts CHANGED
@@ -150,7 +150,7 @@ export type LinkFlair = {
150
150
  * when a user posts a link to that resource, without having to parse the resource directly.
151
151
  * See: https://oembed.com/
152
152
  */
153
- export type OEmbed = {
153
+ export type Oembed = {
154
154
  /** The resource type. Valid values, along with value-specific parameters, are described below. E.g. "video" */
155
155
  type: string;
156
156
  /** A text title, describing the resource. */
@@ -204,9 +204,9 @@ export type RedditVideo = {
204
204
  width?: number | undefined;
205
205
  };
206
206
  export type SecureMedia = {
207
- /** The type of the OEmbed media, if present (e.g. "youtube.com") */
207
+ /** The type of the oEmbed media, if present (e.g. "youtube.com") */
208
208
  type?: string | undefined;
209
- oembed?: OEmbed | undefined;
209
+ oembed?: Oembed | undefined;
210
210
  redditVideo?: RedditVideo | undefined;
211
211
  };
212
212
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/reddit",
3
- "version": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
3
+ "version": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
4
4
  "license": "BSD-3-Clause",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,19 +23,19 @@
23
23
  },
24
24
  "types": "./index.d.ts",
25
25
  "dependencies": {
26
- "@devvit/protos": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
27
- "@devvit/public-api": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
28
- "@devvit/shared": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
29
- "@devvit/shared-types": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
30
- "@devvit/splash": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0"
26
+ "@devvit/protos": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
27
+ "@devvit/public-api": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
28
+ "@devvit/shared": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
29
+ "@devvit/shared-types": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
30
+ "@devvit/splash": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@devvit/server": "*"
34
34
  },
35
35
  "devDependencies": {
36
- "@devvit/repo-tools": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
37
- "@devvit/server": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
38
- "@devvit/tsconfig": "0.11.20-next-2025-08-06-15-03-14-c459c7bda.0",
36
+ "@devvit/repo-tools": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
37
+ "@devvit/server": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
38
+ "@devvit/tsconfig": "0.11.20-next-2025-08-06-17-14-06-e9a297083.0",
39
39
  "eslint": "9.11.1",
40
40
  "typescript": "5.8.3",
41
41
  "vitest": "1.6.1"
@@ -44,5 +44,5 @@
44
44
  "directory": "dist"
45
45
  },
46
46
  "source": "./src/index.ts",
47
- "gitHead": "9308db127790842a16786b46ca735eddecfafe1e"
47
+ "gitHead": "52f87015e070ba430bf4b971f2711afb182d4858"
48
48
  }