@devvit/public-api 0.10.23-next-2024-06-18-20e2f750d.0 → 0.10.23-next-2024-06-20-ad636c9a6.0

Sign up to get free protection for your applications and to get access to all the features.
package/meta.json CHANGED
@@ -8574,13 +8574,18 @@
8574
8574
  "format": "esm"
8575
8575
  },
8576
8576
  "../protos/dist/types/devvit/plugin/buildpack/buildpack_common.js": {
8577
- "bytes": 26617,
8577
+ "bytes": 27355,
8578
8578
  "imports": [
8579
8579
  {
8580
8580
  "path": "../../node_modules/protobufjs/minimal.js",
8581
8581
  "kind": "import-statement",
8582
8582
  "original": "protobufjs/minimal.js"
8583
8583
  },
8584
+ {
8585
+ "path": "../protos/dist/types/google/protobuf/wrappers.js",
8586
+ "kind": "import-statement",
8587
+ "original": "../../../google/protobuf/wrappers.js"
8588
+ },
8584
8589
  {
8585
8590
  "path": "../protos/dist/types/typeRegistry.js",
8586
8591
  "kind": "import-statement",
@@ -14071,7 +14076,7 @@
14071
14076
  "bytesInOutput": 5385
14072
14077
  },
14073
14078
  "../protos/dist/types/devvit/plugin/buildpack/buildpack_common.js": {
14074
- "bytesInOutput": 23892
14079
+ "bytesInOutput": 24477
14075
14080
  },
14076
14081
  "../protos/dist/types/devvit/plugin/buildpack/filesystem.js": {
14077
14082
  "bytesInOutput": 4801
@@ -14539,7 +14544,7 @@
14539
14544
  "bytesInOutput": 4450
14540
14545
  }
14541
14546
  },
14542
- "bytes": 15005257
14547
+ "bytes": 15007354
14543
14548
  }
14544
14549
  }
14545
14550
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/public-api",
3
- "version": "0.10.23-next-2024-06-18-20e2f750d.0",
3
+ "version": "0.10.23-next-2024-06-20-ad636c9a6.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-18-20e2f750d.0",
34
- "@devvit/shared-types": "0.10.23-next-2024-06-18-20e2f750d.0",
33
+ "@devvit/protos": "0.10.23-next-2024-06-20-ad636c9a6.0",
34
+ "@devvit/shared-types": "0.10.23-next-2024-06-20-ad636c9a6.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-18-20e2f750d.0",
44
+ "@devvit/tsconfig": "0.10.23-next-2024-06-20-ad636c9a6.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": "36db8d8381a44f43f0daec46ceacc9f95554bb49"
67
+ "gitHead": "2edd8576dc0e6ff00e23024b20cd8691d9572315"
68
68
  }
package/public-api.d.ts CHANGED
@@ -3313,6 +3313,7 @@ declare const BuildPackDefinition: {
3313
3313
  create(base?: {
3314
3314
  bundle?: {
3315
3315
  code?: string;
3316
+ sourceMap?: string | undefined;
3316
3317
  dependencies?: {
3317
3318
  actor?: {
3318
3319
  name?: string;
@@ -3397,6 +3398,7 @@ declare const BuildPackDefinition: {
3397
3398
  fromPartial(object: {
3398
3399
  bundle?: {
3399
3400
  code?: string;
3401
+ sourceMap?: string | undefined;
3400
3402
  dependencies?: {
3401
3403
  actor?: {
3402
3404
  name?: string;
@@ -3538,6 +3540,7 @@ declare const BuildPackDefinition: {
3538
3540
  create(base?: {
3539
3541
  bundle?: {
3540
3542
  code?: string;
3543
+ sourceMap?: string | undefined;
3541
3544
  dependencies?: {
3542
3545
  actor?: {
3543
3546
  name?: string;
@@ -3622,6 +3625,7 @@ declare const BuildPackDefinition: {
3622
3625
  fromPartial(object: {
3623
3626
  bundle?: {
3624
3627
  code?: string;
3628
+ sourceMap?: string | undefined;
3625
3629
  dependencies?: {
3626
3630
  actor?: {
3627
3631
  name?: string;
@@ -3992,6 +3996,8 @@ declare const BulkReadConversationsResponse: {
3992
3996
  declare interface Bundle {
3993
3997
  /** See LinkedBundle.code. */
3994
3998
  code: string;
3999
+ /** See LinkedBundle.source_map. */
4000
+ sourceMap?: string | undefined;
3995
4001
  /**
3996
4002
  * This is the the detail on the bundle itself **and** its dependendencies.
3997
4003
  *
@@ -17435,6 +17441,7 @@ declare const LinkerDefinition: {
17435
17441
  toJSON(message: Bundle): unknown;
17436
17442
  create(base?: {
17437
17443
  code?: string;
17444
+ sourceMap?: string | undefined;
17438
17445
  dependencies?: {
17439
17446
  actor?: {
17440
17447
  name?: string;
@@ -17497,6 +17504,7 @@ declare const LinkerDefinition: {
17497
17504
  } | undefined): Bundle;
17498
17505
  fromPartial(object: {
17499
17506
  code?: string;
17507
+ sourceMap?: string | undefined;
17500
17508
  dependencies?: {
17501
17509
  actor?: {
17502
17510
  name?: string;
@@ -46931,6 +46939,7 @@ declare const ResolverDefinition: {
46931
46939
  toJSON(message: Bundle): unknown;
46932
46940
  create(base?: {
46933
46941
  code?: string;
46942
+ sourceMap?: string | undefined;
46934
46943
  dependencies?: {
46935
46944
  actor?: {
46936
46945
  name?: string;
@@ -46993,6 +47002,7 @@ declare const ResolverDefinition: {
46993
47002
  } | undefined): Bundle;
46994
47003
  fromPartial(object: {
46995
47004
  code?: string;
47005
+ sourceMap?: string | undefined;
46996
47006
  dependencies?: {
46997
47007
  actor?: {
46998
47008
  name?: string;