@devvit/public-api 0.10.23-next-2024-06-17-b2cea50bb.0 → 0.10.23-next-2024-06-17-5d2f77199.0

Sign up to get free protection for your applications and to get access to all the features.
package/meta.json CHANGED
@@ -2861,7 +2861,7 @@
2861
2861
  "format": "esm"
2862
2862
  },
2863
2863
  "../protos/dist/types/devvit/runtime/bundle.js": {
2864
- "bytes": 37847,
2864
+ "bytes": 38518,
2865
2865
  "imports": [
2866
2866
  {
2867
2867
  "path": "../../node_modules/protobufjs/minimal.js",
@@ -13900,7 +13900,7 @@
13900
13900
  "bytesInOutput": 1728
13901
13901
  },
13902
13902
  "../protos/dist/types/devvit/runtime/bundle.js": {
13903
- "bytesInOutput": 33157
13903
+ "bytesInOutput": 33743
13904
13904
  },
13905
13905
  "../protos/dist/types/devvit/runtime/serializable.js": {
13906
13906
  "bytesInOutput": 7835
@@ -14539,7 +14539,7 @@
14539
14539
  "bytesInOutput": 4450
14540
14540
  }
14541
14541
  },
14542
- "bytes": 15003247
14542
+ "bytes": 15005257
14543
14543
  }
14544
14544
  }
14545
14545
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/public-api",
3
- "version": "0.10.23-next-2024-06-17-b2cea50bb.0",
3
+ "version": "0.10.23-next-2024-06-17-5d2f77199.0",
4
4
  "license": "BSD-3-Clause",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,8 +30,8 @@
30
30
  },
31
31
  "types": "./index.d.ts",
32
32
  "dependencies": {
33
- "@devvit/protos": "0.10.23-next-2024-06-17-b2cea50bb.0",
34
- "@devvit/shared-types": "0.10.23-next-2024-06-17-b2cea50bb.0",
33
+ "@devvit/protos": "0.10.23-next-2024-06-17-5d2f77199.0",
34
+ "@devvit/shared-types": "0.10.23-next-2024-06-17-5d2f77199.0",
35
35
  "base64-js": "1.5.1",
36
36
  "clone-deep": "4.0.1",
37
37
  "core-js": "3.27.2",
@@ -41,7 +41,7 @@
41
41
  "@ampproject/filesize": "4.3.0",
42
42
  "@devvit/eslint-config": "0.10.22",
43
43
  "@devvit/repo-tools": "0.10.22",
44
- "@devvit/tsconfig": "0.10.23-next-2024-06-17-b2cea50bb.0",
44
+ "@devvit/tsconfig": "0.10.23-next-2024-06-17-5d2f77199.0",
45
45
  "@microsoft/api-extractor": "7.41.0",
46
46
  "@reddit/faceplate-ui": "11.3.3",
47
47
  "@types/clone-deep": "4.0.1",
@@ -64,5 +64,5 @@
64
64
  }
65
65
  },
66
66
  "source": "./src/index.ts",
67
- "gitHead": "c038a10118c3bb88eb285384a1cbab84f5f975fa"
67
+ "gitHead": "e605befe81890a264c4bc042c4a4c9f17d49b4d5"
68
68
  }
package/public-api.d.ts CHANGED
@@ -2862,6 +2862,7 @@ declare const BootstrapActorDefinition: {
2862
2862
  version?: string;
2863
2863
  } | undefined;
2864
2864
  code?: string;
2865
+ sourceMap?: string | undefined;
2865
2866
  hostname?: string;
2866
2867
  provides?: {
2867
2868
  fullName?: string;
@@ -2898,6 +2899,7 @@ declare const BootstrapActorDefinition: {
2898
2899
  version?: string;
2899
2900
  } | undefined;
2900
2901
  code?: string;
2902
+ sourceMap?: string | undefined;
2901
2903
  hostname?: string;
2902
2904
  provides?: {
2903
2905
  fullName?: string;
@@ -4124,6 +4126,7 @@ declare const BundleServiceDefinition: {
4124
4126
  version?: string;
4125
4127
  } | undefined;
4126
4128
  code?: string;
4129
+ sourceMap?: string | undefined;
4127
4130
  hostname?: string;
4128
4131
  provides?: {
4129
4132
  fullName?: string;
@@ -4160,6 +4163,7 @@ declare const BundleServiceDefinition: {
4160
4163
  version?: string;
4161
4164
  } | undefined;
4162
4165
  code?: string;
4166
+ sourceMap?: string | undefined;
4163
4167
  hostname?: string;
4164
4168
  provides?: {
4165
4169
  fullName?: string;
@@ -4229,6 +4233,7 @@ declare const BundleServiceDefinition: {
4229
4233
  version?: string;
4230
4234
  } | undefined;
4231
4235
  code?: string;
4236
+ sourceMap?: string | undefined;
4232
4237
  hostname?: string;
4233
4238
  provides?: {
4234
4239
  fullName?: string;
@@ -4265,6 +4270,7 @@ declare const BundleServiceDefinition: {
4265
4270
  version?: string;
4266
4271
  } | undefined;
4267
4272
  code?: string;
4273
+ sourceMap?: string | undefined;
4268
4274
  hostname?: string;
4269
4275
  provides?: {
4270
4276
  fullName?: string;
@@ -17280,6 +17286,11 @@ declare interface LinkedBundle {
17280
17286
  * this is empty for "skinny bundles" (AKA Gateway bundles).
17281
17287
  */
17282
17288
  code: string;
17289
+ /**
17290
+ * Source map accompanying code. This should be a JSON string containing the
17291
+ * source map bundle accompanying the code. Not required.
17292
+ */
17293
+ sourceMap?: string | undefined;
17283
17294
  /**
17284
17295
  * Actor hostname. This may be a plugin or a user. See DependencySpec.hostname
17285
17296
  * which Community Portal copies here.
@@ -47486,6 +47497,7 @@ declare const RuntimeActorDefinition: {
47486
47497
  version?: string;
47487
47498
  } | undefined;
47488
47499
  code?: string;
47500
+ sourceMap?: string | undefined;
47489
47501
  hostname?: string;
47490
47502
  provides?: {
47491
47503
  fullName?: string;
@@ -47522,6 +47534,7 @@ declare const RuntimeActorDefinition: {
47522
47534
  version?: string;
47523
47535
  } | undefined;
47524
47536
  code?: string;
47537
+ sourceMap?: string | undefined;
47525
47538
  hostname?: string;
47526
47539
  provides?: {
47527
47540
  fullName?: string;
@@ -50849,6 +50862,7 @@ declare const SubredditMetadataResolverDefinition: {
50849
50862
  version?: string;
50850
50863
  } | undefined;
50851
50864
  code?: string;
50865
+ sourceMap?: string | undefined;
50852
50866
  hostname?: string;
50853
50867
  provides?: {
50854
50868
  fullName?: string;
@@ -50925,6 +50939,7 @@ declare const SubredditMetadataResolverDefinition: {
50925
50939
  version?: string;
50926
50940
  } | undefined;
50927
50941
  code?: string;
50942
+ sourceMap?: string | undefined;
50928
50943
  hostname?: string;
50929
50944
  provides?: {
50930
50945
  fullName?: string;
@@ -55855,6 +55870,7 @@ declare const SupervisorDefinition: {
55855
55870
  version?: string;
55856
55871
  } | undefined;
55857
55872
  code?: string;
55873
+ sourceMap?: string | undefined;
55858
55874
  hostname?: string;
55859
55875
  provides?: {
55860
55876
  fullName?: string;
@@ -55891,6 +55907,7 @@ declare const SupervisorDefinition: {
55891
55907
  version?: string;
55892
55908
  } | undefined;
55893
55909
  code?: string;
55910
+ sourceMap?: string | undefined;
55894
55911
  hostname?: string;
55895
55912
  provides?: {
55896
55913
  fullName?: string;