@devvit/public-api 0.11.0-next-2024-07-24-1be38cc96.0 → 0.11.0-next-2024-07-25-1378e6e47.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. package/meta.json +116 -116
  2. package/package.json +7 -7
  3. package/public-api.d.ts +218 -708
  4. package/public-api.iife.js +4411 -7262
package/public-api.d.ts CHANGED
@@ -674,12 +674,8 @@ declare const AllowEditorRequest: {
674
674
  * if (any.is(Foo.class)) {
675
675
  * foo = any.unpack(Foo.class);
676
676
  * }
677
- * // or ...
678
- * if (any.isSameTypeAs(Foo.getDefaultInstance())) {
679
- * foo = any.unpack(Foo.getDefaultInstance());
680
- * }
681
677
  *
682
- * Example 3: Pack and unpack a message in Python.
678
+ * Example 3: Pack and unpack a message in Python.
683
679
  *
684
680
  * foo = Foo(...)
685
681
  * any = Any()
@@ -689,7 +685,7 @@ declare const AllowEditorRequest: {
689
685
  * any.Unpack(foo)
690
686
  * ...
691
687
  *
692
- * Example 4: Pack and unpack a message in Go
688
+ * Example 4: Pack and unpack a message in Go
693
689
  *
694
690
  * foo := &pb.Foo{...}
695
691
  * any, err := anypb.New(foo)
@@ -709,7 +705,7 @@ declare const AllowEditorRequest: {
709
705
  * name "y.z".
710
706
  *
711
707
  * JSON
712
- * ====
708
+ *
713
709
  * The JSON representation of an `Any` value uses the regular
714
710
  * representation of the deserialized, embedded message, with an
715
711
  * additional field `@type` which contains the type URL. Example:
@@ -761,8 +757,7 @@ declare interface Any {
761
757
  *
762
758
  * Note: this functionality is not currently available in the official
763
759
  * protobuf release, and it is not used for type URLs beginning with
764
- * type.googleapis.com. As of May 2023, there are no widely used type server
765
- * implementations and no plans to implement one.
760
+ * type.googleapis.com.
766
761
  *
767
762
  * Schemes other than `http`, `https` (or the empty scheme) might be
768
763
  * used with implementation specific semantics.
@@ -10375,52 +10370,6 @@ export declare type EditFlairTemplateOptions = CreateFlairTemplateOptions & {
10375
10370
  id: string;
10376
10371
  };
10377
10372
 
10378
- /** The full set of known editions. */
10379
- declare enum Edition {
10380
- /** EDITION_UNKNOWN - A placeholder for an unknown edition value. */
10381
- EDITION_UNKNOWN = 0,
10382
- /**
10383
- * EDITION_LEGACY - A placeholder edition for specifying default behaviors *before* a feature
10384
- * was first introduced. This is effectively an "infinite past".
10385
- */
10386
- EDITION_LEGACY = 900,
10387
- /**
10388
- * EDITION_PROTO2 - Legacy syntax "editions". These pre-date editions, but behave much like
10389
- * distinct editions. These can't be used to specify the edition of proto
10390
- * files, but feature definitions must supply proto2/proto3 defaults for
10391
- * backwards compatibility.
10392
- */
10393
- EDITION_PROTO2 = 998,
10394
- EDITION_PROTO3 = 999,
10395
- /**
10396
- * EDITION_2023 - Editions that have been released. The specific values are arbitrary and
10397
- * should not be depended on, but they will always be time-ordered for easy
10398
- * comparison.
10399
- */
10400
- EDITION_2023 = 1000,
10401
- EDITION_2024 = 1001,
10402
- /**
10403
- * EDITION_1_TEST_ONLY - Placeholder editions for testing feature resolution. These should not be
10404
- * used or relyed on outside of tests.
10405
- */
10406
- EDITION_1_TEST_ONLY = 1,
10407
- EDITION_2_TEST_ONLY = 2,
10408
- EDITION_99997_TEST_ONLY = 99997,
10409
- EDITION_99998_TEST_ONLY = 99998,
10410
- EDITION_99999_TEST_ONLY = 99999,
10411
- /**
10412
- * EDITION_MAX - Placeholder for specifying unbounded edition support. This should only
10413
- * ever be used by plugins that can expect to never require any changes to
10414
- * support a new edition.
10415
- */
10416
- EDITION_MAX = 2147483647,
10417
- UNRECOGNIZED = -1
10418
- }
10419
-
10420
- declare function editionFromJSON(object: any): Edition;
10421
-
10422
- declare function editionToJSON(object: Edition): number;
10423
-
10424
10373
  declare interface EditWikiPageRequest {
10425
10374
  /** The subreddit omitting the r/ prefix. */
10426
10375
  subreddit: string;
@@ -10601,19 +10550,6 @@ declare interface EnumOptions {
10601
10550
  * is a formalization for deprecating enums.
10602
10551
  */
10603
10552
  deprecated?: boolean | undefined;
10604
- /**
10605
- * Enable the legacy handling of JSON field name conflicts. This lowercases
10606
- * and strips underscored from the fields before comparison in proto3 only.
10607
- * The new behavior takes `json_name` into account and applies to proto2 as
10608
- * well.
10609
- * TODO Remove this legacy behavior once downstream teams have
10610
- * had time to migrate.
10611
- *
10612
- * @deprecated
10613
- */
10614
- deprecatedLegacyJsonFieldConflicts?: boolean | undefined;
10615
- /** Any features defined in the specific edition. */
10616
- features?: FeatureSet | undefined;
10617
10553
  /** The parser stores options it doesn't recognize here. See above. */
10618
10554
  uninterpretedOption: UninterpretedOption[];
10619
10555
  }
@@ -10653,16 +10589,6 @@ declare interface EnumValueOptions {
10653
10589
  * this is a formalization for deprecating enum values.
10654
10590
  */
10655
10591
  deprecated?: boolean | undefined;
10656
- /** Any features defined in the specific edition. */
10657
- features?: FeatureSet | undefined;
10658
- /**
10659
- * Indicate that fields annotated with this enum value should not be printed
10660
- * out when using debug formats, e.g. when the field contains sensitive
10661
- * credentials.
10662
- */
10663
- debugRedact?: boolean | undefined;
10664
- /** Information about the support window of a feature value. */
10665
- featureSupport?: FieldOptions_FeatureSupport | undefined;
10666
10592
  /** The parser stores options it doesn't recognize here. See above. */
10667
10593
  uninterpretedOption: UninterpretedOption[];
10668
10594
  }
@@ -10878,20 +10804,6 @@ declare const ExpireRequest: {
10878
10804
  declare interface ExtensionRangeOptions {
10879
10805
  /** The parser stores options it doesn't recognize here. See above. */
10880
10806
  uninterpretedOption: UninterpretedOption[];
10881
- /**
10882
- * For external users: DO NOT USE. We are in the process of open sourcing
10883
- * extension declaration and executing internal cleanups before it can be
10884
- * used externally.
10885
- */
10886
- declaration: ExtensionRangeOptions_Declaration[];
10887
- /** Any features defined in the specific edition. */
10888
- features?: FeatureSet | undefined;
10889
- /**
10890
- * The verification state of the range.
10891
- * TODO: flip the default to DECLARATION once all empty ranges
10892
- * are marked as UNVERIFIED.
10893
- */
10894
- verification?: ExtensionRangeOptions_VerificationState | undefined;
10895
10807
  }
10896
10808
 
10897
10809
  declare const ExtensionRangeOptions: {
@@ -10904,203 +10816,6 @@ declare const ExtensionRangeOptions: {
10904
10816
  fromPartial(object: DeepPartial_104<ExtensionRangeOptions>): ExtensionRangeOptions;
10905
10817
  };
10906
10818
 
10907
- declare interface ExtensionRangeOptions_Declaration {
10908
- /** The extension number declared within the extension range. */
10909
- number?: number | undefined;
10910
- /**
10911
- * The fully-qualified name of the extension field. There must be a leading
10912
- * dot in front of the full name.
10913
- */
10914
- fullName?: string | undefined;
10915
- /**
10916
- * The fully-qualified type name of the extension field. Unlike
10917
- * Metadata.type, Declaration.type must have a leading dot for messages
10918
- * and enums.
10919
- */
10920
- type?: string | undefined;
10921
- /**
10922
- * If true, indicates that the number is reserved in the extension range,
10923
- * and any extension field with the number will fail to compile. Set this
10924
- * when a declared extension field is deleted.
10925
- */
10926
- reserved?: boolean | undefined;
10927
- /**
10928
- * If true, indicates that the extension must be defined as repeated.
10929
- * Otherwise the extension must be defined as optional.
10930
- */
10931
- repeated?: boolean | undefined;
10932
- }
10933
-
10934
- declare const ExtensionRangeOptions_Declaration: {
10935
- $type: "google.protobuf.ExtensionRangeOptions.Declaration";
10936
- encode(message: ExtensionRangeOptions_Declaration, writer?: _m0.Writer): _m0.Writer;
10937
- decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionRangeOptions_Declaration;
10938
- fromJSON(object: any): ExtensionRangeOptions_Declaration;
10939
- toJSON(message: ExtensionRangeOptions_Declaration): unknown;
10940
- create(base?: DeepPartial_104<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
10941
- fromPartial(object: DeepPartial_104<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
10942
- };
10943
-
10944
- /** The verification state of the extension range. */
10945
- declare enum ExtensionRangeOptions_VerificationState {
10946
- /** DECLARATION - All the extensions of the range must be declared. */
10947
- DECLARATION = 0,
10948
- UNVERIFIED = 1,
10949
- UNRECOGNIZED = -1
10950
- }
10951
-
10952
- declare function extensionRangeOptions_VerificationStateFromJSON(object: any): ExtensionRangeOptions_VerificationState;
10953
-
10954
- declare function extensionRangeOptions_VerificationStateToJSON(object: ExtensionRangeOptions_VerificationState): number;
10955
-
10956
- /**
10957
- * TODO Enums in C++ gencode (and potentially other languages) are
10958
- * not well scoped. This means that each of the feature enums below can clash
10959
- * with each other. The short names we've chosen maximize call-site
10960
- * readability, but leave us very open to this scenario. A future feature will
10961
- * be designed and implemented to handle this, hopefully before we ever hit a
10962
- * conflict here.
10963
- */
10964
- declare interface FeatureSet {
10965
- fieldPresence?: FeatureSet_FieldPresence | undefined;
10966
- enumType?: FeatureSet_EnumType | undefined;
10967
- repeatedFieldEncoding?: FeatureSet_RepeatedFieldEncoding | undefined;
10968
- utf8Validation?: FeatureSet_Utf8Validation | undefined;
10969
- messageEncoding?: FeatureSet_MessageEncoding | undefined;
10970
- jsonFormat?: FeatureSet_JsonFormat | undefined;
10971
- }
10972
-
10973
- declare const FeatureSet: {
10974
- $type: "google.protobuf.FeatureSet";
10975
- encode(message: FeatureSet, writer?: _m0.Writer): _m0.Writer;
10976
- decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSet;
10977
- fromJSON(object: any): FeatureSet;
10978
- toJSON(message: FeatureSet): unknown;
10979
- create(base?: DeepPartial_104<FeatureSet>): FeatureSet;
10980
- fromPartial(object: DeepPartial_104<FeatureSet>): FeatureSet;
10981
- };
10982
-
10983
- declare enum FeatureSet_EnumType {
10984
- ENUM_TYPE_UNKNOWN = 0,
10985
- OPEN = 1,
10986
- CLOSED = 2,
10987
- UNRECOGNIZED = -1
10988
- }
10989
-
10990
- declare function featureSet_EnumTypeFromJSON(object: any): FeatureSet_EnumType;
10991
-
10992
- declare function featureSet_EnumTypeToJSON(object: FeatureSet_EnumType): number;
10993
-
10994
- declare enum FeatureSet_FieldPresence {
10995
- FIELD_PRESENCE_UNKNOWN = 0,
10996
- EXPLICIT = 1,
10997
- IMPLICIT = 2,
10998
- LEGACY_REQUIRED = 3,
10999
- UNRECOGNIZED = -1
11000
- }
11001
-
11002
- declare function featureSet_FieldPresenceFromJSON(object: any): FeatureSet_FieldPresence;
11003
-
11004
- declare function featureSet_FieldPresenceToJSON(object: FeatureSet_FieldPresence): number;
11005
-
11006
- declare enum FeatureSet_JsonFormat {
11007
- JSON_FORMAT_UNKNOWN = 0,
11008
- ALLOW = 1,
11009
- LEGACY_BEST_EFFORT = 2,
11010
- UNRECOGNIZED = -1
11011
- }
11012
-
11013
- declare function featureSet_JsonFormatFromJSON(object: any): FeatureSet_JsonFormat;
11014
-
11015
- declare function featureSet_JsonFormatToJSON(object: FeatureSet_JsonFormat): number;
11016
-
11017
- declare enum FeatureSet_MessageEncoding {
11018
- MESSAGE_ENCODING_UNKNOWN = 0,
11019
- LENGTH_PREFIXED = 1,
11020
- DELIMITED = 2,
11021
- UNRECOGNIZED = -1
11022
- }
11023
-
11024
- declare function featureSet_MessageEncodingFromJSON(object: any): FeatureSet_MessageEncoding;
11025
-
11026
- declare function featureSet_MessageEncodingToJSON(object: FeatureSet_MessageEncoding): number;
11027
-
11028
- declare enum FeatureSet_RepeatedFieldEncoding {
11029
- REPEATED_FIELD_ENCODING_UNKNOWN = 0,
11030
- PACKED = 1,
11031
- EXPANDED = 2,
11032
- UNRECOGNIZED = -1
11033
- }
11034
-
11035
- declare function featureSet_RepeatedFieldEncodingFromJSON(object: any): FeatureSet_RepeatedFieldEncoding;
11036
-
11037
- declare function featureSet_RepeatedFieldEncodingToJSON(object: FeatureSet_RepeatedFieldEncoding): number;
11038
-
11039
- declare enum FeatureSet_Utf8Validation {
11040
- UTF8_VALIDATION_UNKNOWN = 0,
11041
- VERIFY = 2,
11042
- NONE = 3,
11043
- UNRECOGNIZED = -1
11044
- }
11045
-
11046
- declare function featureSet_Utf8ValidationFromJSON(object: any): FeatureSet_Utf8Validation;
11047
-
11048
- declare function featureSet_Utf8ValidationToJSON(object: FeatureSet_Utf8Validation): number;
11049
-
11050
- /**
11051
- * A compiled specification for the defaults of a set of features. These
11052
- * messages are generated from FeatureSet extensions and can be used to seed
11053
- * feature resolution. The resolution with this object becomes a simple search
11054
- * for the closest matching edition, followed by proto merges.
11055
- */
11056
- declare interface FeatureSetDefaults {
11057
- defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
11058
- /**
11059
- * The minimum supported edition (inclusive) when this was constructed.
11060
- * Editions before this will not have defaults.
11061
- */
11062
- minimumEdition?: Edition | undefined;
11063
- /**
11064
- * The maximum known edition (inclusive) when this was constructed. Editions
11065
- * after this will not have reliable defaults.
11066
- */
11067
- maximumEdition?: Edition | undefined;
11068
- }
11069
-
11070
- declare const FeatureSetDefaults: {
11071
- $type: "google.protobuf.FeatureSetDefaults";
11072
- encode(message: FeatureSetDefaults, writer?: _m0.Writer): _m0.Writer;
11073
- decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSetDefaults;
11074
- fromJSON(object: any): FeatureSetDefaults;
11075
- toJSON(message: FeatureSetDefaults): unknown;
11076
- create(base?: DeepPartial_104<FeatureSetDefaults>): FeatureSetDefaults;
11077
- fromPartial(object: DeepPartial_104<FeatureSetDefaults>): FeatureSetDefaults;
11078
- };
11079
-
11080
- /**
11081
- * A map from every known edition with a unique set of defaults to its
11082
- * defaults. Not all editions may be contained here. For a given edition,
11083
- * the defaults at the closest matching edition ordered at or before it should
11084
- * be used. This field must be in strict ascending order by edition.
11085
- */
11086
- declare interface FeatureSetDefaults_FeatureSetEditionDefault {
11087
- edition?: Edition | undefined;
11088
- /** Defaults of features that can be overridden in this edition. */
11089
- overridableFeatures?: FeatureSet | undefined;
11090
- /** Defaults of features that can't be overridden in this edition. */
11091
- fixedFeatures?: FeatureSet | undefined;
11092
- }
11093
-
11094
- declare const FeatureSetDefaults_FeatureSetEditionDefault: {
11095
- $type: "google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault";
11096
- encode(message: FeatureSetDefaults_FeatureSetEditionDefault, writer?: _m0.Writer): _m0.Writer;
11097
- decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSetDefaults_FeatureSetEditionDefault;
11098
- fromJSON(object: any): FeatureSetDefaults_FeatureSetEditionDefault;
11099
- toJSON(message: FeatureSetDefaults_FeatureSetEditionDefault): unknown;
11100
- create(base?: DeepPartial_104<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
11101
- fromPartial(object: DeepPartial_104<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
11102
- };
11103
-
11104
10819
  declare interface FetchRequest {
11105
10820
  url: string;
11106
10821
  data?: RequestData | undefined;
@@ -11366,12 +11081,12 @@ declare interface FieldDescriptorProto {
11366
11081
  * If true, this is a proto3 "optional". When a proto3 field is optional, it
11367
11082
  * tracks presence regardless of field type.
11368
11083
  *
11369
- * When proto3_optional is true, this field must belong to a oneof to signal
11370
- * to old proto3 clients that presence is tracked for this field. This oneof
11371
- * is known as a "synthetic" oneof, and this field must be its sole member
11372
- * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
11373
- * exist in the descriptor only, and do not generate any API. Synthetic oneofs
11374
- * must be ordered after all "real" oneofs.
11084
+ * When proto3_optional is true, this field must be belong to a oneof to
11085
+ * signal to old proto3 clients that presence is tracked for this field. This
11086
+ * oneof is known as a "synthetic" oneof, and this field must be its sole
11087
+ * member (each proto3 optional field gets its own synthetic oneof). Synthetic
11088
+ * oneofs exist in the descriptor only, and do not generate any API. Synthetic
11089
+ * oneofs must be ordered after all "real" oneofs.
11375
11090
  *
11376
11091
  * For message fields, proto3_optional doesn't create any semantic change,
11377
11092
  * since non-repeated message fields always track presence. However it still
@@ -11401,13 +11116,8 @@ declare const FieldDescriptorProto: {
11401
11116
  declare enum FieldDescriptorProto_Label {
11402
11117
  /** LABEL_OPTIONAL - 0 is reserved for errors */
11403
11118
  LABEL_OPTIONAL = 1,
11404
- LABEL_REPEATED = 3,
11405
- /**
11406
- * LABEL_REQUIRED - The required label is only allowed in google.protobuf. In proto3 and Editions
11407
- * it's explicitly prohibited. In Editions, the `field_presence` feature
11408
- * can be used to get this behavior.
11409
- */
11410
11119
  LABEL_REQUIRED = 2,
11120
+ LABEL_REPEATED = 3,
11411
11121
  UNRECOGNIZED = -1
11412
11122
  }
11413
11123
 
@@ -11439,10 +11149,9 @@ declare enum FieldDescriptorProto_Type {
11439
11149
  TYPE_STRING = 9,
11440
11150
  /**
11441
11151
  * TYPE_GROUP - Tag-delimited aggregate.
11442
- * Group type is deprecated and not supported after google.protobuf. However, Proto3
11152
+ * Group type is deprecated and not supported in proto3. However, Proto3
11443
11153
  * implementations should still be able to parse the group wire format and
11444
- * treat group fields as unknown fields. In Editions, the group wire format
11445
- * can be enabled via the `message_encoding` feature.
11154
+ * treat group fields as unknown fields.
11446
11155
  */
11447
11156
  TYPE_GROUP = 10,
11448
11157
  /** TYPE_MESSAGE - Length-delimited aggregate. */
@@ -11468,10 +11177,8 @@ declare interface FieldOptions {
11468
11177
  /**
11469
11178
  * The ctype option instructs the C++ code generator to use a different
11470
11179
  * representation of the field than it normally would. See the specific
11471
- * options below. This option is only implemented to support use of
11472
- * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
11473
- * type "bytes" in the open source release -- sorry, we'll try to include
11474
- * other types in a future version!
11180
+ * options below. This option is not yet implemented in the open source
11181
+ * release -- sorry, we'll try to include it in a future version!
11475
11182
  */
11476
11183
  ctype?: FieldOptions_CType | undefined;
11477
11184
  /**
@@ -11479,9 +11186,7 @@ declare interface FieldOptions {
11479
11186
  * a more efficient representation on the wire. Rather than repeatedly
11480
11187
  * writing the tag and type for each element, the entire array is encoded as
11481
11188
  * a single length-delimited blob. In proto3, only explicit setting it to
11482
- * false will avoid using packed encoding. This option is prohibited in
11483
- * Editions, but the `repeated_field_encoding` feature can be used to control
11484
- * the behavior.
11189
+ * false will avoid using packed encoding.
11485
11190
  */
11486
11191
  packed?: boolean | undefined;
11487
11192
  /**
@@ -11516,11 +11221,22 @@ declare interface FieldOptions {
11516
11221
  * call from multiple threads concurrently, while non-const methods continue
11517
11222
  * to require exclusive access.
11518
11223
  *
11519
- * Note that lazy message fields are still eagerly verified to check
11520
- * ill-formed wireformat or missing required fields. Calling IsInitialized()
11521
- * on the outer message would fail if the inner message has missing required
11522
- * fields. Failed verification would result in parsing failure (except when
11523
- * uninitialized messages are acceptable).
11224
+ * Note that implementations may choose not to check required fields within
11225
+ * a lazy sub-message. That is, calling IsInitialized() on the outer message
11226
+ * may return true even if the inner message has missing required fields.
11227
+ * This is necessary because otherwise the inner message would have to be
11228
+ * parsed in order to perform the check, defeating the purpose of lazy
11229
+ * parsing. An implementation which chooses not to check required fields
11230
+ * must be consistent about it. That is, for any particular sub-message, the
11231
+ * implementation must either *always* check its required fields, or *never*
11232
+ * check its required fields, regardless of whether or not the message has
11233
+ * been parsed.
11234
+ *
11235
+ * As of 2021, lazy does no correctness checks on the byte stream during
11236
+ * parsing. This may lead to crashes if and when an invalid byte stream is
11237
+ * finally parsed upon access.
11238
+ *
11239
+ * TODO(b/211906113): Enable validation on lazy fields.
11524
11240
  */
11525
11241
  lazy?: boolean | undefined;
11526
11242
  /**
@@ -11538,17 +11254,6 @@ declare interface FieldOptions {
11538
11254
  deprecated?: boolean | undefined;
11539
11255
  /** For Google-internal migration only. Do not use. */
11540
11256
  weak?: boolean | undefined;
11541
- /**
11542
- * Indicate that the field value should not be printed out when using debug
11543
- * formats, e.g. when the field contains sensitive credentials.
11544
- */
11545
- debugRedact?: boolean | undefined;
11546
- retention?: FieldOptions_OptionRetention | undefined;
11547
- targets: FieldOptions_OptionTargetType[];
11548
- editionDefaults: FieldOptions_EditionDefault[];
11549
- /** Any features defined in the specific edition. */
11550
- features?: FeatureSet | undefined;
11551
- featureSupport?: FieldOptions_FeatureSupport | undefined;
11552
11257
  /** The parser stores options it doesn't recognize here. See above. */
11553
11258
  uninterpretedOption: UninterpretedOption[];
11554
11259
  }
@@ -11566,14 +11271,6 @@ declare const FieldOptions: {
11566
11271
  declare enum FieldOptions_CType {
11567
11272
  /** STRING - Default mode. */
11568
11273
  STRING = 0,
11569
- /**
11570
- * CORD - The option [ctype=CORD] may be applied to a non-repeated field of type
11571
- * "bytes". It indicates that in C++, the data should be stored in a Cord
11572
- * instead of a string. For very large strings, this may reduce memory
11573
- * fragmentation. It may also allow better performance when parsing from a
11574
- * Cord, or when parsing with aliasing enabled, as the parsed Cord may then
11575
- * alias the original buffer.
11576
- */
11577
11274
  CORD = 1,
11578
11275
  STRING_PIECE = 2,
11579
11276
  UNRECOGNIZED = -1
@@ -11583,58 +11280,6 @@ declare function fieldOptions_CTypeFromJSON(object: any): FieldOptions_CType;
11583
11280
 
11584
11281
  declare function fieldOptions_CTypeToJSON(object: FieldOptions_CType): number;
11585
11282
 
11586
- declare interface FieldOptions_EditionDefault {
11587
- edition?: Edition | undefined;
11588
- /** Textproto value. */
11589
- value?: string | undefined;
11590
- }
11591
-
11592
- declare const FieldOptions_EditionDefault: {
11593
- $type: "google.protobuf.FieldOptions.EditionDefault";
11594
- encode(message: FieldOptions_EditionDefault, writer?: _m0.Writer): _m0.Writer;
11595
- decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions_EditionDefault;
11596
- fromJSON(object: any): FieldOptions_EditionDefault;
11597
- toJSON(message: FieldOptions_EditionDefault): unknown;
11598
- create(base?: DeepPartial_104<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
11599
- fromPartial(object: DeepPartial_104<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
11600
- };
11601
-
11602
- /** Information about the support window of a feature. */
11603
- declare interface FieldOptions_FeatureSupport {
11604
- /**
11605
- * The edition that this feature was first available in. In editions
11606
- * earlier than this one, the default assigned to EDITION_LEGACY will be
11607
- * used, and proto files will not be able to override it.
11608
- */
11609
- editionIntroduced?: Edition | undefined;
11610
- /**
11611
- * The edition this feature becomes deprecated in. Using this after this
11612
- * edition may trigger warnings.
11613
- */
11614
- editionDeprecated?: Edition | undefined;
11615
- /**
11616
- * The deprecation warning text if this feature is used after the edition it
11617
- * was marked deprecated in.
11618
- */
11619
- deprecationWarning?: string | undefined;
11620
- /**
11621
- * The edition this feature is no longer available in. In editions after
11622
- * this one, the last default assigned will be used, and proto files will
11623
- * not be able to override it.
11624
- */
11625
- editionRemoved?: Edition | undefined;
11626
- }
11627
-
11628
- declare const FieldOptions_FeatureSupport: {
11629
- $type: "google.protobuf.FieldOptions.FeatureSupport";
11630
- encode(message: FieldOptions_FeatureSupport, writer?: _m0.Writer): _m0.Writer;
11631
- decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions_FeatureSupport;
11632
- fromJSON(object: any): FieldOptions_FeatureSupport;
11633
- toJSON(message: FieldOptions_FeatureSupport): unknown;
11634
- create(base?: DeepPartial_104<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
11635
- fromPartial(object: DeepPartial_104<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
11636
- };
11637
-
11638
11283
  declare enum FieldOptions_JSType {
11639
11284
  /** JS_NORMAL - Use the default type. */
11640
11285
  JS_NORMAL = 0,
@@ -11649,46 +11294,6 @@ declare function fieldOptions_JSTypeFromJSON(object: any): FieldOptions_JSType;
11649
11294
 
11650
11295
  declare function fieldOptions_JSTypeToJSON(object: FieldOptions_JSType): number;
11651
11296
 
11652
- /**
11653
- * If set to RETENTION_SOURCE, the option will be omitted from the binary.
11654
- * Note: as of January 2023, support for this is in progress and does not yet
11655
- * have an effect (b/264593489).
11656
- */
11657
- declare enum FieldOptions_OptionRetention {
11658
- RETENTION_UNKNOWN = 0,
11659
- RETENTION_RUNTIME = 1,
11660
- RETENTION_SOURCE = 2,
11661
- UNRECOGNIZED = -1
11662
- }
11663
-
11664
- declare function fieldOptions_OptionRetentionFromJSON(object: any): FieldOptions_OptionRetention;
11665
-
11666
- declare function fieldOptions_OptionRetentionToJSON(object: FieldOptions_OptionRetention): number;
11667
-
11668
- /**
11669
- * This indicates the types of entities that the field may apply to when used
11670
- * as an option. If it is unset, then the field may be freely used as an
11671
- * option on any kind of entity. Note: as of January 2023, support for this is
11672
- * in progress and does not yet have an effect (b/264593489).
11673
- */
11674
- declare enum FieldOptions_OptionTargetType {
11675
- TARGET_TYPE_UNKNOWN = 0,
11676
- TARGET_TYPE_FILE = 1,
11677
- TARGET_TYPE_EXTENSION_RANGE = 2,
11678
- TARGET_TYPE_MESSAGE = 3,
11679
- TARGET_TYPE_FIELD = 4,
11680
- TARGET_TYPE_ONEOF = 5,
11681
- TARGET_TYPE_ENUM = 6,
11682
- TARGET_TYPE_ENUM_ENTRY = 7,
11683
- TARGET_TYPE_SERVICE = 8,
11684
- TARGET_TYPE_METHOD = 9,
11685
- UNRECOGNIZED = -1
11686
- }
11687
-
11688
- declare function fieldOptions_OptionTargetTypeFromJSON(object: any): FieldOptions_OptionTargetType;
11689
-
11690
- declare function fieldOptions_OptionTargetTypeToJSON(object: FieldOptions_OptionTargetType): number;
11691
-
11692
11297
  /** A file is a single file or directory in a filesystem. */
11693
11298
  declare interface File_2 {
11694
11299
  /**
@@ -11741,13 +11346,9 @@ declare interface FileDescriptorProto {
11741
11346
  sourceCodeInfo?: SourceCodeInfo | undefined;
11742
11347
  /**
11743
11348
  * The syntax of the proto file.
11744
- * The supported values are "proto2", "proto3", and "editions".
11745
- *
11746
- * If `edition` is present, this value must be "editions".
11349
+ * The supported values are "proto2" and "proto3".
11747
11350
  */
11748
11351
  syntax?: string | undefined;
11749
- /** The edition of the proto file. */
11750
- edition?: Edition | undefined;
11751
11352
  }
11752
11353
 
11753
11354
  declare const FileDescriptorProto: {
@@ -11810,16 +11411,12 @@ declare interface FileOptions {
11810
11411
  */
11811
11412
  javaGenerateEqualsAndHash?: boolean | undefined;
11812
11413
  /**
11813
- * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
11814
- * which will throw an exception if invalid UTF-8 is parsed from the wire or
11815
- * assigned to a string field.
11816
- *
11817
- * TODO: clarify exactly what kinds of field types this option
11818
- * applies to, and update these docs accordingly.
11819
- *
11820
- * Proto3 files already perform these checks. Setting the option explicitly to
11821
- * false has no effect: it cannot be used to opt proto3 files out of UTF-8
11822
- * checks.
11414
+ * If set true, then the Java2 code generator will generate code that
11415
+ * throws an exception whenever an attempt is made to assign a non-UTF-8
11416
+ * byte sequence to a string field.
11417
+ * Message reflection will do the same.
11418
+ * However, an extension field still accepts non-UTF-8 byte sequences.
11419
+ * This option has no effect on when used with the lite runtime.
11823
11420
  */
11824
11421
  javaStringCheckUtf8?: boolean | undefined;
11825
11422
  optimizeFor?: FileOptions_OptimizeMode | undefined;
@@ -11846,6 +11443,7 @@ declare interface FileOptions {
11846
11443
  ccGenericServices?: boolean | undefined;
11847
11444
  javaGenericServices?: boolean | undefined;
11848
11445
  pyGenericServices?: boolean | undefined;
11446
+ phpGenericServices?: boolean | undefined;
11849
11447
  /**
11850
11448
  * Is this file deprecated?
11851
11449
  * Depending on the target platform, this can emit Deprecated annotations
@@ -11895,8 +11493,6 @@ declare interface FileOptions {
11895
11493
  * determining the ruby package.
11896
11494
  */
11897
11495
  rubyPackage?: string | undefined;
11898
- /** Any features defined in the specific edition. */
11899
- features?: FeatureSet | undefined;
11900
11496
  /**
11901
11497
  * The parser stores options it doesn't recognize here.
11902
11498
  * See the documentation for the "Options" section above.
@@ -12188,7 +11784,7 @@ declare const FlairDefinition: {
12188
11784
  readonly responseStream: false;
12189
11785
  readonly options: {
12190
11786
  readonly _unknownFields: {
12191
- readonly 480010: readonly [Uint8Array];
11787
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12192
11788
  };
12193
11789
  };
12194
11790
  };
@@ -12231,7 +11827,7 @@ declare const FlairDefinition: {
12231
11827
  readonly responseStream: false;
12232
11828
  readonly options: {
12233
11829
  readonly _unknownFields: {
12234
- readonly 480010: readonly [Uint8Array];
11830
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
12235
11831
  };
12236
11832
  };
12237
11833
  };
@@ -12274,7 +11870,7 @@ declare const FlairDefinition: {
12274
11870
  readonly responseStream: false;
12275
11871
  readonly options: {
12276
11872
  readonly _unknownFields: {
12277
- readonly 480010: readonly [Uint8Array];
11873
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12278
11874
  };
12279
11875
  };
12280
11876
  };
@@ -12323,7 +11919,7 @@ declare const FlairDefinition: {
12323
11919
  readonly responseStream: false;
12324
11920
  readonly options: {
12325
11921
  readonly _unknownFields: {
12326
- readonly 480010: readonly [Uint8Array];
11922
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12327
11923
  };
12328
11924
  };
12329
11925
  };
@@ -12410,7 +12006,7 @@ declare const FlairDefinition: {
12410
12006
  readonly responseStream: false;
12411
12007
  readonly options: {
12412
12008
  readonly _unknownFields: {
12413
- readonly 480010: readonly [Uint8Array];
12009
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12414
12010
  };
12415
12011
  };
12416
12012
  };
@@ -12471,7 +12067,7 @@ declare const FlairDefinition: {
12471
12067
  readonly responseStream: false;
12472
12068
  readonly options: {
12473
12069
  readonly _unknownFields: {
12474
- readonly 480010: readonly [Uint8Array];
12070
+ readonly 480010: readonly [Uint8Array, Uint8Array];
12475
12071
  };
12476
12072
  };
12477
12073
  };
@@ -12532,7 +12128,7 @@ declare const FlairDefinition: {
12532
12128
  readonly responseStream: false;
12533
12129
  readonly options: {
12534
12130
  readonly _unknownFields: {
12535
- readonly 480010: readonly [Uint8Array];
12131
+ readonly 480010: readonly [Uint8Array, Uint8Array];
12536
12132
  };
12537
12133
  };
12538
12134
  };
@@ -12601,7 +12197,7 @@ declare const FlairDefinition: {
12601
12197
  readonly responseStream: false;
12602
12198
  readonly options: {
12603
12199
  readonly _unknownFields: {
12604
- readonly 480010: readonly [Uint8Array];
12200
+ readonly 480010: readonly [Uint8Array, Uint8Array];
12605
12201
  };
12606
12202
  };
12607
12203
  };
@@ -12699,7 +12295,7 @@ declare const FlairDefinition: {
12699
12295
  readonly responseStream: false;
12700
12296
  readonly options: {
12701
12297
  readonly _unknownFields: {
12702
- readonly 480010: readonly [Uint8Array];
12298
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12703
12299
  };
12704
12300
  };
12705
12301
  };
@@ -12777,7 +12373,7 @@ declare const FlairDefinition: {
12777
12373
  readonly responseStream: false;
12778
12374
  readonly options: {
12779
12375
  readonly _unknownFields: {
12780
- readonly 480010: readonly [Uint8Array];
12376
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
12781
12377
  };
12782
12378
  };
12783
12379
  };
@@ -12834,7 +12430,7 @@ declare const FlairDefinition: {
12834
12430
  readonly responseStream: false;
12835
12431
  readonly options: {
12836
12432
  readonly _unknownFields: {
12837
- readonly 480010: readonly [Uint8Array];
12433
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12838
12434
  };
12839
12435
  };
12840
12436
  };
@@ -12877,7 +12473,7 @@ declare const FlairDefinition: {
12877
12473
  readonly responseStream: false;
12878
12474
  readonly options: {
12879
12475
  readonly _unknownFields: {
12880
- readonly 480010: readonly [Uint8Array];
12476
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
12881
12477
  };
12882
12478
  };
12883
12479
  };
@@ -12955,7 +12551,7 @@ declare const FlairDefinition: {
12955
12551
  readonly responseStream: false;
12956
12552
  readonly options: {
12957
12553
  readonly _unknownFields: {
12958
- readonly 480010: readonly [Uint8Array];
12554
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
12959
12555
  };
12960
12556
  };
12961
12557
  };
@@ -13799,11 +13395,10 @@ declare interface GeneratedCodeInfo_Annotation {
13799
13395
  begin?: number | undefined;
13800
13396
  /**
13801
13397
  * Identifies the ending offset in bytes in the generated code that
13802
- * relates to the identified object. The end offset should be one past
13398
+ * relates to the identified offset. The end offset should be one past
13803
13399
  * the last relevant byte (so the length of the text = end - begin).
13804
13400
  */
13805
13401
  end?: number | undefined;
13806
- semantic?: GeneratedCodeInfo_Annotation_Semantic | undefined;
13807
13402
  }
13808
13403
 
13809
13404
  declare const GeneratedCodeInfo_Annotation: {
@@ -13816,24 +13411,6 @@ declare const GeneratedCodeInfo_Annotation: {
13816
13411
  fromPartial(object: DeepPartial_104<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
13817
13412
  };
13818
13413
 
13819
- /**
13820
- * Represents the identified object's effect on the element in the original
13821
- * .proto file.
13822
- */
13823
- declare enum GeneratedCodeInfo_Annotation_Semantic {
13824
- /** NONE - There is no effect or the effect is indescribable. */
13825
- NONE = 0,
13826
- /** SET - The element is set or otherwise mutated. */
13827
- SET = 1,
13828
- /** ALIAS - An alias to the element is returned. */
13829
- ALIAS = 2,
13830
- UNRECOGNIZED = -1
13831
- }
13832
-
13833
- declare function generatedCodeInfo_Annotation_SemanticFromJSON(object: any): GeneratedCodeInfo_Annotation_Semantic;
13834
-
13835
- declare function generatedCodeInfo_Annotation_SemanticToJSON(object: GeneratedCodeInfo_Annotation_Semantic): number;
13836
-
13837
13414
  declare interface GenericPrivateMessagesRequest {
13838
13415
  /** fullname of a thing */
13839
13416
  id: string;
@@ -18256,7 +17833,7 @@ declare const LinksAndCommentsDefinition: {
18256
17833
  readonly responseStream: false;
18257
17834
  readonly options: {
18258
17835
  readonly _unknownFields: {
18259
- readonly 480010: readonly [Uint8Array];
17836
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array, Uint8Array];
18260
17837
  };
18261
17838
  };
18262
17839
  };
@@ -18299,7 +17876,7 @@ declare const LinksAndCommentsDefinition: {
18299
17876
  readonly responseStream: false;
18300
17877
  readonly options: {
18301
17878
  readonly _unknownFields: {
18302
- readonly 480010: readonly [Uint8Array];
17879
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
18303
17880
  };
18304
17881
  };
18305
17882
  };
@@ -18651,7 +18228,7 @@ declare const LinksAndCommentsDefinition: {
18651
18228
  readonly responseStream: false;
18652
18229
  readonly options: {
18653
18230
  readonly _unknownFields: {
18654
- readonly 480010: readonly [Uint8Array];
18231
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
18655
18232
  };
18656
18233
  };
18657
18234
  };
@@ -18695,7 +18272,7 @@ declare const LinksAndCommentsDefinition: {
18695
18272
  readonly responseStream: false;
18696
18273
  readonly options: {
18697
18274
  readonly _unknownFields: {
18698
- readonly 480010: readonly [Uint8Array];
18275
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
18699
18276
  };
18700
18277
  };
18701
18278
  };
@@ -18739,7 +18316,7 @@ declare const LinksAndCommentsDefinition: {
18739
18316
  readonly responseStream: false;
18740
18317
  readonly options: {
18741
18318
  readonly _unknownFields: {
18742
- readonly 480010: readonly [Uint8Array];
18319
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
18743
18320
  };
18744
18321
  };
18745
18322
  };
@@ -19112,7 +18689,7 @@ declare const LinksAndCommentsDefinition: {
19112
18689
  readonly responseStream: false;
19113
18690
  readonly options: {
19114
18691
  readonly _unknownFields: {
19115
- readonly 480010: readonly [Uint8Array];
18692
+ readonly 480010: readonly [Uint8Array, Uint8Array];
19116
18693
  };
19117
18694
  };
19118
18695
  };
@@ -19155,7 +18732,7 @@ declare const LinksAndCommentsDefinition: {
19155
18732
  readonly responseStream: false;
19156
18733
  readonly options: {
19157
18734
  readonly _unknownFields: {
19158
- readonly 480010: readonly [Uint8Array];
18735
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19159
18736
  };
19160
18737
  };
19161
18738
  };
@@ -19198,7 +18775,7 @@ declare const LinksAndCommentsDefinition: {
19198
18775
  readonly responseStream: false;
19199
18776
  readonly options: {
19200
18777
  readonly _unknownFields: {
19201
- readonly 480010: readonly [Uint8Array];
18778
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19202
18779
  };
19203
18780
  };
19204
18781
  };
@@ -19559,7 +19136,7 @@ declare const LinksAndCommentsDefinition: {
19559
19136
  readonly responseStream: false;
19560
19137
  readonly options: {
19561
19138
  readonly _unknownFields: {
19562
- readonly 480010: readonly [Uint8Array];
19139
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19563
19140
  };
19564
19141
  };
19565
19142
  };
@@ -19625,7 +19202,7 @@ declare const LinksAndCommentsDefinition: {
19625
19202
  readonly responseStream: false;
19626
19203
  readonly options: {
19627
19204
  readonly _unknownFields: {
19628
- readonly 480010: readonly [Uint8Array];
19205
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
19629
19206
  };
19630
19207
  };
19631
19208
  };
@@ -19669,7 +19246,7 @@ declare const LinksAndCommentsDefinition: {
19669
19246
  readonly responseStream: false;
19670
19247
  readonly options: {
19671
19248
  readonly _unknownFields: {
19672
- readonly 480010: readonly [Uint8Array];
19249
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19673
19250
  };
19674
19251
  };
19675
19252
  };
@@ -19712,7 +19289,7 @@ declare const LinksAndCommentsDefinition: {
19712
19289
  readonly responseStream: false;
19713
19290
  readonly options: {
19714
19291
  readonly _unknownFields: {
19715
- readonly 480010: readonly [Uint8Array];
19292
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19716
19293
  };
19717
19294
  };
19718
19295
  };
@@ -19756,7 +19333,7 @@ declare const LinksAndCommentsDefinition: {
19756
19333
  readonly responseStream: false;
19757
19334
  readonly options: {
19758
19335
  readonly _unknownFields: {
19759
- readonly 480010: readonly [Uint8Array];
19336
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19760
19337
  };
19761
19338
  };
19762
19339
  };
@@ -19805,7 +19382,7 @@ declare const LinksAndCommentsDefinition: {
19805
19382
  readonly responseStream: false;
19806
19383
  readonly options: {
19807
19384
  readonly _unknownFields: {
19808
- readonly 480010: readonly [Uint8Array];
19385
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
19809
19386
  };
19810
19387
  };
19811
19388
  };
@@ -19860,7 +19437,7 @@ declare const LinksAndCommentsDefinition: {
19860
19437
  readonly responseStream: false;
19861
19438
  readonly options: {
19862
19439
  readonly _unknownFields: {
19863
- readonly 480010: readonly [Uint8Array];
19440
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
19864
19441
  };
19865
19442
  };
19866
19443
  };
@@ -19907,7 +19484,7 @@ declare const LinksAndCommentsDefinition: {
19907
19484
  readonly responseStream: false;
19908
19485
  readonly options: {
19909
19486
  readonly _unknownFields: {
19910
- readonly 480010: readonly [Uint8Array];
19487
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
19911
19488
  };
19912
19489
  };
19913
19490
  };
@@ -19951,7 +19528,7 @@ declare const LinksAndCommentsDefinition: {
19951
19528
  readonly responseStream: false;
19952
19529
  readonly options: {
19953
19530
  readonly _unknownFields: {
19954
- readonly 480010: readonly [Uint8Array];
19531
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
19955
19532
  };
19956
19533
  };
19957
19534
  };
@@ -20083,7 +19660,7 @@ declare const LinksAndCommentsDefinition: {
20083
19660
  readonly responseStream: false;
20084
19661
  readonly options: {
20085
19662
  readonly _unknownFields: {
20086
- readonly 480010: readonly [Uint8Array];
19663
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
20087
19664
  };
20088
19665
  };
20089
19666
  };
@@ -20127,7 +19704,7 @@ declare const LinksAndCommentsDefinition: {
20127
19704
  readonly responseStream: false;
20128
19705
  readonly options: {
20129
19706
  readonly _unknownFields: {
20130
- readonly 480010: readonly [Uint8Array];
19707
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
20131
19708
  };
20132
19709
  };
20133
19710
  };
@@ -20170,7 +19747,7 @@ declare const LinksAndCommentsDefinition: {
20170
19747
  readonly responseStream: false;
20171
19748
  readonly options: {
20172
19749
  readonly _unknownFields: {
20173
- readonly 480010: readonly [Uint8Array];
19750
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
20174
19751
  };
20175
19752
  };
20176
19753
  };
@@ -20213,7 +19790,7 @@ declare const LinksAndCommentsDefinition: {
20213
19790
  readonly responseStream: false;
20214
19791
  readonly options: {
20215
19792
  readonly _unknownFields: {
20216
- readonly 480010: readonly [Uint8Array];
19793
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
20217
19794
  };
20218
19795
  };
20219
19796
  };
@@ -20256,7 +19833,7 @@ declare const LinksAndCommentsDefinition: {
20256
19833
  readonly responseStream: false;
20257
19834
  readonly options: {
20258
19835
  readonly _unknownFields: {
20259
- readonly 480010: readonly [Uint8Array];
19836
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
20260
19837
  };
20261
19838
  };
20262
19839
  };
@@ -20300,7 +19877,7 @@ declare const LinksAndCommentsDefinition: {
20300
19877
  readonly responseStream: false;
20301
19878
  readonly options: {
20302
19879
  readonly _unknownFields: {
20303
- readonly 480010: readonly [Uint8Array];
19880
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
20304
19881
  };
20305
19882
  };
20306
19883
  };
@@ -20915,7 +20492,7 @@ declare const ListingsDefinition: {
20915
20492
  readonly responseStream: false;
20916
20493
  readonly options: {
20917
20494
  readonly _unknownFields: {
20918
- readonly 480010: readonly [Uint8Array];
20495
+ readonly 480010: readonly [Uint8Array, Uint8Array];
20919
20496
  };
20920
20497
  };
20921
20498
  };
@@ -21284,7 +20861,7 @@ declare const ListingsDefinition: {
21284
20861
  readonly responseStream: false;
21285
20862
  readonly options: {
21286
20863
  readonly _unknownFields: {
21287
- readonly 480010: readonly [Uint8Array];
20864
+ readonly 480010: readonly [Uint8Array, Uint8Array];
21288
20865
  };
21289
20866
  };
21290
20867
  };
@@ -21672,7 +21249,7 @@ declare const ListingsDefinition: {
21672
21249
  readonly responseStream: false;
21673
21250
  readonly options: {
21674
21251
  readonly _unknownFields: {
21675
- readonly 480010: readonly [Uint8Array];
21252
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
21676
21253
  };
21677
21254
  };
21678
21255
  };
@@ -22062,7 +21639,7 @@ declare const ListingsDefinition: {
22062
21639
  readonly responseStream: false;
22063
21640
  readonly options: {
22064
21641
  readonly _unknownFields: {
22065
- readonly 480010: readonly [Uint8Array];
21642
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
22066
21643
  };
22067
21644
  };
22068
21645
  };
@@ -22443,7 +22020,7 @@ declare const ListingsDefinition: {
22443
22020
  readonly responseStream: false;
22444
22021
  readonly options: {
22445
22022
  readonly _unknownFields: {
22446
- readonly 480010: readonly [Uint8Array];
22023
+ readonly 480010: readonly [Uint8Array, Uint8Array];
22447
22024
  };
22448
22025
  };
22449
22026
  };
@@ -22822,7 +22399,7 @@ declare const ListingsDefinition: {
22822
22399
  readonly responseStream: false;
22823
22400
  readonly options: {
22824
22401
  readonly _unknownFields: {
22825
- readonly 480010: readonly [Uint8Array];
22402
+ readonly 480010: readonly [Uint8Array, Uint8Array];
22826
22403
  };
22827
22404
  };
22828
22405
  };
@@ -23201,7 +22778,7 @@ declare const ListingsDefinition: {
23201
22778
  readonly responseStream: false;
23202
22779
  readonly options: {
23203
22780
  readonly _unknownFields: {
23204
- readonly 480010: readonly [Uint8Array];
22781
+ readonly 480010: readonly [Uint8Array, Uint8Array];
23205
22782
  };
23206
22783
  };
23207
22784
  };
@@ -23584,7 +23161,7 @@ declare const ListingsDefinition: {
23584
23161
  readonly responseStream: false;
23585
23162
  readonly options: {
23586
23163
  readonly _unknownFields: {
23587
- readonly 480010: readonly [Uint8Array];
23164
+ readonly 480010: readonly [Uint8Array, Uint8Array];
23588
23165
  };
23589
23166
  };
23590
23167
  };
@@ -24364,23 +23941,6 @@ declare interface MessageOptions {
24364
23941
  * parser.
24365
23942
  */
24366
23943
  mapEntry?: boolean | undefined;
24367
- /**
24368
- * Enable the legacy handling of JSON field name conflicts. This lowercases
24369
- * and strips underscored from the fields before comparison in proto3 only.
24370
- * The new behavior takes `json_name` into account and applies to proto2 as
24371
- * well.
24372
- *
24373
- * This should only be used as a temporary measure against broken builds due
24374
- * to the change in behavior for JSON field name conflicts.
24375
- *
24376
- * TODO This is legacy behavior we plan to remove once downstream
24377
- * teams have had time to migrate.
24378
- *
24379
- * @deprecated
24380
- */
24381
- deprecatedLegacyJsonFieldConflicts?: boolean | undefined;
24382
- /** Any features defined in the specific edition. */
24383
- features?: FeatureSet | undefined;
24384
23944
  /** The parser stores options it doesn't recognize here. See above. */
24385
23945
  uninterpretedOption: UninterpretedOption[];
24386
23946
  }
@@ -24515,8 +24075,6 @@ declare interface MethodOptions {
24515
24075
  */
24516
24076
  deprecated?: boolean | undefined;
24517
24077
  idempotencyLevel?: MethodOptions_IdempotencyLevel | undefined;
24518
- /** Any features defined in the specific edition. */
24519
- features?: FeatureSet | undefined;
24520
24078
  /** The parser stores options it doesn't recognize here. See above. */
24521
24079
  uninterpretedOption: UninterpretedOption[];
24522
24080
  }
@@ -24877,7 +24435,7 @@ declare const ModerationDefinition: {
24877
24435
  readonly responseStream: false;
24878
24436
  readonly options: {
24879
24437
  readonly _unknownFields: {
24880
- readonly 480010: readonly [Uint8Array];
24438
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
24881
24439
  };
24882
24440
  };
24883
24441
  };
@@ -25256,7 +24814,7 @@ declare const ModerationDefinition: {
25256
24814
  readonly responseStream: false;
25257
24815
  readonly options: {
25258
24816
  readonly _unknownFields: {
25259
- readonly 480010: readonly [Uint8Array];
24817
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
25260
24818
  };
25261
24819
  };
25262
24820
  };
@@ -25635,7 +25193,7 @@ declare const ModerationDefinition: {
25635
25193
  readonly responseStream: false;
25636
25194
  readonly options: {
25637
25195
  readonly _unknownFields: {
25638
- readonly 480010: readonly [Uint8Array];
25196
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
25639
25197
  };
25640
25198
  };
25641
25199
  };
@@ -26014,7 +25572,7 @@ declare const ModerationDefinition: {
26014
25572
  readonly responseStream: false;
26015
25573
  readonly options: {
26016
25574
  readonly _unknownFields: {
26017
- readonly 480010: readonly [Uint8Array];
25575
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
26018
25576
  };
26019
25577
  };
26020
25578
  };
@@ -26393,7 +25951,7 @@ declare const ModerationDefinition: {
26393
25951
  readonly responseStream: false;
26394
25952
  readonly options: {
26395
25953
  readonly _unknownFields: {
26396
- readonly 480010: readonly [Uint8Array];
25954
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
26397
25955
  };
26398
25956
  };
26399
25957
  };
@@ -26772,7 +26330,7 @@ declare const ModerationDefinition: {
26772
26330
  readonly responseStream: false;
26773
26331
  readonly options: {
26774
26332
  readonly _unknownFields: {
26775
- readonly 480010: readonly [Uint8Array];
26333
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
26776
26334
  };
26777
26335
  };
26778
26336
  };
@@ -27151,7 +26709,7 @@ declare const ModerationDefinition: {
27151
26709
  readonly responseStream: false;
27152
26710
  readonly options: {
27153
26711
  readonly _unknownFields: {
27154
- readonly 480010: readonly [Uint8Array];
26712
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
27155
26713
  };
27156
26714
  };
27157
26715
  };
@@ -27192,7 +26750,7 @@ declare const ModerationDefinition: {
27192
26750
  readonly responseStream: false;
27193
26751
  readonly options: {
27194
26752
  readonly _unknownFields: {
27195
- readonly 480010: readonly [Uint8Array];
26753
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
27196
26754
  };
27197
26755
  };
27198
26756
  };
@@ -27225,7 +26783,7 @@ declare const ModerationDefinition: {
27225
26783
  readonly responseStream: false;
27226
26784
  readonly options: {
27227
26785
  readonly _unknownFields: {
27228
- readonly 480010: readonly [Uint8Array];
26786
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27229
26787
  };
27230
26788
  };
27231
26789
  };
@@ -27614,7 +27172,7 @@ declare const ModerationDefinition: {
27614
27172
  readonly responseStream: false;
27615
27173
  readonly options: {
27616
27174
  readonly _unknownFields: {
27617
- readonly 480010: readonly [Uint8Array];
27175
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27618
27176
  };
27619
27177
  };
27620
27178
  };
@@ -27647,7 +27205,7 @@ declare const ModerationDefinition: {
27647
27205
  readonly responseStream: false;
27648
27206
  readonly options: {
27649
27207
  readonly _unknownFields: {
27650
- readonly 480010: readonly [Uint8Array];
27208
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27651
27209
  };
27652
27210
  };
27653
27211
  };
@@ -27680,7 +27238,7 @@ declare const ModerationDefinition: {
27680
27238
  readonly responseStream: false;
27681
27239
  readonly options: {
27682
27240
  readonly _unknownFields: {
27683
- readonly 480010: readonly [Uint8Array];
27241
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
27684
27242
  };
27685
27243
  };
27686
27244
  };
@@ -27713,7 +27271,7 @@ declare const ModerationDefinition: {
27713
27271
  readonly responseStream: false;
27714
27272
  readonly options: {
27715
27273
  readonly _unknownFields: {
27716
- readonly 480010: readonly [Uint8Array];
27274
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
27717
27275
  };
27718
27276
  };
27719
27277
  };
@@ -27746,7 +27304,7 @@ declare const ModerationDefinition: {
27746
27304
  readonly responseStream: false;
27747
27305
  readonly options: {
27748
27306
  readonly _unknownFields: {
27749
- readonly 480010: readonly [Uint8Array];
27307
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
27750
27308
  };
27751
27309
  };
27752
27310
  };
@@ -27781,7 +27339,7 @@ declare const ModerationDefinition: {
27781
27339
  readonly responseStream: false;
27782
27340
  readonly options: {
27783
27341
  readonly _unknownFields: {
27784
- readonly 480010: readonly [Uint8Array];
27342
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27785
27343
  };
27786
27344
  };
27787
27345
  };
@@ -27814,7 +27372,7 @@ declare const ModerationDefinition: {
27814
27372
  readonly responseStream: false;
27815
27373
  readonly options: {
27816
27374
  readonly _unknownFields: {
27817
- readonly 480010: readonly [Uint8Array];
27375
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27818
27376
  };
27819
27377
  };
27820
27378
  };
@@ -27849,7 +27407,7 @@ declare const ModerationDefinition: {
27849
27407
  readonly responseStream: false;
27850
27408
  readonly options: {
27851
27409
  readonly _unknownFields: {
27852
- readonly 480010: readonly [Uint8Array];
27410
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27853
27411
  };
27854
27412
  };
27855
27413
  };
@@ -27882,7 +27440,7 @@ declare const ModerationDefinition: {
27882
27440
  readonly responseStream: false;
27883
27441
  readonly options: {
27884
27442
  readonly _unknownFields: {
27885
- readonly 480010: readonly [Uint8Array];
27443
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27886
27444
  };
27887
27445
  };
27888
27446
  };
@@ -27915,7 +27473,7 @@ declare const ModerationDefinition: {
27915
27473
  readonly responseStream: false;
27916
27474
  readonly options: {
27917
27475
  readonly _unknownFields: {
27918
- readonly 480010: readonly [Uint8Array];
27476
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
27919
27477
  };
27920
27478
  };
27921
27479
  };
@@ -27950,7 +27508,7 @@ declare const ModerationDefinition: {
27950
27508
  readonly responseStream: false;
27951
27509
  readonly options: {
27952
27510
  readonly _unknownFields: {
27953
- readonly 480010: readonly [Uint8Array];
27511
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27954
27512
  };
27955
27513
  };
27956
27514
  };
@@ -27985,7 +27543,7 @@ declare const ModerationDefinition: {
27985
27543
  readonly responseStream: false;
27986
27544
  readonly options: {
27987
27545
  readonly _unknownFields: {
27988
- readonly 480010: readonly [Uint8Array];
27546
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
27989
27547
  };
27990
27548
  };
27991
27549
  };
@@ -27994,7 +27552,7 @@ declare const ModerationDefinition: {
27994
27552
  readonly name: "Stylesheet";
27995
27553
  readonly requestType: {
27996
27554
  $type: "devvit.plugin.redditapi.moderation.StylesheetRequest";
27997
- encode(message: StylesheetRequest, writer?: _m0.Writer): _m0.Writer;
27555
+ encode(message: StylesheetRequest, writer?: _m0.Writer): _m0.Writer; /** https://www.reddit.com/dev/api#GET_about_\edited */
27998
27556
  decode(input: _m0.Reader | Uint8Array, length?: number | undefined): StylesheetRequest;
27999
27557
  fromJSON(object: any): StylesheetRequest;
28000
27558
  toJSON(message: StylesheetRequest): unknown;
@@ -28022,7 +27580,7 @@ declare const ModerationDefinition: {
28022
27580
  readonly responseStream: false;
28023
27581
  readonly options: {
28024
27582
  readonly _unknownFields: {
28025
- readonly 480010: readonly [Uint8Array];
27583
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
28026
27584
  };
28027
27585
  };
28028
27586
  };
@@ -28747,7 +28305,7 @@ declare const ModNoteDefinition: {
28747
28305
  readonly responseStream: false;
28748
28306
  readonly options: {
28749
28307
  readonly _unknownFields: {
28750
- readonly 480010: readonly [Uint8Array];
28308
+ readonly 480010: readonly [Uint8Array, Uint8Array];
28751
28309
  };
28752
28310
  };
28753
28311
  };
@@ -28788,7 +28346,7 @@ declare const ModNoteDefinition: {
28788
28346
  readonly responseStream: false;
28789
28347
  readonly options: {
28790
28348
  readonly _unknownFields: {
28791
- readonly 480010: readonly [Uint8Array];
28349
+ readonly 480010: readonly [Uint8Array, Uint8Array];
28792
28350
  };
28793
28351
  };
28794
28352
  };
@@ -28877,7 +28435,7 @@ declare const ModNoteDefinition: {
28877
28435
  readonly responseStream: false;
28878
28436
  readonly options: {
28879
28437
  readonly _unknownFields: {
28880
- readonly 480010: readonly [Uint8Array];
28438
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
28881
28439
  };
28882
28440
  };
28883
28441
  };
@@ -28914,7 +28472,7 @@ declare const ModNoteDefinition: {
28914
28472
  readonly responseStream: false;
28915
28473
  readonly options: {
28916
28474
  readonly _unknownFields: {
28917
- readonly 480010: readonly [Uint8Array];
28475
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
28918
28476
  };
28919
28477
  };
28920
28478
  };
@@ -29003,7 +28561,7 @@ declare const ModNoteDefinition: {
29003
28561
  readonly responseStream: false;
29004
28562
  readonly options: {
29005
28563
  readonly _unknownFields: {
29006
- readonly 480010: readonly [Uint8Array];
28564
+ readonly 480010: readonly [Uint8Array, Uint8Array];
29007
28565
  };
29008
28566
  };
29009
28567
  };
@@ -29365,7 +28923,7 @@ declare const NewModmailDefinition: {
29365
28923
  readonly responseStream: false;
29366
28924
  readonly options: {
29367
28925
  readonly _unknownFields: {
29368
- readonly 480010: readonly [Uint8Array];
28926
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
29369
28927
  };
29370
28928
  };
29371
28929
  };
@@ -29915,7 +29473,7 @@ declare const NewModmailDefinition: {
29915
29473
  readonly responseStream: false;
29916
29474
  readonly options: {
29917
29475
  readonly _unknownFields: {
29918
- readonly 480010: readonly [Uint8Array];
29476
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
29919
29477
  };
29920
29478
  };
29921
29479
  };
@@ -30539,7 +30097,7 @@ declare const NewModmailDefinition: {
30539
30097
  readonly responseStream: false;
30540
30098
  readonly options: {
30541
30099
  readonly _unknownFields: {
30542
- readonly 480010: readonly [Uint8Array];
30100
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
30543
30101
  };
30544
30102
  };
30545
30103
  };
@@ -30868,7 +30426,7 @@ declare const NewModmailDefinition: {
30868
30426
  readonly responseStream: false;
30869
30427
  readonly options: {
30870
30428
  readonly _unknownFields: {
30871
- readonly 480010: readonly [Uint8Array];
30429
+ readonly 480010: readonly [Uint8Array, Uint8Array];
30872
30430
  };
30873
30431
  };
30874
30432
  };
@@ -31223,7 +30781,7 @@ declare const NewModmailDefinition: {
31223
30781
  readonly responseStream: false;
31224
30782
  readonly options: {
31225
30783
  readonly _unknownFields: {
31226
- readonly 480010: readonly [Uint8Array];
30784
+ readonly 480010: readonly [Uint8Array, Uint8Array];
31227
30785
  };
31228
30786
  };
31229
30787
  };
@@ -31552,7 +31110,7 @@ declare const NewModmailDefinition: {
31552
31110
  readonly responseStream: false;
31553
31111
  readonly options: {
31554
31112
  readonly _unknownFields: {
31555
- readonly 480010: readonly [Uint8Array];
31113
+ readonly 480010: readonly [Uint8Array, Uint8Array];
31556
31114
  };
31557
31115
  };
31558
31116
  };
@@ -31907,7 +31465,7 @@ declare const NewModmailDefinition: {
31907
31465
  readonly responseStream: false;
31908
31466
  readonly options: {
31909
31467
  readonly _unknownFields: {
31910
- readonly 480010: readonly [Uint8Array];
31468
+ readonly 480010: readonly [Uint8Array, Uint8Array];
31911
31469
  };
31912
31470
  };
31913
31471
  };
@@ -32262,7 +31820,7 @@ declare const NewModmailDefinition: {
32262
31820
  readonly responseStream: false;
32263
31821
  readonly options: {
32264
31822
  readonly _unknownFields: {
32265
- readonly 480010: readonly [Uint8Array];
31823
+ readonly 480010: readonly [Uint8Array, Uint8Array];
32266
31824
  };
32267
31825
  };
32268
31826
  };
@@ -32585,7 +32143,7 @@ declare const NewModmailDefinition: {
32585
32143
  readonly responseStream: false;
32586
32144
  readonly options: {
32587
32145
  readonly _unknownFields: {
32588
- readonly 480010: readonly [Uint8Array];
32146
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
32589
32147
  };
32590
32148
  };
32591
32149
  };
@@ -32914,7 +32472,7 @@ declare const NewModmailDefinition: {
32914
32472
  readonly responseStream: false;
32915
32473
  readonly options: {
32916
32474
  readonly _unknownFields: {
32917
- readonly 480010: readonly [Uint8Array];
32475
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
32918
32476
  };
32919
32477
  };
32920
32478
  };
@@ -33269,7 +32827,7 @@ declare const NewModmailDefinition: {
33269
32827
  readonly responseStream: false;
33270
32828
  readonly options: {
33271
32829
  readonly _unknownFields: {
33272
- readonly 480010: readonly [Uint8Array];
32830
+ readonly 480010: readonly [Uint8Array, Uint8Array];
33273
32831
  };
33274
32832
  };
33275
32833
  };
@@ -33596,7 +33154,7 @@ declare const NewModmailDefinition: {
33596
33154
  readonly responseStream: false;
33597
33155
  readonly options: {
33598
33156
  readonly _unknownFields: {
33599
- readonly 480010: readonly [Uint8Array];
33157
+ readonly 480010: readonly [Uint8Array, Uint8Array];
33600
33158
  };
33601
33159
  };
33602
33160
  };
@@ -33917,7 +33475,7 @@ declare const NewModmailDefinition: {
33917
33475
  readonly responseStream: false;
33918
33476
  readonly options: {
33919
33477
  readonly _unknownFields: {
33920
- readonly 480010: readonly [Uint8Array];
33478
+ readonly 480010: readonly [Uint8Array, Uint8Array];
33921
33479
  };
33922
33480
  };
33923
33481
  };
@@ -34038,7 +33596,7 @@ declare const NewModmailDefinition: {
34038
33596
  readonly responseStream: false;
34039
33597
  readonly options: {
34040
33598
  readonly _unknownFields: {
34041
- readonly 480010: readonly [Uint8Array];
33599
+ readonly 480010: readonly [Uint8Array, Uint8Array];
34042
33600
  };
34043
33601
  };
34044
33602
  };
@@ -34071,7 +33629,7 @@ declare const NewModmailDefinition: {
34071
33629
  readonly responseStream: false;
34072
33630
  readonly options: {
34073
33631
  readonly _unknownFields: {
34074
- readonly 480010: readonly [Uint8Array];
33632
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
34075
33633
  };
34076
33634
  };
34077
33635
  };
@@ -34128,7 +33686,7 @@ declare const NewModmailDefinition: {
34128
33686
  readonly responseStream: false;
34129
33687
  readonly options: {
34130
33688
  readonly _unknownFields: {
34131
- readonly 480010: readonly [Uint8Array];
33689
+ readonly 480010: readonly [Uint8Array, Uint8Array];
34132
33690
  };
34133
33691
  };
34134
33692
  };
@@ -34161,7 +33719,7 @@ declare const NewModmailDefinition: {
34161
33719
  readonly responseStream: false;
34162
33720
  readonly options: {
34163
33721
  readonly _unknownFields: {
34164
- readonly 480010: readonly [Uint8Array];
33722
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
34165
33723
  };
34166
33724
  };
34167
33725
  };
@@ -34210,7 +33768,7 @@ declare const NewModmailDefinition: {
34210
33768
  readonly responseStream: false;
34211
33769
  readonly options: {
34212
33770
  readonly _unknownFields: {
34213
- readonly 480010: readonly [Uint8Array];
33771
+ readonly 480010: readonly [Uint8Array, Uint8Array];
34214
33772
  };
34215
33773
  };
34216
33774
  };
@@ -34223,7 +33781,7 @@ declare const NewModmailServiceName = "devvit.plugin.redditapi.newmodmail.NewMod
34223
33781
  * `NullValue` is a singleton enumeration to represent the null value for the
34224
33782
  * `Value` type union.
34225
33783
  *
34226
- * The JSON representation for `NullValue` is JSON `null`.
33784
+ * The JSON representation for `NullValue` is JSON `null`.
34227
33785
  */
34228
33786
  declare enum NullValue {
34229
33787
  /** NULL_VALUE - Null value. */
@@ -36336,8 +35894,6 @@ declare const OneofDescriptorProto: {
36336
35894
  };
36337
35895
 
36338
35896
  declare interface OneofOptions {
36339
- /** Any features defined in the specific edition. */
36340
- features?: FeatureSet | undefined;
36341
35897
  /** The parser stores options it doesn't recognize here. See above. */
36342
35898
  uninterpretedOption: UninterpretedOption[];
36343
35899
  }
@@ -38620,7 +38176,7 @@ declare const OnPostSpoilerUpdateDefinition: {
38620
38176
  iconImage?: string;
38621
38177
  description?: string;
38622
38178
  } | undefined;
38623
- isSpoiler?: boolean;
38179
+ isNsfw?: boolean;
38624
38180
  subreddit?: {
38625
38181
  id?: string;
38626
38182
  name?: string;
@@ -38747,7 +38303,7 @@ declare const OnPostSpoilerUpdateDefinition: {
38747
38303
  iconImage?: string;
38748
38304
  description?: string;
38749
38305
  } | undefined;
38750
- isSpoiler?: boolean;
38306
+ isNsfw?: boolean;
38751
38307
  subreddit?: {
38752
38308
  id?: string;
38753
38309
  name?: string;
@@ -41025,7 +40581,7 @@ export declare type PostSpoilerUpdate = 'PostSpoilerUpdate';
41025
40581
  declare interface PostSpoilerUpdate_2 {
41026
40582
  post?: PostV2 | undefined;
41027
40583
  author?: UserV2 | undefined;
41028
- isSpoiler: boolean;
40584
+ isNsfw: boolean;
41029
40585
  subreddit?: SubredditV2 | undefined;
41030
40586
  }
41031
40587
 
@@ -41320,7 +40876,7 @@ declare const PrivateMessagesDefinition: {
41320
40876
  readonly responseStream: false;
41321
40877
  readonly options: {
41322
40878
  readonly _unknownFields: {
41323
- readonly 480010: readonly [Uint8Array];
40879
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41324
40880
  };
41325
40881
  };
41326
40882
  };
@@ -41354,7 +40910,7 @@ declare const PrivateMessagesDefinition: {
41354
40910
  readonly responseStream: false;
41355
40911
  readonly options: {
41356
40912
  readonly _unknownFields: {
41357
- readonly 480010: readonly [Uint8Array];
40913
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41358
40914
  };
41359
40915
  };
41360
40916
  };
@@ -41393,7 +40949,7 @@ declare const PrivateMessagesDefinition: {
41393
40949
  readonly responseStream: false;
41394
40950
  readonly options: {
41395
40951
  readonly _unknownFields: {
41396
- readonly 480010: readonly [Uint8Array];
40952
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
41397
40953
  };
41398
40954
  };
41399
40955
  };
@@ -41427,7 +40983,7 @@ declare const PrivateMessagesDefinition: {
41427
40983
  readonly responseStream: false;
41428
40984
  readonly options: {
41429
40985
  readonly _unknownFields: {
41430
- readonly 480010: readonly [Uint8Array];
40986
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41431
40987
  };
41432
40988
  };
41433
40989
  };
@@ -41460,7 +41016,7 @@ declare const PrivateMessagesDefinition: {
41460
41016
  readonly responseStream: false;
41461
41017
  readonly options: {
41462
41018
  readonly _unknownFields: {
41463
- readonly 480010: readonly [Uint8Array];
41019
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41464
41020
  };
41465
41021
  };
41466
41022
  };
@@ -41494,7 +41050,7 @@ declare const PrivateMessagesDefinition: {
41494
41050
  readonly responseStream: false;
41495
41051
  readonly options: {
41496
41052
  readonly _unknownFields: {
41497
- readonly 480010: readonly [Uint8Array];
41053
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41498
41054
  };
41499
41055
  };
41500
41056
  };
@@ -41528,7 +41084,7 @@ declare const PrivateMessagesDefinition: {
41528
41084
  readonly responseStream: false;
41529
41085
  readonly options: {
41530
41086
  readonly _unknownFields: {
41531
- readonly 480010: readonly [Uint8Array];
41087
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41532
41088
  };
41533
41089
  };
41534
41090
  };
@@ -41562,7 +41118,7 @@ declare const PrivateMessagesDefinition: {
41562
41118
  readonly responseStream: false;
41563
41119
  readonly options: {
41564
41120
  readonly _unknownFields: {
41565
- readonly 480010: readonly [Uint8Array];
41121
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41566
41122
  };
41567
41123
  };
41568
41124
  };
@@ -41596,7 +41152,7 @@ declare const PrivateMessagesDefinition: {
41596
41152
  readonly responseStream: false;
41597
41153
  readonly options: {
41598
41154
  readonly _unknownFields: {
41599
- readonly 480010: readonly [Uint8Array];
41155
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
41600
41156
  };
41601
41157
  };
41602
41158
  };
@@ -41975,7 +41531,7 @@ declare const PrivateMessagesDefinition: {
41975
41531
  readonly responseStream: false;
41976
41532
  readonly options: {
41977
41533
  readonly _unknownFields: {
41978
- readonly 480010: readonly [Uint8Array];
41534
+ readonly 480010: readonly [Uint8Array, Uint8Array];
41979
41535
  };
41980
41536
  };
41981
41537
  };
@@ -42101,10 +41657,6 @@ declare namespace protos {
42101
41657
  ListValue,
42102
41658
  Empty,
42103
41659
  Duration,
42104
- editionFromJSON,
42105
- editionToJSON,
42106
- extensionRangeOptions_VerificationStateFromJSON,
42107
- extensionRangeOptions_VerificationStateToJSON,
42108
41660
  fieldDescriptorProto_TypeFromJSON,
42109
41661
  fieldDescriptorProto_TypeToJSON,
42110
41662
  fieldDescriptorProto_LabelFromJSON,
@@ -42115,35 +41667,14 @@ declare namespace protos {
42115
41667
  fieldOptions_CTypeToJSON,
42116
41668
  fieldOptions_JSTypeFromJSON,
42117
41669
  fieldOptions_JSTypeToJSON,
42118
- fieldOptions_OptionRetentionFromJSON,
42119
- fieldOptions_OptionRetentionToJSON,
42120
- fieldOptions_OptionTargetTypeFromJSON,
42121
- fieldOptions_OptionTargetTypeToJSON,
42122
41670
  methodOptions_IdempotencyLevelFromJSON,
42123
41671
  methodOptions_IdempotencyLevelToJSON,
42124
- featureSet_FieldPresenceFromJSON,
42125
- featureSet_FieldPresenceToJSON,
42126
- featureSet_EnumTypeFromJSON,
42127
- featureSet_EnumTypeToJSON,
42128
- featureSet_RepeatedFieldEncodingFromJSON,
42129
- featureSet_RepeatedFieldEncodingToJSON,
42130
- featureSet_Utf8ValidationFromJSON,
42131
- featureSet_Utf8ValidationToJSON,
42132
- featureSet_MessageEncodingFromJSON,
42133
- featureSet_MessageEncodingToJSON,
42134
- featureSet_JsonFormatFromJSON,
42135
- featureSet_JsonFormatToJSON,
42136
- generatedCodeInfo_Annotation_SemanticFromJSON,
42137
- generatedCodeInfo_Annotation_SemanticToJSON,
42138
- Edition,
42139
41672
  FileDescriptorSet,
42140
41673
  FileDescriptorProto,
42141
41674
  DescriptorProto,
42142
41675
  DescriptorProto_ExtensionRange,
42143
41676
  DescriptorProto_ReservedRange,
42144
41677
  ExtensionRangeOptions,
42145
- ExtensionRangeOptions_VerificationState,
42146
- ExtensionRangeOptions_Declaration,
42147
41678
  FieldDescriptorProto,
42148
41679
  FieldDescriptorProto_Type,
42149
41680
  FieldDescriptorProto_Label,
@@ -42159,10 +41690,6 @@ declare namespace protos {
42159
41690
  FieldOptions,
42160
41691
  FieldOptions_CType,
42161
41692
  FieldOptions_JSType,
42162
- FieldOptions_OptionRetention,
42163
- FieldOptions_OptionTargetType,
42164
- FieldOptions_EditionDefault,
42165
- FieldOptions_FeatureSupport,
42166
41693
  OneofOptions,
42167
41694
  EnumOptions,
42168
41695
  EnumValueOptions,
@@ -42171,20 +41698,10 @@ declare namespace protos {
42171
41698
  MethodOptions_IdempotencyLevel,
42172
41699
  UninterpretedOption,
42173
41700
  UninterpretedOption_NamePart,
42174
- FeatureSet,
42175
- FeatureSet_FieldPresence,
42176
- FeatureSet_EnumType,
42177
- FeatureSet_RepeatedFieldEncoding,
42178
- FeatureSet_Utf8Validation,
42179
- FeatureSet_MessageEncoding,
42180
- FeatureSet_JsonFormat,
42181
- FeatureSetDefaults,
42182
- FeatureSetDefaults_FeatureSetEditionDefault,
42183
41701
  SourceCodeInfo,
42184
41702
  SourceCodeInfo_Location,
42185
41703
  GeneratedCodeInfo,
42186
41704
  GeneratedCodeInfo_Annotation,
42187
- GeneratedCodeInfo_Annotation_Semantic,
42188
41705
  Any,
42189
41706
  EnvelopeReceiverPort,
42190
41707
  EnvelopeReceiverPortServiceName,
@@ -48845,8 +48362,6 @@ declare const ServiceDescriptorProto: {
48845
48362
  };
48846
48363
 
48847
48364
  declare interface ServiceOptions {
48848
- /** Any features defined in the specific edition. */
48849
- features?: FeatureSet | undefined;
48850
48365
  /**
48851
48366
  * Is this service deprecated?
48852
48367
  * Depending on the target platform, this can emit Deprecated annotations
@@ -49580,7 +49095,7 @@ declare interface SourceCodeInfo_Location {
49580
49095
  * location.
49581
49096
  *
49582
49097
  * Each element is a field number or an index. They form a path from
49583
- * the root FileDescriptorProto to the place where the definition appears.
49098
+ * the root FileDescriptorProto to the place where the definition occurs.
49584
49099
  * For example, this path:
49585
49100
  * [ 4, 3, 2, 7, 1 ]
49586
49101
  * refers to:
@@ -52490,7 +52005,7 @@ declare const SubredditsDefinition: {
52490
52005
  readonly responseStream: false;
52491
52006
  readonly options: {
52492
52007
  readonly _unknownFields: {
52493
- readonly 480010: readonly [Uint8Array];
52008
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
52494
52009
  };
52495
52010
  };
52496
52011
  };
@@ -52531,7 +52046,7 @@ declare const SubredditsDefinition: {
52531
52046
  readonly responseStream: false;
52532
52047
  readonly options: {
52533
52048
  readonly _unknownFields: {
52534
- readonly 480010: readonly [Uint8Array];
52049
+ readonly 480010: readonly [Uint8Array, Uint8Array];
52535
52050
  };
52536
52051
  };
52537
52052
  };
@@ -52572,7 +52087,7 @@ declare const SubredditsDefinition: {
52572
52087
  readonly responseStream: false;
52573
52088
  readonly options: {
52574
52089
  readonly _unknownFields: {
52575
- readonly 480010: readonly [Uint8Array];
52090
+ readonly 480010: readonly [Uint8Array, Uint8Array];
52576
52091
  };
52577
52092
  };
52578
52093
  };
@@ -52613,7 +52128,7 @@ declare const SubredditsDefinition: {
52613
52128
  readonly responseStream: false;
52614
52129
  readonly options: {
52615
52130
  readonly _unknownFields: {
52616
- readonly 480010: readonly [Uint8Array];
52131
+ readonly 480010: readonly [Uint8Array, Uint8Array];
52617
52132
  };
52618
52133
  };
52619
52134
  };
@@ -52656,7 +52171,7 @@ declare const SubredditsDefinition: {
52656
52171
  readonly responseStream: false;
52657
52172
  readonly options: {
52658
52173
  readonly _unknownFields: {
52659
- readonly 480010: readonly [Uint8Array];
52174
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
52660
52175
  };
52661
52176
  };
52662
52177
  };
@@ -52703,7 +52218,7 @@ declare const SubredditsDefinition: {
52703
52218
  readonly responseStream: false;
52704
52219
  readonly options: {
52705
52220
  readonly _unknownFields: {
52706
- readonly 480010: readonly [Uint8Array];
52221
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
52707
52222
  };
52708
52223
  };
52709
52224
  };
@@ -52768,7 +52283,7 @@ declare const SubredditsDefinition: {
52768
52283
  readonly responseStream: false;
52769
52284
  readonly options: {
52770
52285
  readonly _unknownFields: {
52771
- readonly 480010: readonly [Uint8Array];
52286
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
52772
52287
  };
52773
52288
  };
52774
52289
  };
@@ -52945,7 +52460,7 @@ declare const SubredditsDefinition: {
52945
52460
  readonly responseStream: false;
52946
52461
  readonly options: {
52947
52462
  readonly _unknownFields: {
52948
- readonly 480010: readonly [Uint8Array];
52463
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
52949
52464
  };
52950
52465
  };
52951
52466
  };
@@ -52984,7 +52499,7 @@ declare const SubredditsDefinition: {
52984
52499
  readonly responseStream: false;
52985
52500
  readonly options: {
52986
52501
  readonly _unknownFields: {
52987
- readonly 480010: readonly [Uint8Array];
52502
+ readonly 480010: readonly [Uint8Array, Uint8Array];
52988
52503
  };
52989
52504
  };
52990
52505
  };
@@ -53320,7 +52835,7 @@ declare const SubredditsDefinition: {
53320
52835
  readonly responseStream: false;
53321
52836
  readonly options: {
53322
52837
  readonly _unknownFields: {
53323
- readonly 480010: readonly [Uint8Array];
52838
+ readonly 480010: readonly [Uint8Array, Uint8Array];
53324
52839
  };
53325
52840
  };
53326
52841
  };
@@ -53367,7 +52882,7 @@ declare const SubredditsDefinition: {
53367
52882
  readonly responseStream: false;
53368
52883
  readonly options: {
53369
52884
  readonly _unknownFields: {
53370
- readonly 480010: readonly [Uint8Array];
52885
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
53371
52886
  };
53372
52887
  };
53373
52888
  };
@@ -53408,7 +52923,7 @@ declare const SubredditsDefinition: {
53408
52923
  readonly responseStream: false;
53409
52924
  readonly options: {
53410
52925
  readonly _unknownFields: {
53411
- readonly 480010: readonly [Uint8Array];
52926
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
53412
52927
  };
53413
52928
  };
53414
52929
  };
@@ -53459,7 +52974,7 @@ declare const SubredditsDefinition: {
53459
52974
  readonly responseStream: false;
53460
52975
  readonly options: {
53461
52976
  readonly _unknownFields: {
53462
- readonly 480010: readonly [Uint8Array];
52977
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
53463
52978
  };
53464
52979
  };
53465
52980
  };
@@ -53538,7 +53053,7 @@ declare const SubredditsDefinition: {
53538
53053
  readonly responseStream: false;
53539
53054
  readonly options: {
53540
53055
  readonly _unknownFields: {
53541
- readonly 480010: readonly [Uint8Array];
53056
+ readonly 480010: readonly [Uint8Array, Uint8Array];
53542
53057
  };
53543
53058
  };
53544
53059
  };
@@ -53799,7 +53314,7 @@ declare const SubredditsDefinition: {
53799
53314
  readonly responseStream: false;
53800
53315
  readonly options: {
53801
53316
  readonly _unknownFields: {
53802
- readonly 480010: readonly [Uint8Array];
53317
+ readonly 480010: readonly [Uint8Array, Uint8Array];
53803
53318
  };
53804
53319
  };
53805
53320
  };
@@ -53972,7 +53487,7 @@ declare const SubredditsDefinition: {
53972
53487
  readonly responseStream: false;
53973
53488
  readonly options: {
53974
53489
  readonly _unknownFields: {
53975
- readonly 480010: readonly [Uint8Array];
53490
+ readonly 480010: readonly [Uint8Array, Uint8Array];
53976
53491
  };
53977
53492
  };
53978
53493
  };
@@ -54063,7 +53578,7 @@ declare const SubredditsDefinition: {
54063
53578
  readonly responseStream: false;
54064
53579
  readonly options: {
54065
53580
  readonly _unknownFields: {
54066
- readonly 480010: readonly [Uint8Array];
53581
+ readonly 480010: readonly [Uint8Array, Uint8Array];
54067
53582
  };
54068
53583
  };
54069
53584
  };
@@ -54116,7 +53631,7 @@ declare const SubredditsDefinition: {
54116
53631
  readonly responseStream: false;
54117
53632
  readonly options: {
54118
53633
  readonly _unknownFields: {
54119
- readonly 480010: readonly [Uint8Array];
53634
+ readonly 480010: readonly [Uint8Array, Uint8Array];
54120
53635
  };
54121
53636
  };
54122
53637
  };
@@ -54153,7 +53668,7 @@ declare const SubredditsDefinition: {
54153
53668
  readonly responseStream: false;
54154
53669
  readonly options: {
54155
53670
  readonly _unknownFields: {
54156
- readonly 480010: readonly [Uint8Array];
53671
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
54157
53672
  };
54158
53673
  };
54159
53674
  };
@@ -54500,7 +54015,7 @@ declare const SubredditsDefinition: {
54500
54015
  readonly responseStream: false;
54501
54016
  readonly options: {
54502
54017
  readonly _unknownFields: {
54503
- readonly 480010: readonly [Uint8Array];
54018
+ readonly 480010: readonly [Uint8Array, Uint8Array];
54504
54019
  };
54505
54020
  };
54506
54021
  };
@@ -54875,7 +54390,7 @@ declare const SubredditsDefinition: {
54875
54390
  readonly responseStream: false;
54876
54391
  readonly options: {
54877
54392
  readonly _unknownFields: {
54878
- readonly 480010: readonly [Uint8Array];
54393
+ readonly 480010: readonly [Uint8Array, Uint8Array];
54879
54394
  };
54880
54395
  };
54881
54396
  };
@@ -55167,7 +54682,7 @@ declare const SubredditsDefinition: {
55167
54682
  readonly responseStream: false;
55168
54683
  readonly options: {
55169
54684
  readonly _unknownFields: {
55170
- readonly 480010: readonly [Uint8Array];
54685
+ readonly 480010: readonly [Uint8Array, Uint8Array];
55171
54686
  };
55172
54687
  };
55173
54688
  };
@@ -55448,7 +54963,7 @@ declare const SubredditsDefinition: {
55448
54963
  readonly responseStream: false;
55449
54964
  readonly options: {
55450
54965
  readonly _unknownFields: {
55451
- readonly 480010: readonly [Uint8Array];
54966
+ readonly 480010: readonly [Uint8Array, Uint8Array];
55452
54967
  };
55453
54968
  };
55454
54969
  };
@@ -55657,7 +55172,7 @@ declare const SubredditsDefinition: {
55657
55172
  readonly responseStream: false;
55658
55173
  readonly options: {
55659
55174
  readonly _unknownFields: {
55660
- readonly 480010: readonly [Uint8Array];
55175
+ readonly 480010: readonly [Uint8Array, Uint8Array];
55661
55176
  };
55662
55177
  };
55663
55178
  };
@@ -55938,7 +55453,7 @@ declare const SubredditsDefinition: {
55938
55453
  readonly responseStream: false;
55939
55454
  readonly options: {
55940
55455
  readonly _unknownFields: {
55941
- readonly 480010: readonly [Uint8Array];
55456
+ readonly 480010: readonly [Uint8Array, Uint8Array];
55942
55457
  };
55943
55458
  };
55944
55459
  };
@@ -55983,7 +55498,7 @@ declare const SubredditsDefinition: {
55983
55498
  readonly responseStream: false;
55984
55499
  readonly options: {
55985
55500
  readonly _unknownFields: {
55986
- readonly 480010: readonly [Uint8Array];
55501
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
55987
55502
  };
55988
55503
  };
55989
55504
  };
@@ -56038,7 +55553,7 @@ declare const SubredditsDefinition: {
56038
55553
  readonly responseStream: false;
56039
55554
  readonly options: {
56040
55555
  readonly _unknownFields: {
56041
- readonly 480010: readonly [Uint8Array];
55556
+ readonly 480010: readonly [Uint8Array, Uint8Array];
56042
55557
  };
56043
55558
  };
56044
55559
  };
@@ -57150,7 +56665,7 @@ declare const TimerServiceName = "devvit.plugin.timer.Timer";
57150
56665
  * [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
57151
56666
  * the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
57152
56667
  * the Joda Time's [`ISODateTimeFormat.dateTime()`](
57153
- * http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
56668
+ * http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
57154
56669
  * ) to obtain a formatter capable of generating timestamps in this format.
57155
56670
  */
57156
56671
  declare interface Timestamp {
@@ -59710,7 +59225,7 @@ declare const TriggersDefinition: {
59710
59225
  iconImage?: string;
59711
59226
  description?: string;
59712
59227
  } | undefined;
59713
- isSpoiler?: boolean;
59228
+ isNsfw?: boolean;
59714
59229
  subreddit?: {
59715
59230
  id?: string;
59716
59231
  name?: string;
@@ -61913,7 +61428,7 @@ declare const TriggersDefinition: {
61913
61428
  iconImage?: string;
61914
61429
  description?: string;
61915
61430
  } | undefined;
61916
- isSpoiler?: boolean;
61431
+ isNsfw?: boolean;
61917
61432
  subreddit?: {
61918
61433
  id?: string;
61919
61434
  name?: string;
@@ -64138,7 +63653,7 @@ declare const TriggersDefinition: {
64138
63653
  iconImage?: string;
64139
63654
  description?: string;
64140
63655
  } | undefined;
64141
- isSpoiler?: boolean;
63656
+ isNsfw?: boolean;
64142
63657
  subreddit?: {
64143
63658
  id?: string;
64144
63659
  name?: string;
@@ -66341,7 +65856,7 @@ declare const TriggersDefinition: {
66341
65856
  iconImage?: string;
66342
65857
  description?: string;
66343
65858
  } | undefined;
66344
- isSpoiler?: boolean;
65859
+ isNsfw?: boolean;
66345
65860
  subreddit?: {
66346
65861
  id?: string;
66347
65862
  name?: string;
@@ -68342,7 +67857,7 @@ declare const UsersDefinition: {
68342
67857
  readonly responseStream: false;
68343
67858
  readonly options: {
68344
67859
  readonly _unknownFields: {
68345
- readonly 480010: readonly [Uint8Array];
67860
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
68346
67861
  };
68347
67862
  };
68348
67863
  };
@@ -68399,7 +67914,7 @@ declare const UsersDefinition: {
68399
67914
  readonly responseStream: false;
68400
67915
  readonly options: {
68401
67916
  readonly _unknownFields: {
68402
- readonly 480010: readonly [Uint8Array];
67917
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
68403
67918
  };
68404
67919
  };
68405
67920
  };
@@ -68436,7 +67951,7 @@ declare const UsersDefinition: {
68436
67951
  readonly responseStream: false;
68437
67952
  readonly options: {
68438
67953
  readonly _unknownFields: {
68439
- readonly 480010: readonly [Uint8Array];
67954
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
68440
67955
  };
68441
67956
  };
68442
67957
  };
@@ -68483,7 +67998,7 @@ declare const UsersDefinition: {
68483
67998
  readonly responseStream: false;
68484
67999
  readonly options: {
68485
68000
  readonly _unknownFields: {
68486
- readonly 480010: readonly [Uint8Array];
68001
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
68487
68002
  };
68488
68003
  };
68489
68004
  };
@@ -68522,7 +68037,7 @@ declare const UsersDefinition: {
68522
68037
  readonly responseStream: false;
68523
68038
  readonly options: {
68524
68039
  readonly _unknownFields: {
68525
- readonly 480010: readonly [Uint8Array];
68040
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
68526
68041
  };
68527
68042
  };
68528
68043
  };
@@ -68612,7 +68127,7 @@ declare const UsersDefinition: {
68612
68127
  readonly responseStream: false;
68613
68128
  readonly options: {
68614
68129
  readonly _unknownFields: {
68615
- readonly 480010: readonly [Uint8Array];
68130
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
68616
68131
  };
68617
68132
  };
68618
68133
  };
@@ -68647,7 +68162,7 @@ declare const UsersDefinition: {
68647
68162
  readonly responseStream: false;
68648
68163
  readonly options: {
68649
68164
  readonly _unknownFields: {
68650
- readonly 480010: readonly [Uint8Array];
68165
+ readonly 480010: readonly [Uint8Array, Uint8Array];
68651
68166
  };
68652
68167
  };
68653
68168
  };
@@ -68703,7 +68218,7 @@ declare const UsersDefinition: {
68703
68218
  readonly responseStream: false;
68704
68219
  readonly options: {
68705
68220
  readonly _unknownFields: {
68706
- readonly 480010: readonly [Uint8Array];
68221
+ readonly 480010: readonly [Uint8Array, Uint8Array];
68707
68222
  };
68708
68223
  };
68709
68224
  };
@@ -68756,7 +68271,7 @@ declare const UsersDefinition: {
68756
68271
  readonly responseStream: false;
68757
68272
  readonly options: {
68758
68273
  readonly _unknownFields: {
68759
- readonly 480010: readonly [Uint8Array];
68274
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
68760
68275
  };
68761
68276
  };
68762
68277
  };
@@ -68825,7 +68340,7 @@ declare const UsersDefinition: {
68825
68340
  readonly responseStream: false;
68826
68341
  readonly options: {
68827
68342
  readonly _unknownFields: {
68828
- readonly 480010: readonly [Uint8Array];
68343
+ readonly 480010: readonly [Uint8Array, Uint8Array];
68829
68344
  };
68830
68345
  };
68831
68346
  };
@@ -69358,7 +68873,7 @@ declare const UsersDefinition: {
69358
68873
  readonly responseStream: false;
69359
68874
  readonly options: {
69360
68875
  readonly _unknownFields: {
69361
- readonly 480010: readonly [Uint8Array];
68876
+ readonly 480010: readonly [Uint8Array, Uint8Array];
69362
68877
  };
69363
68878
  };
69364
68879
  };
@@ -69743,7 +69258,7 @@ declare const UsersDefinition: {
69743
69258
  readonly responseStream: false;
69744
69259
  readonly options: {
69745
69260
  readonly _unknownFields: {
69746
- readonly 480010: readonly [Uint8Array];
69261
+ readonly 480010: readonly [Uint8Array, Uint8Array];
69747
69262
  };
69748
69263
  };
69749
69264
  };
@@ -70791,7 +70306,7 @@ declare const WidgetsDefinition: {
70791
70306
  readonly responseStream: false;
70792
70307
  readonly options: {
70793
70308
  readonly _unknownFields: {
70794
- readonly 480010: readonly [Uint8Array];
70309
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
70795
70310
  };
70796
70311
  };
70797
70312
  };
@@ -70880,7 +70395,7 @@ declare const WidgetsDefinition: {
70880
70395
  readonly responseStream: false;
70881
70396
  readonly options: {
70882
70397
  readonly _unknownFields: {
70883
- readonly 480010: readonly [Uint8Array];
70398
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
70884
70399
  };
70885
70400
  };
70886
70401
  };
@@ -70983,7 +70498,7 @@ declare const WidgetsDefinition: {
70983
70498
  readonly responseStream: false;
70984
70499
  readonly options: {
70985
70500
  readonly _unknownFields: {
70986
- readonly 480010: readonly [Uint8Array];
70501
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
70987
70502
  };
70988
70503
  };
70989
70504
  };
@@ -71050,7 +70565,7 @@ declare const WidgetsDefinition: {
71050
70565
  readonly responseStream: false;
71051
70566
  readonly options: {
71052
70567
  readonly _unknownFields: {
71053
- readonly 480010: readonly [Uint8Array];
70568
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71054
70569
  };
71055
70570
  };
71056
70571
  };
@@ -71137,7 +70652,7 @@ declare const WidgetsDefinition: {
71137
70652
  readonly responseStream: false;
71138
70653
  readonly options: {
71139
70654
  readonly _unknownFields: {
71140
- readonly 480010: readonly [Uint8Array];
70655
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71141
70656
  };
71142
70657
  };
71143
70658
  };
@@ -71210,7 +70725,7 @@ declare const WidgetsDefinition: {
71210
70725
  readonly responseStream: false;
71211
70726
  readonly options: {
71212
70727
  readonly _unknownFields: {
71213
- readonly 480010: readonly [Uint8Array];
70728
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71214
70729
  };
71215
70730
  };
71216
70731
  };
@@ -71310,7 +70825,7 @@ declare const WidgetsDefinition: {
71310
70825
  readonly responseStream: false;
71311
70826
  readonly options: {
71312
70827
  readonly _unknownFields: {
71313
- readonly 480010: readonly [Uint8Array];
70828
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71314
70829
  };
71315
70830
  };
71316
70831
  };
@@ -71349,7 +70864,7 @@ declare const WidgetsDefinition: {
71349
70864
  readonly responseStream: false;
71350
70865
  readonly options: {
71351
70866
  readonly _unknownFields: {
71352
- readonly 480010: readonly [Uint8Array];
70867
+ readonly 480010: readonly [Uint8Array, Uint8Array];
71353
70868
  };
71354
70869
  };
71355
70870
  };
@@ -71506,7 +71021,7 @@ declare const WidgetsDefinition: {
71506
71021
  readonly responseStream: false;
71507
71022
  readonly options: {
71508
71023
  readonly _unknownFields: {
71509
- readonly 480010: readonly [Uint8Array];
71024
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71510
71025
  };
71511
71026
  };
71512
71027
  };
@@ -71597,7 +71112,7 @@ declare const WidgetsDefinition: {
71597
71112
  readonly responseStream: false;
71598
71113
  readonly options: {
71599
71114
  readonly _unknownFields: {
71600
- readonly 480010: readonly [Uint8Array];
71115
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71601
71116
  };
71602
71117
  };
71603
71118
  };
@@ -71702,7 +71217,7 @@ declare const WidgetsDefinition: {
71702
71217
  readonly responseStream: false;
71703
71218
  readonly options: {
71704
71219
  readonly _unknownFields: {
71705
- readonly 480010: readonly [Uint8Array];
71220
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71706
71221
  };
71707
71222
  };
71708
71223
  };
@@ -71771,7 +71286,7 @@ declare const WidgetsDefinition: {
71771
71286
  readonly responseStream: false;
71772
71287
  readonly options: {
71773
71288
  readonly _unknownFields: {
71774
- readonly 480010: readonly [Uint8Array];
71289
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71775
71290
  };
71776
71291
  };
71777
71292
  };
@@ -71838,7 +71353,7 @@ declare const WidgetsDefinition: {
71838
71353
  readonly responseStream: false;
71839
71354
  readonly options: {
71840
71355
  readonly _unknownFields: {
71841
- readonly 480010: readonly [Uint8Array];
71356
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71842
71357
  };
71843
71358
  };
71844
71359
  };
@@ -71913,7 +71428,7 @@ declare const WidgetsDefinition: {
71913
71428
  readonly responseStream: false;
71914
71429
  readonly options: {
71915
71430
  readonly _unknownFields: {
71916
- readonly 480010: readonly [Uint8Array];
71431
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
71917
71432
  };
71918
71433
  };
71919
71434
  };
@@ -72014,7 +71529,7 @@ declare const WidgetsDefinition: {
72014
71529
  readonly responseStream: false;
72015
71530
  readonly options: {
72016
71531
  readonly _unknownFields: {
72017
- readonly 480010: readonly [Uint8Array];
71532
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array, Uint8Array];
72018
71533
  };
72019
71534
  };
72020
71535
  };
@@ -72073,7 +71588,7 @@ declare const WidgetsDefinition: {
72073
71588
  readonly responseStream: false;
72074
71589
  readonly options: {
72075
71590
  readonly _unknownFields: {
72076
- readonly 480010: readonly [Uint8Array];
71591
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
72077
71592
  };
72078
71593
  };
72079
71594
  };
@@ -72112,7 +71627,7 @@ declare const WidgetsDefinition: {
72112
71627
  readonly responseStream: false;
72113
71628
  readonly options: {
72114
71629
  readonly _unknownFields: {
72115
- readonly 480010: readonly [Uint8Array];
71630
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
72116
71631
  };
72117
71632
  };
72118
71633
  };
@@ -72385,7 +71900,7 @@ declare const WidgetsDefinition: {
72385
71900
  readonly responseStream: false;
72386
71901
  readonly options: {
72387
71902
  readonly _unknownFields: {
72388
- readonly 480010: readonly [Uint8Array];
71903
+ readonly 480010: readonly [Uint8Array, Uint8Array];
72389
71904
  };
72390
71905
  };
72391
71906
  };
@@ -72538,7 +72053,7 @@ declare const WikiDefinition: {
72538
72053
  readonly responseStream: false;
72539
72054
  readonly options: {
72540
72055
  readonly _unknownFields: {
72541
- readonly 480010: readonly [Uint8Array];
72056
+ readonly 480010: readonly [Uint8Array, Uint8Array];
72542
72057
  };
72543
72058
  };
72544
72059
  };
@@ -72569,11 +72084,6 @@ declare const WikiDefinition: {
72569
72084
  $type: "devvit.plugin.redditapi.wiki.GetWikiPageResponse";
72570
72085
  encode(message: GetWikiPageResponse, writer?: _m0.Writer): _m0.Writer;
72571
72086
  decode(input: _m0.Reader | Uint8Array, length?: number | undefined): GetWikiPageResponse;
72572
- /**
72573
- * Retrieve the current permission settings for page
72574
- *
72575
- * @see {@link https://www.reddit.com/dev/api#GET_wiki_settings_\{page\}}
72576
- */
72577
72087
  fromJSON(object: any): GetWikiPageResponse;
72578
72088
  toJSON(message: GetWikiPageResponse): unknown;
72579
72089
  create(base?: {
@@ -73104,7 +72614,7 @@ declare const WikiDefinition: {
73104
72614
  readonly responseStream: false;
73105
72615
  readonly options: {
73106
72616
  readonly _unknownFields: {
73107
- readonly 480010: readonly [Uint8Array];
72617
+ readonly 480010: readonly [Uint8Array, Uint8Array];
73108
72618
  };
73109
72619
  };
73110
72620
  };
@@ -73151,7 +72661,7 @@ declare const WikiDefinition: {
73151
72661
  readonly responseStream: false;
73152
72662
  readonly options: {
73153
72663
  readonly _unknownFields: {
73154
- readonly 480010: readonly [Uint8Array];
72664
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
73155
72665
  };
73156
72666
  };
73157
72667
  };
@@ -73196,7 +72706,7 @@ declare const WikiDefinition: {
73196
72706
  readonly responseStream: false;
73197
72707
  readonly options: {
73198
72708
  readonly _unknownFields: {
73199
- readonly 480010: readonly [Uint8Array];
72709
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
73200
72710
  };
73201
72711
  };
73202
72712
  };
@@ -73777,7 +73287,7 @@ declare const WikiDefinition: {
73777
73287
  readonly responseStream: false;
73778
73288
  readonly options: {
73779
73289
  readonly _unknownFields: {
73780
- readonly 480010: readonly [Uint8Array];
73290
+ readonly 480010: readonly [Uint8Array, Uint8Array];
73781
73291
  };
73782
73292
  };
73783
73293
  };
@@ -74356,7 +73866,7 @@ declare const WikiDefinition: {
74356
73866
  readonly responseStream: false;
74357
73867
  readonly options: {
74358
73868
  readonly _unknownFields: {
74359
- readonly 480010: readonly [Uint8Array];
73869
+ readonly 480010: readonly [Uint8Array, Uint8Array];
74360
73870
  };
74361
73871
  };
74362
73872
  };
@@ -74401,7 +73911,7 @@ declare const WikiDefinition: {
74401
73911
  readonly responseStream: false;
74402
73912
  readonly options: {
74403
73913
  readonly _unknownFields: {
74404
- readonly 480010: readonly [Uint8Array];
73914
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
74405
73915
  };
74406
73916
  };
74407
73917
  };
@@ -74954,7 +74464,7 @@ declare const WikiDefinition: {
74954
74464
  readonly responseStream: false;
74955
74465
  readonly options: {
74956
74466
  readonly _unknownFields: {
74957
- readonly 480010: readonly [Uint8Array];
74467
+ readonly 480010: readonly [Uint8Array, Uint8Array];
74958
74468
  };
74959
74469
  };
74960
74470
  };
@@ -75511,7 +75021,7 @@ declare const WikiDefinition: {
75511
75021
  readonly responseStream: false;
75512
75022
  readonly options: {
75513
75023
  readonly _unknownFields: {
75514
- readonly 480010: readonly [Uint8Array];
75024
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
75515
75025
  };
75516
75026
  };
75517
75027
  };
@@ -75559,7 +75069,7 @@ declare const WikiDefinition: {
75559
75069
  readonly responseStream: false;
75560
75070
  readonly options: {
75561
75071
  readonly _unknownFields: {
75562
- readonly 480010: readonly [Uint8Array];
75072
+ readonly 480010: readonly [Uint8Array, Uint8Array, Uint8Array];
75563
75073
  };
75564
75074
  };
75565
75075
  };