@devvit/public-api 0.10.23-next-2024-07-01-e5482c9a2.0 → 0.10.23-next-2024-07-02-b7e7fae7b.0

Sign up to get free protection for your applications and to get access to all the features.
package/public-api.d.ts CHANGED
@@ -338,6 +338,34 @@ declare const Ack: {
338
338
  fromPartial(object: DeepPartial<Ack>): Ack;
339
339
  };
340
340
 
341
+ declare interface AcknowledgeOrderDeliveryRequest {
342
+ /** the order that is being acknowledged */
343
+ orderId: string;
344
+ }
345
+
346
+ declare const AcknowledgeOrderDeliveryRequest: {
347
+ $type: "devvit.plugin.payments.v1alpha.AcknowledgeOrderDeliveryRequest";
348
+ encode(message: AcknowledgeOrderDeliveryRequest, writer?: _m0.Writer): _m0.Writer;
349
+ decode(input: _m0.Reader | Uint8Array, length?: number): AcknowledgeOrderDeliveryRequest;
350
+ fromJSON(object: any): AcknowledgeOrderDeliveryRequest;
351
+ toJSON(message: AcknowledgeOrderDeliveryRequest): unknown;
352
+ create(base?: DeepPartial_79<AcknowledgeOrderDeliveryRequest>): AcknowledgeOrderDeliveryRequest;
353
+ fromPartial(object: DeepPartial_79<AcknowledgeOrderDeliveryRequest>): AcknowledgeOrderDeliveryRequest;
354
+ };
355
+
356
+ declare interface AcknowledgeOrderDeliveryResponse {
357
+ }
358
+
359
+ declare const AcknowledgeOrderDeliveryResponse: {
360
+ $type: "devvit.plugin.payments.v1alpha.AcknowledgeOrderDeliveryResponse";
361
+ encode(_: AcknowledgeOrderDeliveryResponse, writer?: _m0.Writer): _m0.Writer;
362
+ decode(input: _m0.Reader | Uint8Array, length?: number): AcknowledgeOrderDeliveryResponse;
363
+ fromJSON(_: any): AcknowledgeOrderDeliveryResponse;
364
+ toJSON(_: AcknowledgeOrderDeliveryResponse): unknown;
365
+ create(base?: DeepPartial_79<AcknowledgeOrderDeliveryResponse>): AcknowledgeOrderDeliveryResponse;
366
+ fromPartial(_: DeepPartial_79<AcknowledgeOrderDeliveryResponse>): AcknowledgeOrderDeliveryResponse;
367
+ };
368
+
341
369
  /**
342
370
  * Subclasses are expected to call config.init(), provides(), and uses(). It
343
371
  * is erroneous to not override the constructor. Override, invoke
@@ -348,7 +376,7 @@ declare abstract class Actor {
348
376
  }
349
377
 
350
378
  /** Any Known Actor Definitions */
351
- declare type ActorDefinition = AppSettingsDefinition | AssetResolverDefinition | BotDefinition | BuildPackDefinition | BuilderDefinition | BundleServiceDefinition | CacheUtilsDefinition | ClockDefinition | ContextActionDefinition | CustomActionsDefinition | CustomPostDefinition | CustomPostSnapshotResolverDefinition | DevvitProfilerDefinition | EnvelopeReceiverPortDefinition | FlairDefinition | GraphQLDefinition | HTTPDefinition | HelloDefinition | InspectorDefinition | InstallationSettingsDefinition | InstanceSettingsDefinition | KVStoreDefinition | LinkerDefinition | LinksAndCommentsDefinition | ListingsDefinition | LoggerDefinition | MediaServiceDefinition | ModInviteUtilsDefinition | ModNoteDefinition | ModerationDefinition | ModlogDefinition | NewModmailDefinition | OnAccountDeleteDefinition | OnAppInstallDefinition | OnAppUpgradeDefinition | OnCommentApproveDefinition | OnCommentCreateDefinition | OnCommentDeleteDefinition | OnCommentReportDefinition | OnCommentSubmitDefinition | OnCommentUpdateDefinition | OnModActionDefinition | OnModMailDefinition | OnPostApproveDefinition | OnPostCreateDefinition | OnPostDeleteDefinition | OnPostFlairUpdateDefinition | OnPostReportDefinition | OnPostSubmitDefinition | OnPostUpdateDefinition | OnSubredditSubscribeDefinition | PostCollectionsDefinition | PostFilterDefinition | PrivateMessagesDefinition | ProducerDefinition | RealtimeDefinition | RedditAPIV2Definition | RedisAPIDefinition | RemoteLogConsumerDefinition | RemoteLogPublisherDefinition | ResolverDefinition | SchedulerDefinition | SchedulerHandlerDefinition | SettingsDefinition | StreamBrokerDefinition | StreamsDefinition | SubredditMetadataResolverDefinition | SubredditsDefinition | TimerDefinition | TriggersDefinition | UIEventHandlerDefinition | UserConfigurableDefinition | UsersDefinition | V2EventsDefinition | WidgetsDefinition | WikiDefinition | WrapperTypesDefinition;
379
+ declare type ActorDefinition = AppSettingsDefinition | AssetResolverDefinition | BotDefinition | BuildPackDefinition | BuilderDefinition | BundleServiceDefinition | CacheUtilsDefinition | ClockDefinition | ContextActionDefinition | CustomActionsDefinition | CustomPostDefinition | CustomPostSnapshotResolverDefinition | DevvitProfilerDefinition | EnvelopeReceiverPortDefinition | FlairDefinition | GraphQLDefinition | HTTPDefinition | HelloDefinition | InspectorDefinition | InstallationSettingsDefinition | InstanceSettingsDefinition | KVStoreDefinition | LinkerDefinition | LinksAndCommentsDefinition | ListingsDefinition | LoggerDefinition | MediaServiceDefinition | ModInviteUtilsDefinition | ModNoteDefinition | ModerationDefinition | ModlogDefinition | NewModmailDefinition | OnAccountDeleteDefinition | OnAppInstallDefinition | OnAppUpgradeDefinition | OnCommentApproveDefinition | OnCommentCreateDefinition | OnCommentDeleteDefinition | OnCommentReportDefinition | OnCommentSubmitDefinition | OnCommentUpdateDefinition | OnModActionDefinition | OnModMailDefinition | PaymentsServiceDefinition | OnPostApproveDefinition | OnPostCreateDefinition | OnPostDeleteDefinition | OnPostFlairUpdateDefinition | OnPostReportDefinition | OnPostSubmitDefinition | OnPostUpdateDefinition | OnSubredditSubscribeDefinition | PostCollectionsDefinition | PostFilterDefinition | PrivateMessagesDefinition | ProducerDefinition | RealtimeDefinition | RedditAPIV2Definition | RedisAPIDefinition | RemoteLogConsumerDefinition | RemoteLogPublisherDefinition | ResolverDefinition | SchedulerDefinition | SchedulerHandlerDefinition | SettingsDefinition | StreamBrokerDefinition | StreamsDefinition | SubredditMetadataResolverDefinition | SubredditsDefinition | TimerDefinition | TriggersDefinition | UIEventHandlerDefinition | UserConfigurableDefinition | UsersDefinition | V2EventsDefinition | WidgetsDefinition | WikiDefinition | WrapperTypesDefinition;
352
380
 
353
381
  /** Map from any known actor name to their client. */
354
382
  declare type ActorNameClientMap = {
@@ -403,6 +431,7 @@ declare type ActorNameClientMap = {
403
431
  OnPostSubmit: OnPostSubmit;
404
432
  OnPostUpdate: OnPostUpdate;
405
433
  OnSubredditSubscribe: OnSubredditSubscribe;
434
+ PaymentsService: PaymentsService;
406
435
  PostCollections: PostCollections;
407
436
  PostFilter: PostFilter;
408
437
  PrivateMessages: PrivateMessages;
@@ -579,8 +608,8 @@ declare const AddPostToCollectionRequest: {
579
608
  decode(input: _m0.Reader | Uint8Array, length?: number): AddPostToCollectionRequest;
580
609
  fromJSON(object: any): AddPostToCollectionRequest;
581
610
  toJSON(message: AddPostToCollectionRequest): unknown;
582
- create(base?: DeepPartial_79<AddPostToCollectionRequest>): AddPostToCollectionRequest;
583
- fromPartial(object: DeepPartial_79<AddPostToCollectionRequest>): AddPostToCollectionRequest;
611
+ create(base?: DeepPartial_82<AddPostToCollectionRequest>): AddPostToCollectionRequest;
612
+ fromPartial(object: DeepPartial_82<AddPostToCollectionRequest>): AddPostToCollectionRequest;
584
613
  };
585
614
 
586
615
  export declare type AddRemovalNoteOptions = Prettify<PostRemovalNoteRequest>;
@@ -1349,8 +1378,8 @@ declare const Arg: {
1349
1378
  decode(input: _m0.Reader | Uint8Array, length?: number): Arg;
1350
1379
  fromJSON(object: any): Arg;
1351
1380
  toJSON(message: Arg): unknown;
1352
- create(base?: DeepPartial_83<Arg>): Arg;
1353
- fromPartial(object: DeepPartial_83<Arg>): Arg;
1381
+ create(base?: DeepPartial_86<Arg>): Arg;
1382
+ fromPartial(object: DeepPartial_86<Arg>): Arg;
1354
1383
  };
1355
1384
 
1356
1385
  declare interface Args {
@@ -1363,8 +1392,8 @@ declare const Args: {
1363
1392
  decode(input: _m0.Reader | Uint8Array, length?: number): Args;
1364
1393
  fromJSON(object: any): Args;
1365
1394
  toJSON(message: Args): unknown;
1366
- create(base?: DeepPartial_83<Args>): Args;
1367
- fromPartial(object: DeepPartial_83<Args>): Args;
1395
+ create(base?: DeepPartial_86<Args>): Args;
1396
+ fromPartial(object: DeepPartial_86<Args>): Args;
1368
1397
  };
1369
1398
 
1370
1399
  /**
@@ -2773,8 +2802,8 @@ declare const BlockUserRequest: {
2773
2802
  decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserRequest;
2774
2803
  fromJSON(object: any): BlockUserRequest;
2775
2804
  toJSON(message: BlockUserRequest): unknown;
2776
- create(base?: DeepPartial_98<BlockUserRequest>): BlockUserRequest;
2777
- fromPartial(object: DeepPartial_98<BlockUserRequest>): BlockUserRequest;
2805
+ create(base?: DeepPartial_101<BlockUserRequest>): BlockUserRequest;
2806
+ fromPartial(object: DeepPartial_101<BlockUserRequest>): BlockUserRequest;
2778
2807
  };
2779
2808
 
2780
2809
  declare interface BlockUserResponse {
@@ -2790,8 +2819,8 @@ declare const BlockUserResponse: {
2790
2819
  decode(input: _m0.Reader | Uint8Array, length?: number): BlockUserResponse;
2791
2820
  fromJSON(object: any): BlockUserResponse;
2792
2821
  toJSON(message: BlockUserResponse): unknown;
2793
- create(base?: DeepPartial_98<BlockUserResponse>): BlockUserResponse;
2794
- fromPartial(object: DeepPartial_98<BlockUserResponse>): BlockUserResponse;
2822
+ create(base?: DeepPartial_101<BlockUserResponse>): BlockUserResponse;
2823
+ fromPartial(object: DeepPartial_101<BlockUserResponse>): BlockUserResponse;
2795
2824
  };
2796
2825
 
2797
2826
  declare enum BlockVerticalAlignment {
@@ -3760,8 +3789,14 @@ declare type Builtin_106 = Date | Function | Uint8Array | string | number | bool
3760
3789
 
3761
3790
  declare type Builtin_107 = Date | Function | Uint8Array | string | number | boolean | undefined;
3762
3791
 
3792
+ declare type Builtin_108 = Date | Function | Uint8Array | string | number | boolean | undefined;
3793
+
3794
+ declare type Builtin_109 = Date | Function | Uint8Array | string | number | boolean | undefined;
3795
+
3763
3796
  declare type Builtin_11 = Date | Function | Uint8Array | string | number | boolean | undefined;
3764
3797
 
3798
+ declare type Builtin_110 = Date | Function | Uint8Array | string | number | boolean | undefined;
3799
+
3765
3800
  declare type Builtin_12 = Date | Function | Uint8Array | string | number | boolean | undefined;
3766
3801
 
3767
3802
  declare type Builtin_13 = Date | Function | Uint8Array | string | number | boolean | undefined;
@@ -4585,8 +4620,8 @@ declare const CancelActionRequest: {
4585
4620
  decode(input: _m0.Reader | Uint8Array, length?: number): CancelActionRequest;
4586
4621
  fromJSON(object: any): CancelActionRequest;
4587
4622
  toJSON(message: CancelActionRequest): unknown;
4588
- create(base?: DeepPartial_87<CancelActionRequest>): CancelActionRequest;
4589
- fromPartial(object: DeepPartial_87<CancelActionRequest>): CancelActionRequest;
4623
+ create(base?: DeepPartial_90<CancelActionRequest>): CancelActionRequest;
4624
+ fromPartial(object: DeepPartial_90<CancelActionRequest>): CancelActionRequest;
4590
4625
  };
4591
4626
 
4592
4627
  /**
@@ -4733,8 +4768,8 @@ declare const CollectionRequest: {
4733
4768
  decode(input: _m0.Reader | Uint8Array, length?: number): CollectionRequest;
4734
4769
  fromJSON(object: any): CollectionRequest;
4735
4770
  toJSON(message: CollectionRequest): unknown;
4736
- create(base?: DeepPartial_79<CollectionRequest>): CollectionRequest;
4737
- fromPartial(object: DeepPartial_79<CollectionRequest>): CollectionRequest;
4771
+ create(base?: DeepPartial_82<CollectionRequest>): CollectionRequest;
4772
+ fromPartial(object: DeepPartial_82<CollectionRequest>): CollectionRequest;
4738
4773
  };
4739
4774
 
4740
4775
  /** responses */
@@ -4767,8 +4802,8 @@ declare const CollectionResponse: {
4767
4802
  decode(input: _m0.Reader | Uint8Array, length?: number): CollectionResponse;
4768
4803
  fromJSON(object: any): CollectionResponse;
4769
4804
  toJSON(message: CollectionResponse): unknown;
4770
- create(base?: DeepPartial_79<CollectionResponse>): CollectionResponse;
4771
- fromPartial(object: DeepPartial_79<CollectionResponse>): CollectionResponse;
4805
+ create(base?: DeepPartial_82<CollectionResponse>): CollectionResponse;
4806
+ fromPartial(object: DeepPartial_82<CollectionResponse>): CollectionResponse;
4772
4807
  };
4773
4808
 
4774
4809
  declare interface CommandContext {
@@ -5407,8 +5442,8 @@ declare const ComposeRequest: {
5407
5442
  decode(input: _m0.Reader | Uint8Array, length?: number): ComposeRequest;
5408
5443
  fromJSON(object: any): ComposeRequest;
5409
5444
  toJSON(message: ComposeRequest): unknown;
5410
- create(base?: DeepPartial_82<ComposeRequest>): ComposeRequest;
5411
- fromPartial(object: DeepPartial_82<ComposeRequest>): ComposeRequest;
5445
+ create(base?: DeepPartial_85<ComposeRequest>): ComposeRequest;
5446
+ fromPartial(object: DeepPartial_85<ComposeRequest>): ComposeRequest;
5412
5447
  };
5413
5448
 
5414
5449
  /**
@@ -6305,8 +6340,8 @@ declare const CreateCollectionRequest: {
6305
6340
  decode(input: _m0.Reader | Uint8Array, length?: number): CreateCollectionRequest;
6306
6341
  fromJSON(object: any): CreateCollectionRequest;
6307
6342
  toJSON(message: CreateCollectionRequest): unknown;
6308
- create(base?: DeepPartial_79<CreateCollectionRequest>): CreateCollectionRequest;
6309
- fromPartial(object: DeepPartial_79<CreateCollectionRequest>): CreateCollectionRequest;
6343
+ create(base?: DeepPartial_82<CreateCollectionRequest>): CreateCollectionRequest;
6344
+ fromPartial(object: DeepPartial_82<CreateCollectionRequest>): CreateCollectionRequest;
6310
6345
  };
6311
6346
 
6312
6347
  declare interface CreateConversationMessageRequest {
@@ -6503,6 +6538,13 @@ declare function crowdControlLevelFromJSON(object: any): CrowdControlLevel;
6503
6538
 
6504
6539
  declare function crowdControlLevelToJSON(object: CrowdControlLevel): number;
6505
6540
 
6541
+ declare enum Currency {
6542
+ CURRENCY_UNSPECIFIED = 0,
6543
+ /** GOLD - Reddit internal currency */
6544
+ GOLD = 200,
6545
+ UNRECOGNIZED = -1
6546
+ }
6547
+
6506
6548
  declare interface Cursor {
6507
6549
  topic: string;
6508
6550
  offset: number;
@@ -6515,8 +6557,8 @@ declare const Cursor: {
6515
6557
  decode(input: _m0.Reader | Uint8Array, length?: number): Cursor;
6516
6558
  fromJSON(object: any): Cursor;
6517
6559
  toJSON(message: Cursor): unknown;
6518
- create(base?: DeepPartial_89<Cursor>): Cursor;
6519
- fromPartial(object: DeepPartial_89<Cursor>): Cursor;
6560
+ create(base?: DeepPartial_92<Cursor>): Cursor;
6561
+ fromPartial(object: DeepPartial_92<Cursor>): Cursor;
6520
6562
  };
6521
6563
 
6522
6564
  declare interface CustomAction {
@@ -8672,10 +8714,22 @@ declare type DeepPartial_107<T> = T extends Builtin_107 ? T : T extends globalTh
8672
8714
  [K in keyof T]?: DeepPartial_107<T[K]>;
8673
8715
  } : Partial<T>;
8674
8716
 
8717
+ declare type DeepPartial_108<T> = T extends Builtin_108 ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial_108<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial_108<U>> : T extends {} ? {
8718
+ [K in keyof T]?: DeepPartial_108<T[K]>;
8719
+ } : Partial<T>;
8720
+
8721
+ declare type DeepPartial_109<T> = T extends Builtin_109 ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial_109<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial_109<U>> : T extends {} ? {
8722
+ [K in keyof T]?: DeepPartial_109<T[K]>;
8723
+ } : Partial<T>;
8724
+
8675
8725
  declare type DeepPartial_11<T> = T extends Builtin_11 ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial_11<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial_11<U>> : T extends {} ? {
8676
8726
  [K in keyof T]?: DeepPartial_11<T[K]>;
8677
8727
  } : Partial<T>;
8678
8728
 
8729
+ declare type DeepPartial_110<T> = T extends Builtin_110 ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial_110<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial_110<U>> : T extends {} ? {
8730
+ [K in keyof T]?: DeepPartial_110<T[K]>;
8731
+ } : Partial<T>;
8732
+
8679
8733
  declare type DeepPartial_12<T> = T extends Builtin_12 ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial_12<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial_12<U>> : T extends {} ? {
8680
8734
  [K in keyof T]?: DeepPartial_12<T[K]>;
8681
8735
  } : Partial<T>;
@@ -9106,8 +9160,8 @@ declare const DeleteCollectionRequest: {
9106
9160
  decode(input: _m0.Reader | Uint8Array, length?: number): DeleteCollectionRequest;
9107
9161
  fromJSON(object: any): DeleteCollectionRequest;
9108
9162
  toJSON(message: DeleteCollectionRequest): unknown;
9109
- create(base?: DeepPartial_79<DeleteCollectionRequest>): DeleteCollectionRequest;
9110
- fromPartial(object: DeepPartial_79<DeleteCollectionRequest>): DeleteCollectionRequest;
9163
+ create(base?: DeepPartial_82<DeleteCollectionRequest>): DeleteCollectionRequest;
9164
+ fromPartial(object: DeepPartial_82<DeleteCollectionRequest>): DeleteCollectionRequest;
9111
9165
  };
9112
9166
 
9113
9167
  declare interface DeleteFlairRequest {
@@ -9280,8 +9334,8 @@ declare const DescriptorProto: {
9280
9334
  decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto;
9281
9335
  fromJSON(object: any): DescriptorProto;
9282
9336
  toJSON(message: DescriptorProto): unknown;
9283
- create(base?: DeepPartial_102<DescriptorProto>): DescriptorProto;
9284
- fromPartial(object: DeepPartial_102<DescriptorProto>): DescriptorProto;
9337
+ create(base?: DeepPartial_105<DescriptorProto>): DescriptorProto;
9338
+ fromPartial(object: DeepPartial_105<DescriptorProto>): DescriptorProto;
9285
9339
  };
9286
9340
 
9287
9341
  declare interface DescriptorProto_ExtensionRange {
@@ -9298,8 +9352,8 @@ declare const DescriptorProto_ExtensionRange: {
9298
9352
  decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto_ExtensionRange;
9299
9353
  fromJSON(object: any): DescriptorProto_ExtensionRange;
9300
9354
  toJSON(message: DescriptorProto_ExtensionRange): unknown;
9301
- create(base?: DeepPartial_102<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
9302
- fromPartial(object: DeepPartial_102<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
9355
+ create(base?: DeepPartial_105<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
9356
+ fromPartial(object: DeepPartial_105<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
9303
9357
  };
9304
9358
 
9305
9359
  /**
@@ -9320,8 +9374,8 @@ declare const DescriptorProto_ReservedRange: {
9320
9374
  decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto_ReservedRange;
9321
9375
  fromJSON(object: any): DescriptorProto_ReservedRange;
9322
9376
  toJSON(message: DescriptorProto_ReservedRange): unknown;
9323
- create(base?: DeepPartial_102<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
9324
- fromPartial(object: DeepPartial_102<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
9377
+ create(base?: DeepPartial_105<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
9378
+ fromPartial(object: DeepPartial_105<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
9325
9379
  };
9326
9380
 
9327
9381
  export declare class Devvit extends Actor {
@@ -9852,8 +9906,8 @@ declare const DevvitSubredditMetadata: {
9852
9906
  decode(input: _m0.Reader | Uint8Array, length?: number): DevvitSubredditMetadata;
9853
9907
  fromJSON(object: any): DevvitSubredditMetadata;
9854
9908
  toJSON(message: DevvitSubredditMetadata): unknown;
9855
- create(base?: DeepPartial_92<DevvitSubredditMetadata>): DevvitSubredditMetadata;
9856
- fromPartial(object: DeepPartial_92<DevvitSubredditMetadata>): DevvitSubredditMetadata;
9909
+ create(base?: DeepPartial_95<DevvitSubredditMetadata>): DevvitSubredditMetadata;
9910
+ fromPartial(object: DeepPartial_95<DevvitSubredditMetadata>): DevvitSubredditMetadata;
9857
9911
  };
9858
9912
 
9859
9913
  declare interface DevvitSubredditMetadata_AppInfo {
@@ -9869,8 +9923,8 @@ declare const DevvitSubredditMetadata_AppInfo: {
9869
9923
  decode(input: _m0.Reader | Uint8Array, length?: number): DevvitSubredditMetadata_AppInfo;
9870
9924
  fromJSON(object: any): DevvitSubredditMetadata_AppInfo;
9871
9925
  toJSON(message: DevvitSubredditMetadata_AppInfo): unknown;
9872
- create(base?: DeepPartial_92<DevvitSubredditMetadata_AppInfo>): DevvitSubredditMetadata_AppInfo;
9873
- fromPartial(object: DeepPartial_92<DevvitSubredditMetadata_AppInfo>): DevvitSubredditMetadata_AppInfo;
9926
+ create(base?: DeepPartial_95<DevvitSubredditMetadata_AppInfo>): DevvitSubredditMetadata_AppInfo;
9927
+ fromPartial(object: DeepPartial_95<DevvitSubredditMetadata_AppInfo>): DevvitSubredditMetadata_AppInfo;
9874
9928
  };
9875
9929
 
9876
9930
  /**
@@ -10287,8 +10341,8 @@ declare const EnumDescriptorProto: {
10287
10341
  decode(input: _m0.Reader | Uint8Array, length?: number): EnumDescriptorProto;
10288
10342
  fromJSON(object: any): EnumDescriptorProto;
10289
10343
  toJSON(message: EnumDescriptorProto): unknown;
10290
- create(base?: DeepPartial_102<EnumDescriptorProto>): EnumDescriptorProto;
10291
- fromPartial(object: DeepPartial_102<EnumDescriptorProto>): EnumDescriptorProto;
10344
+ create(base?: DeepPartial_105<EnumDescriptorProto>): EnumDescriptorProto;
10345
+ fromPartial(object: DeepPartial_105<EnumDescriptorProto>): EnumDescriptorProto;
10292
10346
  };
10293
10347
 
10294
10348
  /**
@@ -10312,8 +10366,8 @@ declare const EnumDescriptorProto_EnumReservedRange: {
10312
10366
  decode(input: _m0.Reader | Uint8Array, length?: number): EnumDescriptorProto_EnumReservedRange;
10313
10367
  fromJSON(object: any): EnumDescriptorProto_EnumReservedRange;
10314
10368
  toJSON(message: EnumDescriptorProto_EnumReservedRange): unknown;
10315
- create(base?: DeepPartial_102<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
10316
- fromPartial(object: DeepPartial_102<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
10369
+ create(base?: DeepPartial_105<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
10370
+ fromPartial(object: DeepPartial_105<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
10317
10371
  };
10318
10372
 
10319
10373
  declare interface EnumOptions {
@@ -10352,8 +10406,8 @@ declare const EnumOptions: {
10352
10406
  decode(input: _m0.Reader | Uint8Array, length?: number): EnumOptions;
10353
10407
  fromJSON(object: any): EnumOptions;
10354
10408
  toJSON(message: EnumOptions): unknown;
10355
- create(base?: DeepPartial_102<EnumOptions>): EnumOptions;
10356
- fromPartial(object: DeepPartial_102<EnumOptions>): EnumOptions;
10409
+ create(base?: DeepPartial_105<EnumOptions>): EnumOptions;
10410
+ fromPartial(object: DeepPartial_105<EnumOptions>): EnumOptions;
10357
10411
  };
10358
10412
 
10359
10413
  /** Describes a value within an enum. */
@@ -10369,8 +10423,8 @@ declare const EnumValueDescriptorProto: {
10369
10423
  decode(input: _m0.Reader | Uint8Array, length?: number): EnumValueDescriptorProto;
10370
10424
  fromJSON(object: any): EnumValueDescriptorProto;
10371
10425
  toJSON(message: EnumValueDescriptorProto): unknown;
10372
- create(base?: DeepPartial_102<EnumValueDescriptorProto>): EnumValueDescriptorProto;
10373
- fromPartial(object: DeepPartial_102<EnumValueDescriptorProto>): EnumValueDescriptorProto;
10426
+ create(base?: DeepPartial_105<EnumValueDescriptorProto>): EnumValueDescriptorProto;
10427
+ fromPartial(object: DeepPartial_105<EnumValueDescriptorProto>): EnumValueDescriptorProto;
10374
10428
  };
10375
10429
 
10376
10430
  declare interface EnumValueOptions {
@@ -10401,8 +10455,8 @@ declare const EnumValueOptions: {
10401
10455
  decode(input: _m0.Reader | Uint8Array, length?: number): EnumValueOptions;
10402
10456
  fromJSON(object: any): EnumValueOptions;
10403
10457
  toJSON(message: EnumValueOptions): unknown;
10404
- create(base?: DeepPartial_102<EnumValueOptions>): EnumValueOptions;
10405
- fromPartial(object: DeepPartial_102<EnumValueOptions>): EnumValueOptions;
10458
+ create(base?: DeepPartial_105<EnumValueOptions>): EnumValueOptions;
10459
+ fromPartial(object: DeepPartial_105<EnumValueOptions>): EnumValueOptions;
10406
10460
  };
10407
10461
 
10408
10462
  declare interface Envelope {
@@ -10551,6 +10605,14 @@ declare const EnvelopeReceiverPortDefinition: {
10551
10605
 
10552
10606
  declare const EnvelopeReceiverPortServiceName = "devvit.service.EnvelopeReceiverPort";
10553
10607
 
10608
+ /** TODO: we may want to pull this directly from the pay protos via snootobuf */
10609
+ declare enum Environment {
10610
+ ENVIRONMENT_UNSPECIFIED = 0,
10611
+ ENVIRONMENT_SANDBOX = 1,
10612
+ ENVIRONMENT_PRODUCTION = 2,
10613
+ UNRECOGNIZED = -1
10614
+ }
10615
+
10554
10616
  declare interface ErrorMessage {
10555
10617
  message: string;
10556
10618
  }
@@ -10561,8 +10623,8 @@ declare const ErrorMessage: {
10561
10623
  decode(input: _m0.Reader | Uint8Array, length?: number): ErrorMessage;
10562
10624
  fromJSON(object: any): ErrorMessage;
10563
10625
  toJSON(message: ErrorMessage): unknown;
10564
- create(base?: DeepPartial_92<ErrorMessage>): ErrorMessage;
10565
- fromPartial(object: DeepPartial_92<ErrorMessage>): ErrorMessage;
10626
+ create(base?: DeepPartial_95<ErrorMessage>): ErrorMessage;
10627
+ fromPartial(object: DeepPartial_95<ErrorMessage>): ErrorMessage;
10566
10628
  };
10567
10629
 
10568
10630
  declare enum EventSource_2 {
@@ -10591,8 +10653,8 @@ declare const ExpireRequest: {
10591
10653
  decode(input: _m0.Reader | Uint8Array, length?: number): ExpireRequest;
10592
10654
  fromJSON(object: any): ExpireRequest;
10593
10655
  toJSON(message: ExpireRequest): unknown;
10594
- create(base?: DeepPartial_84<ExpireRequest>): ExpireRequest;
10595
- fromPartial(object: DeepPartial_84<ExpireRequest>): ExpireRequest;
10656
+ create(base?: DeepPartial_87<ExpireRequest>): ExpireRequest;
10657
+ fromPartial(object: DeepPartial_87<ExpireRequest>): ExpireRequest;
10596
10658
  };
10597
10659
 
10598
10660
  declare interface ExtensionRangeOptions {
@@ -10620,8 +10682,8 @@ declare const ExtensionRangeOptions: {
10620
10682
  decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionRangeOptions;
10621
10683
  fromJSON(object: any): ExtensionRangeOptions;
10622
10684
  toJSON(message: ExtensionRangeOptions): unknown;
10623
- create(base?: DeepPartial_102<ExtensionRangeOptions>): ExtensionRangeOptions;
10624
- fromPartial(object: DeepPartial_102<ExtensionRangeOptions>): ExtensionRangeOptions;
10685
+ create(base?: DeepPartial_105<ExtensionRangeOptions>): ExtensionRangeOptions;
10686
+ fromPartial(object: DeepPartial_105<ExtensionRangeOptions>): ExtensionRangeOptions;
10625
10687
  };
10626
10688
 
10627
10689
  declare interface ExtensionRangeOptions_Declaration {
@@ -10657,8 +10719,8 @@ declare const ExtensionRangeOptions_Declaration: {
10657
10719
  decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionRangeOptions_Declaration;
10658
10720
  fromJSON(object: any): ExtensionRangeOptions_Declaration;
10659
10721
  toJSON(message: ExtensionRangeOptions_Declaration): unknown;
10660
- create(base?: DeepPartial_102<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
10661
- fromPartial(object: DeepPartial_102<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
10722
+ create(base?: DeepPartial_105<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
10723
+ fromPartial(object: DeepPartial_105<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
10662
10724
  };
10663
10725
 
10664
10726
  /** The verification state of the extension range. */
@@ -10696,8 +10758,8 @@ declare const FeatureSet: {
10696
10758
  decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSet;
10697
10759
  fromJSON(object: any): FeatureSet;
10698
10760
  toJSON(message: FeatureSet): unknown;
10699
- create(base?: DeepPartial_102<FeatureSet>): FeatureSet;
10700
- fromPartial(object: DeepPartial_102<FeatureSet>): FeatureSet;
10761
+ create(base?: DeepPartial_105<FeatureSet>): FeatureSet;
10762
+ fromPartial(object: DeepPartial_105<FeatureSet>): FeatureSet;
10701
10763
  };
10702
10764
 
10703
10765
  declare enum FeatureSet_EnumType {
@@ -10793,8 +10855,8 @@ declare const FeatureSetDefaults: {
10793
10855
  decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSetDefaults;
10794
10856
  fromJSON(object: any): FeatureSetDefaults;
10795
10857
  toJSON(message: FeatureSetDefaults): unknown;
10796
- create(base?: DeepPartial_102<FeatureSetDefaults>): FeatureSetDefaults;
10797
- fromPartial(object: DeepPartial_102<FeatureSetDefaults>): FeatureSetDefaults;
10858
+ create(base?: DeepPartial_105<FeatureSetDefaults>): FeatureSetDefaults;
10859
+ fromPartial(object: DeepPartial_105<FeatureSetDefaults>): FeatureSetDefaults;
10798
10860
  };
10799
10861
 
10800
10862
  /**
@@ -10817,8 +10879,8 @@ declare const FeatureSetDefaults_FeatureSetEditionDefault: {
10817
10879
  decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSetDefaults_FeatureSetEditionDefault;
10818
10880
  fromJSON(object: any): FeatureSetDefaults_FeatureSetEditionDefault;
10819
10881
  toJSON(message: FeatureSetDefaults_FeatureSetEditionDefault): unknown;
10820
- create(base?: DeepPartial_102<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
10821
- fromPartial(object: DeepPartial_102<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
10882
+ create(base?: DeepPartial_105<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
10883
+ fromPartial(object: DeepPartial_105<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
10822
10884
  };
10823
10885
 
10824
10886
  declare interface FetchRequest {
@@ -11114,8 +11176,8 @@ declare const FieldDescriptorProto: {
11114
11176
  decode(input: _m0.Reader | Uint8Array, length?: number): FieldDescriptorProto;
11115
11177
  fromJSON(object: any): FieldDescriptorProto;
11116
11178
  toJSON(message: FieldDescriptorProto): unknown;
11117
- create(base?: DeepPartial_102<FieldDescriptorProto>): FieldDescriptorProto;
11118
- fromPartial(object: DeepPartial_102<FieldDescriptorProto>): FieldDescriptorProto;
11179
+ create(base?: DeepPartial_105<FieldDescriptorProto>): FieldDescriptorProto;
11180
+ fromPartial(object: DeepPartial_105<FieldDescriptorProto>): FieldDescriptorProto;
11119
11181
  };
11120
11182
 
11121
11183
  declare enum FieldDescriptorProto_Label {
@@ -11279,8 +11341,8 @@ declare const FieldOptions: {
11279
11341
  decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions;
11280
11342
  fromJSON(object: any): FieldOptions;
11281
11343
  toJSON(message: FieldOptions): unknown;
11282
- create(base?: DeepPartial_102<FieldOptions>): FieldOptions;
11283
- fromPartial(object: DeepPartial_102<FieldOptions>): FieldOptions;
11344
+ create(base?: DeepPartial_105<FieldOptions>): FieldOptions;
11345
+ fromPartial(object: DeepPartial_105<FieldOptions>): FieldOptions;
11284
11346
  };
11285
11347
 
11286
11348
  declare enum FieldOptions_CType {
@@ -11315,8 +11377,8 @@ declare const FieldOptions_EditionDefault: {
11315
11377
  decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions_EditionDefault;
11316
11378
  fromJSON(object: any): FieldOptions_EditionDefault;
11317
11379
  toJSON(message: FieldOptions_EditionDefault): unknown;
11318
- create(base?: DeepPartial_102<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
11319
- fromPartial(object: DeepPartial_102<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
11380
+ create(base?: DeepPartial_105<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
11381
+ fromPartial(object: DeepPartial_105<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
11320
11382
  };
11321
11383
 
11322
11384
  /** Information about the support window of a feature. */
@@ -11351,8 +11413,8 @@ declare const FieldOptions_FeatureSupport: {
11351
11413
  decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions_FeatureSupport;
11352
11414
  fromJSON(object: any): FieldOptions_FeatureSupport;
11353
11415
  toJSON(message: FieldOptions_FeatureSupport): unknown;
11354
- create(base?: DeepPartial_102<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
11355
- fromPartial(object: DeepPartial_102<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
11416
+ create(base?: DeepPartial_105<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
11417
+ fromPartial(object: DeepPartial_105<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
11356
11418
  };
11357
11419
 
11358
11420
  declare enum FieldOptions_JSType {
@@ -11476,8 +11538,8 @@ declare const FileDescriptorProto: {
11476
11538
  decode(input: _m0.Reader | Uint8Array, length?: number): FileDescriptorProto;
11477
11539
  fromJSON(object: any): FileDescriptorProto;
11478
11540
  toJSON(message: FileDescriptorProto): unknown;
11479
- create(base?: DeepPartial_102<FileDescriptorProto>): FileDescriptorProto;
11480
- fromPartial(object: DeepPartial_102<FileDescriptorProto>): FileDescriptorProto;
11541
+ create(base?: DeepPartial_105<FileDescriptorProto>): FileDescriptorProto;
11542
+ fromPartial(object: DeepPartial_105<FileDescriptorProto>): FileDescriptorProto;
11481
11543
  };
11482
11544
 
11483
11545
  /**
@@ -11494,8 +11556,8 @@ declare const FileDescriptorSet: {
11494
11556
  decode(input: _m0.Reader | Uint8Array, length?: number): FileDescriptorSet;
11495
11557
  fromJSON(object: any): FileDescriptorSet;
11496
11558
  toJSON(message: FileDescriptorSet): unknown;
11497
- create(base?: DeepPartial_102<FileDescriptorSet>): FileDescriptorSet;
11498
- fromPartial(object: DeepPartial_102<FileDescriptorSet>): FileDescriptorSet;
11559
+ create(base?: DeepPartial_105<FileDescriptorSet>): FileDescriptorSet;
11560
+ fromPartial(object: DeepPartial_105<FileDescriptorSet>): FileDescriptorSet;
11499
11561
  };
11500
11562
 
11501
11563
  declare interface FileOptions {
@@ -11630,8 +11692,8 @@ declare const FileOptions: {
11630
11692
  decode(input: _m0.Reader | Uint8Array, length?: number): FileOptions;
11631
11693
  fromJSON(object: any): FileOptions;
11632
11694
  toJSON(message: FileOptions): unknown;
11633
- create(base?: DeepPartial_102<FileOptions>): FileOptions;
11634
- fromPartial(object: DeepPartial_102<FileOptions>): FileOptions;
11695
+ create(base?: DeepPartial_105<FileOptions>): FileOptions;
11696
+ fromPartial(object: DeepPartial_105<FileOptions>): FileOptions;
11635
11697
  };
11636
11698
 
11637
11699
  /** Generated classes can be optimized for speed or code size. */
@@ -12916,8 +12978,8 @@ declare const FollowCollectionRequest: {
12916
12978
  decode(input: _m0.Reader | Uint8Array, length?: number): FollowCollectionRequest;
12917
12979
  fromJSON(object: any): FollowCollectionRequest;
12918
12980
  toJSON(message: FollowCollectionRequest): unknown;
12919
- create(base?: DeepPartial_79<FollowCollectionRequest>): FollowCollectionRequest;
12920
- fromPartial(object: DeepPartial_79<FollowCollectionRequest>): FollowCollectionRequest;
12981
+ create(base?: DeepPartial_82<FollowCollectionRequest>): FollowCollectionRequest;
12982
+ fromPartial(object: DeepPartial_82<FollowCollectionRequest>): FollowCollectionRequest;
12921
12983
  };
12922
12984
 
12923
12985
  declare interface FollowPostRequest {
@@ -13277,8 +13339,8 @@ declare const FriendRequest: {
13277
13339
  decode(input: _m0.Reader | Uint8Array, length?: number): FriendRequest;
13278
13340
  fromJSON(object: any): FriendRequest;
13279
13341
  toJSON(message: FriendRequest): unknown;
13280
- create(base?: DeepPartial_98<FriendRequest>): FriendRequest;
13281
- fromPartial(object: DeepPartial_98<FriendRequest>): FriendRequest;
13342
+ create(base?: DeepPartial_101<FriendRequest>): FriendRequest;
13343
+ fromPartial(object: DeepPartial_101<FriendRequest>): FriendRequest;
13282
13344
  };
13283
13345
 
13284
13346
  declare interface FullSubredditObject {
@@ -13417,8 +13479,8 @@ declare const GeneralFriendResponse: {
13417
13479
  decode(input: _m0.Reader | Uint8Array, length?: number): GeneralFriendResponse;
13418
13480
  fromJSON(object: any): GeneralFriendResponse;
13419
13481
  toJSON(message: GeneralFriendResponse): unknown;
13420
- create(base?: DeepPartial_98<GeneralFriendResponse>): GeneralFriendResponse;
13421
- fromPartial(object: DeepPartial_98<GeneralFriendResponse>): GeneralFriendResponse;
13482
+ create(base?: DeepPartial_101<GeneralFriendResponse>): GeneralFriendResponse;
13483
+ fromPartial(object: DeepPartial_101<GeneralFriendResponse>): GeneralFriendResponse;
13422
13484
  };
13423
13485
 
13424
13486
  /**
@@ -13440,8 +13502,8 @@ declare const GeneratedCodeInfo: {
13440
13502
  decode(input: _m0.Reader | Uint8Array, length?: number): GeneratedCodeInfo;
13441
13503
  fromJSON(object: any): GeneratedCodeInfo;
13442
13504
  toJSON(message: GeneratedCodeInfo): unknown;
13443
- create(base?: DeepPartial_102<GeneratedCodeInfo>): GeneratedCodeInfo;
13444
- fromPartial(object: DeepPartial_102<GeneratedCodeInfo>): GeneratedCodeInfo;
13505
+ create(base?: DeepPartial_105<GeneratedCodeInfo>): GeneratedCodeInfo;
13506
+ fromPartial(object: DeepPartial_105<GeneratedCodeInfo>): GeneratedCodeInfo;
13445
13507
  };
13446
13508
 
13447
13509
  declare interface GeneratedCodeInfo_Annotation {
@@ -13472,8 +13534,8 @@ declare const GeneratedCodeInfo_Annotation: {
13472
13534
  decode(input: _m0.Reader | Uint8Array, length?: number): GeneratedCodeInfo_Annotation;
13473
13535
  fromJSON(object: any): GeneratedCodeInfo_Annotation;
13474
13536
  toJSON(message: GeneratedCodeInfo_Annotation): unknown;
13475
- create(base?: DeepPartial_102<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
13476
- fromPartial(object: DeepPartial_102<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
13537
+ create(base?: DeepPartial_105<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
13538
+ fromPartial(object: DeepPartial_105<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
13477
13539
  };
13478
13540
 
13479
13541
  /**
@@ -13505,8 +13567,8 @@ declare const GenericPrivateMessagesRequest: {
13505
13567
  decode(input: _m0.Reader | Uint8Array, length?: number): GenericPrivateMessagesRequest;
13506
13568
  fromJSON(object: any): GenericPrivateMessagesRequest;
13507
13569
  toJSON(message: GenericPrivateMessagesRequest): unknown;
13508
- create(base?: DeepPartial_82<GenericPrivateMessagesRequest>): GenericPrivateMessagesRequest;
13509
- fromPartial(object: DeepPartial_82<GenericPrivateMessagesRequest>): GenericPrivateMessagesRequest;
13570
+ create(base?: DeepPartial_85<GenericPrivateMessagesRequest>): GenericPrivateMessagesRequest;
13571
+ fromPartial(object: DeepPartial_85<GenericPrivateMessagesRequest>): GenericPrivateMessagesRequest;
13510
13572
  };
13511
13573
 
13512
13574
  /** Requests */
@@ -13523,8 +13585,8 @@ declare const GenericUsersRequest: {
13523
13585
  decode(input: _m0.Reader | Uint8Array, length?: number): GenericUsersRequest;
13524
13586
  fromJSON(object: any): GenericUsersRequest;
13525
13587
  toJSON(message: GenericUsersRequest): unknown;
13526
- create(base?: DeepPartial_98<GenericUsersRequest>): GenericUsersRequest;
13527
- fromPartial(object: DeepPartial_98<GenericUsersRequest>): GenericUsersRequest;
13588
+ create(base?: DeepPartial_101<GenericUsersRequest>): GenericUsersRequest;
13589
+ fromPartial(object: DeepPartial_101<GenericUsersRequest>): GenericUsersRequest;
13528
13590
  };
13529
13591
 
13530
13592
  declare interface GetActionResponse {
@@ -13538,8 +13600,8 @@ declare const GetActionResponse: {
13538
13600
  decode(input: _m0.Reader | Uint8Array, length?: number): GetActionResponse;
13539
13601
  fromJSON(object: any): GetActionResponse;
13540
13602
  toJSON(message: GetActionResponse): unknown;
13541
- create(base?: DeepPartial_87<GetActionResponse>): GetActionResponse;
13542
- fromPartial(object: DeepPartial_87<GetActionResponse>): GetActionResponse;
13603
+ create(base?: DeepPartial_90<GetActionResponse>): GetActionResponse;
13604
+ fromPartial(object: DeepPartial_90<GetActionResponse>): GetActionResponse;
13543
13605
  };
13544
13606
 
13545
13607
  declare interface GetActionsRequest {
@@ -14219,6 +14281,68 @@ declare const GetNotesRequest: {
14219
14281
  fromPartial(object: DeepPartial_3<GetNotesRequest>): GetNotesRequest;
14220
14282
  };
14221
14283
 
14284
+ /**
14285
+ * GetOrderRequest allows for filtering which orders are returned
14286
+ * all the parameters are optional. If none are provided, all orders are returned
14287
+ */
14288
+ declare interface GetOrdersRequest {
14289
+ /** start time filter */
14290
+ start?: Date | undefined;
14291
+ /** end time filter */
14292
+ end?: Date | undefined;
14293
+ /** number of items to return */
14294
+ limit: number;
14295
+ /** unique identifier for the product */
14296
+ sku: string;
14297
+ /** the t2 id of purchasing user */
14298
+ buyer: string;
14299
+ /** the lifecycle status of the order */
14300
+ status: OrderStatus;
14301
+ /** metadata to filter on. these values are combined via AND */
14302
+ metadata: {
14303
+ [key: string]: string;
14304
+ };
14305
+ }
14306
+
14307
+ declare const GetOrdersRequest: {
14308
+ $type: "devvit.plugin.payments.v1alpha.GetOrdersRequest";
14309
+ encode(message: GetOrdersRequest, writer?: _m0.Writer): _m0.Writer;
14310
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetOrdersRequest;
14311
+ fromJSON(object: any): GetOrdersRequest;
14312
+ toJSON(message: GetOrdersRequest): unknown;
14313
+ create(base?: DeepPartial_79<GetOrdersRequest>): GetOrdersRequest;
14314
+ fromPartial(object: DeepPartial_79<GetOrdersRequest>): GetOrdersRequest;
14315
+ };
14316
+
14317
+ declare interface GetOrdersRequest_MetadataEntry {
14318
+ key: string;
14319
+ value: string;
14320
+ }
14321
+
14322
+ declare const GetOrdersRequest_MetadataEntry: {
14323
+ $type: "devvit.plugin.payments.v1alpha.GetOrdersRequest.MetadataEntry";
14324
+ encode(message: GetOrdersRequest_MetadataEntry, writer?: _m0.Writer): _m0.Writer;
14325
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetOrdersRequest_MetadataEntry;
14326
+ fromJSON(object: any): GetOrdersRequest_MetadataEntry;
14327
+ toJSON(message: GetOrdersRequest_MetadataEntry): unknown;
14328
+ create(base?: DeepPartial_79<GetOrdersRequest_MetadataEntry>): GetOrdersRequest_MetadataEntry;
14329
+ fromPartial(object: DeepPartial_79<GetOrdersRequest_MetadataEntry>): GetOrdersRequest_MetadataEntry;
14330
+ };
14331
+
14332
+ declare interface GetOrdersResponse {
14333
+ orders: Order[];
14334
+ }
14335
+
14336
+ declare const GetOrdersResponse: {
14337
+ $type: "devvit.plugin.payments.v1alpha.GetOrdersResponse";
14338
+ encode(message: GetOrdersResponse, writer?: _m0.Writer): _m0.Writer;
14339
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetOrdersResponse;
14340
+ fromJSON(object: any): GetOrdersResponse;
14341
+ toJSON(message: GetOrdersResponse): unknown;
14342
+ create(base?: DeepPartial_79<GetOrdersResponse>): GetOrdersResponse;
14343
+ fromPartial(object: DeepPartial_79<GetOrdersResponse>): GetOrdersResponse;
14344
+ };
14345
+
14222
14346
  export declare type GetPageRevisionsOptions = {
14223
14347
  /** The name of the subreddit the page is in. */
14224
14348
  subredditName: string;
@@ -14254,6 +14378,54 @@ export declare type GetPrivateMessagesOptions = Prettify<{
14254
14378
  type?: 'inbox' | 'unread' | 'sent';
14255
14379
  } & ListingFetchOptions>;
14256
14380
 
14381
+ declare interface GetProductsRequest {
14382
+ /** if empty, all products will be returned */
14383
+ skus: string[];
14384
+ /** metadata to filter on. these values are combined via AND */
14385
+ metadata: {
14386
+ [key: string]: string;
14387
+ };
14388
+ }
14389
+
14390
+ declare const GetProductsRequest: {
14391
+ $type: "devvit.plugin.payments.v1alpha.GetProductsRequest";
14392
+ encode(message: GetProductsRequest, writer?: _m0.Writer): _m0.Writer;
14393
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetProductsRequest;
14394
+ fromJSON(object: any): GetProductsRequest;
14395
+ toJSON(message: GetProductsRequest): unknown;
14396
+ create(base?: DeepPartial_79<GetProductsRequest>): GetProductsRequest;
14397
+ fromPartial(object: DeepPartial_79<GetProductsRequest>): GetProductsRequest;
14398
+ };
14399
+
14400
+ declare interface GetProductsRequest_MetadataEntry {
14401
+ key: string;
14402
+ value: string;
14403
+ }
14404
+
14405
+ declare const GetProductsRequest_MetadataEntry: {
14406
+ $type: "devvit.plugin.payments.v1alpha.GetProductsRequest.MetadataEntry";
14407
+ encode(message: GetProductsRequest_MetadataEntry, writer?: _m0.Writer): _m0.Writer;
14408
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetProductsRequest_MetadataEntry;
14409
+ fromJSON(object: any): GetProductsRequest_MetadataEntry;
14410
+ toJSON(message: GetProductsRequest_MetadataEntry): unknown;
14411
+ create(base?: DeepPartial_79<GetProductsRequest_MetadataEntry>): GetProductsRequest_MetadataEntry;
14412
+ fromPartial(object: DeepPartial_79<GetProductsRequest_MetadataEntry>): GetProductsRequest_MetadataEntry;
14413
+ };
14414
+
14415
+ declare interface GetProductsResponse {
14416
+ products: Product[];
14417
+ }
14418
+
14419
+ declare const GetProductsResponse: {
14420
+ $type: "devvit.plugin.payments.v1alpha.GetProductsResponse";
14421
+ encode(message: GetProductsResponse, writer?: _m0.Writer): _m0.Writer;
14422
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetProductsResponse;
14423
+ fromJSON(object: any): GetProductsResponse;
14424
+ toJSON(message: GetProductsResponse): unknown;
14425
+ create(base?: DeepPartial_79<GetProductsResponse>): GetProductsResponse;
14426
+ fromPartial(object: DeepPartial_79<GetProductsResponse>): GetProductsResponse;
14427
+ };
14428
+
14257
14429
  declare interface GetProfileRequest {
14258
14430
  profileId: string;
14259
14431
  }
@@ -15030,8 +15202,8 @@ declare const HandleUIEventRequest: {
15030
15202
  decode(input: _m0.Reader | Uint8Array, length?: number): HandleUIEventRequest;
15031
15203
  fromJSON(object: any): HandleUIEventRequest;
15032
15204
  toJSON(message: HandleUIEventRequest): unknown;
15033
- create(base?: DeepPartial_97<HandleUIEventRequest>): HandleUIEventRequest;
15034
- fromPartial(object: DeepPartial_97<HandleUIEventRequest>): HandleUIEventRequest;
15205
+ create(base?: DeepPartial_100<HandleUIEventRequest>): HandleUIEventRequest;
15206
+ fromPartial(object: DeepPartial_100<HandleUIEventRequest>): HandleUIEventRequest;
15035
15207
  };
15036
15208
 
15037
15209
  /** @deprecated */
@@ -15048,8 +15220,8 @@ declare const HandleUIEventResponse: {
15048
15220
  decode(input: _m0.Reader | Uint8Array, length?: number): HandleUIEventResponse;
15049
15221
  fromJSON(object: any): HandleUIEventResponse;
15050
15222
  toJSON(message: HandleUIEventResponse): unknown;
15051
- create(base?: DeepPartial_97<HandleUIEventResponse>): HandleUIEventResponse;
15052
- fromPartial(object: DeepPartial_97<HandleUIEventResponse>): HandleUIEventResponse;
15223
+ create(base?: DeepPartial_100<HandleUIEventResponse>): HandleUIEventResponse;
15224
+ fromPartial(object: DeepPartial_100<HandleUIEventResponse>): HandleUIEventResponse;
15053
15225
  };
15054
15226
 
15055
15227
  declare interface HDelRequest {
@@ -15066,8 +15238,8 @@ declare const HDelRequest: {
15066
15238
  decode(input: _m0.Reader | Uint8Array, length?: number): HDelRequest;
15067
15239
  fromJSON(object: any): HDelRequest;
15068
15240
  toJSON(message: HDelRequest): unknown;
15069
- create(base?: DeepPartial_84<HDelRequest>): HDelRequest;
15070
- fromPartial(object: DeepPartial_84<HDelRequest>): HDelRequest;
15241
+ create(base?: DeepPartial_87<HDelRequest>): HDelRequest;
15242
+ fromPartial(object: DeepPartial_87<HDelRequest>): HDelRequest;
15071
15243
  };
15072
15244
 
15073
15245
  /**
@@ -15136,8 +15308,8 @@ declare const HealthDefinition: {
15136
15308
  decode(input: _m0.Reader | Uint8Array, length?: number): HealthStatus;
15137
15309
  fromJSON(object: any): HealthStatus;
15138
15310
  toJSON(message: HealthStatus): unknown;
15139
- create(base?: DeepPartial_107<HealthStatus>): HealthStatus;
15140
- fromPartial(object: DeepPartial_107<HealthStatus>): HealthStatus;
15311
+ create(base?: DeepPartial_110<HealthStatus>): HealthStatus;
15312
+ fromPartial(object: DeepPartial_110<HealthStatus>): HealthStatus;
15141
15313
  };
15142
15314
  readonly responseStream: false;
15143
15315
  readonly options: {};
@@ -15158,8 +15330,8 @@ declare const HealthStatus: {
15158
15330
  decode(input: _m0.Reader | Uint8Array, length?: number): HealthStatus;
15159
15331
  fromJSON(object: any): HealthStatus;
15160
15332
  toJSON(message: HealthStatus): unknown;
15161
- create(base?: DeepPartial_107<HealthStatus>): HealthStatus;
15162
- fromPartial(object: DeepPartial_107<HealthStatus>): HealthStatus;
15333
+ create(base?: DeepPartial_110<HealthStatus>): HealthStatus;
15334
+ fromPartial(object: DeepPartial_110<HealthStatus>): HealthStatus;
15163
15335
  };
15164
15336
 
15165
15337
  /**
@@ -15232,8 +15404,8 @@ declare const HGetRequest: {
15232
15404
  decode(input: _m0.Reader | Uint8Array, length?: number): HGetRequest;
15233
15405
  fromJSON(object: any): HGetRequest;
15234
15406
  toJSON(message: HGetRequest): unknown;
15235
- create(base?: DeepPartial_84<HGetRequest>): HGetRequest;
15236
- fromPartial(object: DeepPartial_84<HGetRequest>): HGetRequest;
15407
+ create(base?: DeepPartial_87<HGetRequest>): HGetRequest;
15408
+ fromPartial(object: DeepPartial_87<HGetRequest>): HGetRequest;
15237
15409
  };
15238
15410
 
15239
15411
  declare interface HideWikiPageRevisionRequest {
@@ -15337,8 +15509,8 @@ declare const HIncrByRequest: {
15337
15509
  decode(input: _m0.Reader | Uint8Array, length?: number): HIncrByRequest;
15338
15510
  fromJSON(object: any): HIncrByRequest;
15339
15511
  toJSON(message: HIncrByRequest): unknown;
15340
- create(base?: DeepPartial_84<HIncrByRequest>): HIncrByRequest;
15341
- fromPartial(object: DeepPartial_84<HIncrByRequest>): HIncrByRequest;
15512
+ create(base?: DeepPartial_87<HIncrByRequest>): HIncrByRequest;
15513
+ fromPartial(object: DeepPartial_87<HIncrByRequest>): HIncrByRequest;
15342
15514
  };
15343
15515
 
15344
15516
  /**
@@ -15367,8 +15539,8 @@ declare const HScanRequest: {
15367
15539
  decode(input: _m0.Reader | Uint8Array, length?: number): HScanRequest;
15368
15540
  fromJSON(object: any): HScanRequest;
15369
15541
  toJSON(message: HScanRequest): unknown;
15370
- create(base?: DeepPartial_84<HScanRequest>): HScanRequest;
15371
- fromPartial(object: DeepPartial_84<HScanRequest>): HScanRequest;
15542
+ create(base?: DeepPartial_87<HScanRequest>): HScanRequest;
15543
+ fromPartial(object: DeepPartial_87<HScanRequest>): HScanRequest;
15372
15544
  };
15373
15545
 
15374
15546
  declare interface HScanResponse {
@@ -15382,8 +15554,8 @@ declare const HScanResponse: {
15382
15554
  decode(input: _m0.Reader | Uint8Array, length?: number): HScanResponse;
15383
15555
  fromJSON(object: any): HScanResponse;
15384
15556
  toJSON(message: HScanResponse): unknown;
15385
- create(base?: DeepPartial_84<HScanResponse>): HScanResponse;
15386
- fromPartial(object: DeepPartial_84<HScanResponse>): HScanResponse;
15557
+ create(base?: DeepPartial_87<HScanResponse>): HScanResponse;
15558
+ fromPartial(object: DeepPartial_87<HScanResponse>): HScanResponse;
15387
15559
  };
15388
15560
 
15389
15561
  declare interface HSetRequest {
@@ -15400,8 +15572,8 @@ declare const HSetRequest: {
15400
15572
  decode(input: _m0.Reader | Uint8Array, length?: number): HSetRequest;
15401
15573
  fromJSON(object: any): HSetRequest;
15402
15574
  toJSON(message: HSetRequest): unknown;
15403
- create(base?: DeepPartial_84<HSetRequest>): HSetRequest;
15404
- fromPartial(object: DeepPartial_84<HSetRequest>): HSetRequest;
15575
+ create(base?: DeepPartial_87<HSetRequest>): HSetRequest;
15576
+ fromPartial(object: DeepPartial_87<HSetRequest>): HSetRequest;
15405
15577
  };
15406
15578
 
15407
15579
  declare interface HTTP {
@@ -15533,8 +15705,8 @@ declare const IncrByRequest: {
15533
15705
  decode(input: _m0.Reader | Uint8Array, length?: number): IncrByRequest;
15534
15706
  fromJSON(object: any): IncrByRequest;
15535
15707
  toJSON(message: IncrByRequest): unknown;
15536
- create(base?: DeepPartial_84<IncrByRequest>): IncrByRequest;
15537
- fromPartial(object: DeepPartial_84<IncrByRequest>): IncrByRequest;
15708
+ create(base?: DeepPartial_87<IncrByRequest>): IncrByRequest;
15709
+ fromPartial(object: DeepPartial_87<IncrByRequest>): IncrByRequest;
15538
15710
  };
15539
15711
 
15540
15712
  declare interface InfoRequest {
@@ -15733,8 +15905,8 @@ declare const InstallationInfo: {
15733
15905
  decode(input: _m0.Reader | Uint8Array, length?: number): InstallationInfo;
15734
15906
  fromJSON(object: any): InstallationInfo;
15735
15907
  toJSON(message: InstallationInfo): unknown;
15736
- create(base?: DeepPartial_96<InstallationInfo>): InstallationInfo;
15737
- fromPartial(object: DeepPartial_96<InstallationInfo>): InstallationInfo;
15908
+ create(base?: DeepPartial_99<InstallationInfo>): InstallationInfo;
15909
+ fromPartial(object: DeepPartial_99<InstallationInfo>): InstallationInfo;
15738
15910
  };
15739
15911
 
15740
15912
  declare interface InstallationLocationInfo {
@@ -15756,8 +15928,8 @@ declare const InstallationLocationInfo: {
15756
15928
  decode(input: _m0.Reader | Uint8Array, length?: number): InstallationLocationInfo;
15757
15929
  fromJSON(object: any): InstallationLocationInfo;
15758
15930
  toJSON(message: InstallationLocationInfo): unknown;
15759
- create(base?: DeepPartial_96<InstallationLocationInfo>): InstallationLocationInfo;
15760
- fromPartial(object: DeepPartial_96<InstallationLocationInfo>): InstallationLocationInfo;
15931
+ create(base?: DeepPartial_99<InstallationLocationInfo>): InstallationLocationInfo;
15932
+ fromPartial(object: DeepPartial_99<InstallationLocationInfo>): InstallationLocationInfo;
15761
15933
  };
15762
15934
 
15763
15935
  declare interface InstallationPurgeRequest {
@@ -16594,8 +16766,8 @@ declare const KeepAliveMessage: {
16594
16766
  decode(input: _m0.Reader | Uint8Array, length?: number): KeepAliveMessage;
16595
16767
  fromJSON(object: any): KeepAliveMessage;
16596
16768
  toJSON(message: KeepAliveMessage): unknown;
16597
- create(base?: DeepPartial_85<KeepAliveMessage>): KeepAliveMessage;
16598
- fromPartial(object: DeepPartial_85<KeepAliveMessage>): KeepAliveMessage;
16769
+ create(base?: DeepPartial_88<KeepAliveMessage>): KeepAliveMessage;
16770
+ fromPartial(object: DeepPartial_88<KeepAliveMessage>): KeepAliveMessage;
16599
16771
  };
16600
16772
 
16601
16773
  declare interface KeyRangeRequest {
@@ -16613,8 +16785,8 @@ declare const KeyRangeRequest: {
16613
16785
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRangeRequest;
16614
16786
  fromJSON(object: any): KeyRangeRequest;
16615
16787
  toJSON(message: KeyRangeRequest): unknown;
16616
- create(base?: DeepPartial_84<KeyRangeRequest>): KeyRangeRequest;
16617
- fromPartial(object: DeepPartial_84<KeyRangeRequest>): KeyRangeRequest;
16788
+ create(base?: DeepPartial_87<KeyRangeRequest>): KeyRangeRequest;
16789
+ fromPartial(object: DeepPartial_87<KeyRangeRequest>): KeyRangeRequest;
16618
16790
  };
16619
16791
 
16620
16792
  declare interface KeyRequest {
@@ -16630,8 +16802,8 @@ declare const KeyRequest: {
16630
16802
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
16631
16803
  fromJSON(object: any): KeyRequest;
16632
16804
  toJSON(message: KeyRequest): unknown;
16633
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
16634
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
16805
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
16806
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
16635
16807
  };
16636
16808
 
16637
16809
  declare interface KeySet {
@@ -16661,8 +16833,8 @@ declare const KeysRequest: {
16661
16833
  decode(input: _m0.Reader | Uint8Array, length?: number): KeysRequest;
16662
16834
  fromJSON(object: any): KeysRequest;
16663
16835
  toJSON(message: KeysRequest): unknown;
16664
- create(base?: DeepPartial_84<KeysRequest>): KeysRequest;
16665
- fromPartial(object: DeepPartial_84<KeysRequest>): KeysRequest;
16836
+ create(base?: DeepPartial_87<KeysRequest>): KeysRequest;
16837
+ fromPartial(object: DeepPartial_87<KeysRequest>): KeysRequest;
16666
16838
  };
16667
16839
 
16668
16840
  declare interface KeysResponse {
@@ -16675,8 +16847,8 @@ declare const KeysResponse: {
16675
16847
  decode(input: _m0.Reader | Uint8Array, length?: number): KeysResponse;
16676
16848
  fromJSON(object: any): KeysResponse;
16677
16849
  toJSON(message: KeysResponse): unknown;
16678
- create(base?: DeepPartial_84<KeysResponse>): KeysResponse;
16679
- fromPartial(object: DeepPartial_84<KeysResponse>): KeysResponse;
16850
+ create(base?: DeepPartial_87<KeysResponse>): KeysResponse;
16851
+ fromPartial(object: DeepPartial_87<KeysResponse>): KeysResponse;
16680
16852
  };
16681
16853
 
16682
16854
  declare interface KeyValuesRequest {
@@ -16692,8 +16864,8 @@ declare const KeyValuesRequest: {
16692
16864
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyValuesRequest;
16693
16865
  fromJSON(object: any): KeyValuesRequest;
16694
16866
  toJSON(message: KeyValuesRequest): unknown;
16695
- create(base?: DeepPartial_84<KeyValuesRequest>): KeyValuesRequest;
16696
- fromPartial(object: DeepPartial_84<KeyValuesRequest>): KeyValuesRequest;
16867
+ create(base?: DeepPartial_87<KeyValuesRequest>): KeyValuesRequest;
16868
+ fromPartial(object: DeepPartial_87<KeyValuesRequest>): KeyValuesRequest;
16697
16869
  };
16698
16870
 
16699
16871
  export declare type KVStore = {
@@ -19923,8 +20095,8 @@ declare const ListActionRequest: {
19923
20095
  decode(input: _m0.Reader | Uint8Array, length?: number): ListActionRequest;
19924
20096
  fromJSON(object: any): ListActionRequest;
19925
20097
  toJSON(message: ListActionRequest): unknown;
19926
- create(base?: DeepPartial_87<ListActionRequest>): ListActionRequest;
19927
- fromPartial(object: DeepPartial_87<ListActionRequest>): ListActionRequest;
20098
+ create(base?: DeepPartial_90<ListActionRequest>): ListActionRequest;
20099
+ fromPartial(object: DeepPartial_90<ListActionRequest>): ListActionRequest;
19928
20100
  };
19929
20101
 
19930
20102
  declare interface ListActionResponse {
@@ -19937,8 +20109,8 @@ declare const ListActionResponse: {
19937
20109
  decode(input: _m0.Reader | Uint8Array, length?: number): ListActionResponse;
19938
20110
  fromJSON(object: any): ListActionResponse;
19939
20111
  toJSON(message: ListActionResponse): unknown;
19940
- create(base?: DeepPartial_87<ListActionResponse>): ListActionResponse;
19941
- fromPartial(object: DeepPartial_87<ListActionResponse>): ListActionResponse;
20112
+ create(base?: DeepPartial_90<ListActionResponse>): ListActionResponse;
20113
+ fromPartial(object: DeepPartial_90<ListActionResponse>): ListActionResponse;
19942
20114
  };
19943
20115
 
19944
20116
  /**
@@ -23232,8 +23404,8 @@ declare const ListValue: {
23232
23404
  decode(input: _m0.Reader | Uint8Array, length?: number): ListValue;
23233
23405
  fromJSON(object: any): ListValue;
23234
23406
  toJSON(message: ListValue): unknown;
23235
- create(base?: DeepPartial_101<ListValue>): ListValue;
23236
- fromPartial(object: DeepPartial_101<ListValue>): ListValue;
23407
+ create(base?: DeepPartial_104<ListValue>): ListValue;
23408
+ fromPartial(object: DeepPartial_104<ListValue>): ListValue;
23237
23409
  wrap(array: Array<any> | undefined): ListValue;
23238
23410
  unwrap(message: ListValue): Array<any>;
23239
23411
  };
@@ -23611,8 +23783,8 @@ declare const Media: {
23611
23783
  decode(input: _m0.Reader | Uint8Array, length?: number): Media;
23612
23784
  fromJSON(object: any): Media;
23613
23785
  toJSON(message: Media): unknown;
23614
- create(base?: DeepPartial_80<Media>): Media;
23615
- fromPartial(object: DeepPartial_80<Media>): Media;
23786
+ create(base?: DeepPartial_83<Media>): Media;
23787
+ fromPartial(object: DeepPartial_83<Media>): Media;
23616
23788
  };
23617
23789
 
23618
23790
  declare interface Media_RedditVideo {
@@ -23634,8 +23806,8 @@ declare const Media_RedditVideo: {
23634
23806
  decode(input: _m0.Reader | Uint8Array, length?: number): Media_RedditVideo;
23635
23807
  fromJSON(object: any): Media_RedditVideo;
23636
23808
  toJSON(message: Media_RedditVideo): unknown;
23637
- create(base?: DeepPartial_80<Media_RedditVideo>): Media_RedditVideo;
23638
- fromPartial(object: DeepPartial_80<Media_RedditVideo>): Media_RedditVideo;
23809
+ create(base?: DeepPartial_83<Media_RedditVideo>): Media_RedditVideo;
23810
+ fromPartial(object: DeepPartial_83<Media_RedditVideo>): Media_RedditVideo;
23639
23811
  };
23640
23812
 
23641
23813
  export declare type MediaAsset = {
@@ -23863,8 +24035,8 @@ declare const Message: {
23863
24035
  decode(input: _m0.Reader | Uint8Array, length?: number): Message;
23864
24036
  fromJSON(object: any): Message;
23865
24037
  toJSON(message: Message): unknown;
23866
- create(base?: DeepPartial_89<Message>): Message;
23867
- fromPartial(object: DeepPartial_89<Message>): Message;
24038
+ create(base?: DeepPartial_92<Message>): Message;
24039
+ fromPartial(object: DeepPartial_92<Message>): Message;
23868
24040
  };
23869
24041
 
23870
24042
  export declare type MessageData = {
@@ -23986,8 +24158,8 @@ declare const MessageOptions: {
23986
24158
  decode(input: _m0.Reader | Uint8Array, length?: number): MessageOptions;
23987
24159
  fromJSON(object: any): MessageOptions;
23988
24160
  toJSON(message: MessageOptions): unknown;
23989
- create(base?: DeepPartial_102<MessageOptions>): MessageOptions;
23990
- fromPartial(object: DeepPartial_102<MessageOptions>): MessageOptions;
24161
+ create(base?: DeepPartial_105<MessageOptions>): MessageOptions;
24162
+ fromPartial(object: DeepPartial_105<MessageOptions>): MessageOptions;
23991
24163
  };
23992
24164
 
23993
24165
  declare interface MessageSet {
@@ -24057,8 +24229,8 @@ declare const MessageWhereRequest: {
24057
24229
  decode(input: _m0.Reader | Uint8Array, length?: number): MessageWhereRequest;
24058
24230
  fromJSON(object: any): MessageWhereRequest;
24059
24231
  toJSON(message: MessageWhereRequest): unknown;
24060
- create(base?: DeepPartial_82<MessageWhereRequest>): MessageWhereRequest;
24061
- fromPartial(object: DeepPartial_82<MessageWhereRequest>): MessageWhereRequest;
24232
+ create(base?: DeepPartial_85<MessageWhereRequest>): MessageWhereRequest;
24233
+ fromPartial(object: DeepPartial_85<MessageWhereRequest>): MessageWhereRequest;
24062
24234
  };
24063
24235
 
24064
24236
  /** Optional RPC metadata passed with every request. */
@@ -24097,8 +24269,8 @@ declare const MethodDescriptorProto: {
24097
24269
  decode(input: _m0.Reader | Uint8Array, length?: number): MethodDescriptorProto;
24098
24270
  fromJSON(object: any): MethodDescriptorProto;
24099
24271
  toJSON(message: MethodDescriptorProto): unknown;
24100
- create(base?: DeepPartial_102<MethodDescriptorProto>): MethodDescriptorProto;
24101
- fromPartial(object: DeepPartial_102<MethodDescriptorProto>): MethodDescriptorProto;
24272
+ create(base?: DeepPartial_105<MethodDescriptorProto>): MethodDescriptorProto;
24273
+ fromPartial(object: DeepPartial_105<MethodDescriptorProto>): MethodDescriptorProto;
24102
24274
  };
24103
24275
 
24104
24276
  declare interface MethodOptions {
@@ -24122,8 +24294,8 @@ declare const MethodOptions: {
24122
24294
  decode(input: _m0.Reader | Uint8Array, length?: number): MethodOptions;
24123
24295
  fromJSON(object: any): MethodOptions;
24124
24296
  toJSON(message: MethodOptions): unknown;
24125
- create(base?: DeepPartial_102<MethodOptions>): MethodOptions;
24126
- fromPartial(object: DeepPartial_102<MethodOptions>): MethodOptions;
24297
+ create(base?: DeepPartial_105<MethodOptions>): MethodOptions;
24298
+ fromPartial(object: DeepPartial_105<MethodOptions>): MethodOptions;
24127
24299
  };
24128
24300
 
24129
24301
  /**
@@ -28838,8 +29010,8 @@ declare const NestedRule: {
28838
29010
  decode(input: _m0.Reader | Uint8Array, length?: number): NestedRule;
28839
29011
  fromJSON(object: any): NestedRule;
28840
29012
  toJSON(message: NestedRule): unknown;
28841
- create(base?: DeepPartial_106<NestedRule>): NestedRule;
28842
- fromPartial(object: DeepPartial_106<NestedRule>): NestedRule;
29013
+ create(base?: DeepPartial_109<NestedRule>): NestedRule;
29014
+ fromPartial(object: DeepPartial_109<NestedRule>): NestedRule;
28843
29015
  };
28844
29016
 
28845
29017
  /** NEWMODMAIL - https://www.reddit.com/dev/api#section_modmail */
@@ -33916,8 +34088,8 @@ declare const OEmbed_2: {
33916
34088
  decode(input: _m0.Reader | Uint8Array, length?: number): OEmbed_2;
33917
34089
  fromJSON(object: any): OEmbed_2;
33918
34090
  toJSON(message: OEmbed_2): unknown;
33919
- create(base?: DeepPartial_80<OEmbed_2>): OEmbed_2;
33920
- fromPartial(object: DeepPartial_80<OEmbed_2>): OEmbed_2;
34091
+ create(base?: DeepPartial_83<OEmbed_2>): OEmbed_2;
34092
+ fromPartial(object: DeepPartial_83<OEmbed_2>): OEmbed_2;
33921
34093
  };
33922
34094
 
33923
34095
  declare interface OnAccountDelete {
@@ -35930,8 +36102,8 @@ declare const OneofDescriptorProto: {
35930
36102
  decode(input: _m0.Reader | Uint8Array, length?: number): OneofDescriptorProto;
35931
36103
  fromJSON(object: any): OneofDescriptorProto;
35932
36104
  toJSON(message: OneofDescriptorProto): unknown;
35933
- create(base?: DeepPartial_102<OneofDescriptorProto>): OneofDescriptorProto;
35934
- fromPartial(object: DeepPartial_102<OneofDescriptorProto>): OneofDescriptorProto;
36105
+ create(base?: DeepPartial_105<OneofDescriptorProto>): OneofDescriptorProto;
36106
+ fromPartial(object: DeepPartial_105<OneofDescriptorProto>): OneofDescriptorProto;
35935
36107
  };
35936
36108
 
35937
36109
  declare interface OneofOptions {
@@ -35947,8 +36119,8 @@ declare const OneofOptions: {
35947
36119
  decode(input: _m0.Reader | Uint8Array, length?: number): OneofOptions;
35948
36120
  fromJSON(object: any): OneofOptions;
35949
36121
  toJSON(message: OneofOptions): unknown;
35950
- create(base?: DeepPartial_102<OneofOptions>): OneofOptions;
35951
- fromPartial(object: DeepPartial_102<OneofOptions>): OneofOptions;
36122
+ create(base?: DeepPartial_105<OneofOptions>): OneofOptions;
36123
+ fromPartial(object: DeepPartial_105<OneofOptions>): OneofOptions;
35952
36124
  };
35953
36125
 
35954
36126
  declare interface OnModAction {
@@ -38499,6 +38671,43 @@ export declare type OnTriggerRequest = protos.PostFlairUpdate | protos.PostSubmi
38499
38671
 
38500
38672
  export declare type OnValidateHandler<ValueType> = (event: SettingsFormFieldValidatorEvent<ValueType>, context: Devvit.Context) => void | string | Promise<void | string>;
38501
38673
 
38674
+ /** Order represents a purchase made by a user */
38675
+ declare interface Order {
38676
+ /** a unique identifier for the order */
38677
+ id: string;
38678
+ /** where the order is in its lifecycle */
38679
+ status: OrderStatus;
38680
+ /** when the order was created */
38681
+ createdAt?: Date | undefined;
38682
+ /** when the order was last updated */
38683
+ updatedAt?: Date | undefined;
38684
+ /** the products that were ordered */
38685
+ products: Product[];
38686
+ /** whether or not the order was placed in the development sandbox or production */
38687
+ environment: Environment;
38688
+ }
38689
+
38690
+ declare const Order: {
38691
+ $type: "devvit.payments.v1alpha.Order";
38692
+ encode(message: Order, writer?: _m0.Writer): _m0.Writer;
38693
+ decode(input: _m0.Reader | Uint8Array, length?: number): Order;
38694
+ fromJSON(object: any): Order;
38695
+ toJSON(message: Order): unknown;
38696
+ create(base?: DeepPartial_81<Order>): Order;
38697
+ fromPartial(object: DeepPartial_81<Order>): Order;
38698
+ };
38699
+
38700
+ declare enum OrderStatus {
38701
+ ORDER_STATUS_UNSPECIFIED = 0,
38702
+ ORDER_STATUS_NEW = 1,
38703
+ ORDER_STATUS_CREATED = 2,
38704
+ ORDER_STATUS_PAID = 3,
38705
+ ORDER_STATUS_DELIVERED = 4,
38706
+ ORDER_STATUS_CANCELED = 5,
38707
+ ORDER_STATUS_REVERTED = 6,
38708
+ UNRECOGNIZED = -1
38709
+ }
38710
+
38502
38711
  declare interface OrderWidgetsRequest {
38503
38712
  subreddit: string;
38504
38713
  order: string[];
@@ -38664,6 +38873,120 @@ declare type ParticipantSubreddit = {
38664
38873
  name: string;
38665
38874
  };
38666
38875
 
38876
+ /**
38877
+ * PaymentsService provides a plugin for access to devvit's payment platform
38878
+ * These functions can be called by your app to get product or order info
38879
+ */
38880
+ declare interface PaymentsService {
38881
+ /** get all (or filtered) products associated with your app */
38882
+ GetProducts(request: GetProductsRequest, metadata?: Metadata): Promise<GetProductsResponse>;
38883
+ /** get all (or filtered) orders placed for your app */
38884
+ GetOrders(request: GetOrdersRequest, metadata?: Metadata): Promise<GetOrdersResponse>;
38885
+ /** acknowledges an order has been fully delivered. This is used for asynchronous order fullfilment like pre-orders */
38886
+ AcknowledgeOrderDelivery(request: AcknowledgeOrderDeliveryRequest, metadata?: Metadata): Promise<AcknowledgeOrderDeliveryResponse>;
38887
+ }
38888
+
38889
+ declare class PaymentsServiceClientImpl implements PaymentsService {
38890
+ private readonly rpc;
38891
+ private readonly service;
38892
+ constructor(rpc: Rpc_66, opts?: {
38893
+ service?: string;
38894
+ });
38895
+ GetProducts(request: GetProductsRequest, metadata?: Metadata): Promise<GetProductsResponse>;
38896
+ GetOrders(request: GetOrdersRequest, metadata?: Metadata): Promise<GetOrdersResponse>;
38897
+ AcknowledgeOrderDelivery(request: AcknowledgeOrderDeliveryRequest, metadata?: Metadata): Promise<AcknowledgeOrderDeliveryResponse>;
38898
+ }
38899
+
38900
+ /**
38901
+ * PaymentsService provides a plugin for access to devvit's payment platform
38902
+ * These functions can be called by your app to get product or order info
38903
+ */
38904
+ declare type PaymentsServiceDefinition = typeof PaymentsServiceDefinition;
38905
+
38906
+ declare const PaymentsServiceDefinition: {
38907
+ readonly name: "PaymentsService";
38908
+ readonly fullName: "devvit.plugin.payments.v1alpha.PaymentsService";
38909
+ readonly methods: {
38910
+ /** get all (or filtered) products associated with your app */
38911
+ readonly getProducts: {
38912
+ readonly name: "GetProducts";
38913
+ readonly requestType: {
38914
+ $type: "devvit.plugin.payments.v1alpha.GetProductsRequest";
38915
+ encode(message: GetProductsRequest, writer?: _m0.Writer): _m0.Writer;
38916
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetProductsRequest;
38917
+ fromJSON(object: any): GetProductsRequest;
38918
+ toJSON(message: GetProductsRequest): unknown;
38919
+ create(base?: DeepPartial_79<GetProductsRequest>): GetProductsRequest;
38920
+ fromPartial(object: DeepPartial_79<GetProductsRequest>): GetProductsRequest;
38921
+ };
38922
+ readonly requestStream: false;
38923
+ readonly responseType: {
38924
+ $type: "devvit.plugin.payments.v1alpha.GetProductsResponse";
38925
+ encode(message: GetProductsResponse, writer?: _m0.Writer): _m0.Writer;
38926
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetProductsResponse;
38927
+ fromJSON(object: any): GetProductsResponse;
38928
+ toJSON(message: GetProductsResponse): unknown;
38929
+ create(base?: DeepPartial_79<GetProductsResponse>): GetProductsResponse;
38930
+ fromPartial(object: DeepPartial_79<GetProductsResponse>): GetProductsResponse;
38931
+ };
38932
+ readonly responseStream: false;
38933
+ readonly options: {};
38934
+ };
38935
+ /** get all (or filtered) orders placed for your app */
38936
+ readonly getOrders: {
38937
+ readonly name: "GetOrders";
38938
+ readonly requestType: {
38939
+ $type: "devvit.plugin.payments.v1alpha.GetOrdersRequest";
38940
+ encode(message: GetOrdersRequest, writer?: _m0.Writer): _m0.Writer;
38941
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetOrdersRequest;
38942
+ fromJSON(object: any): GetOrdersRequest;
38943
+ toJSON(message: GetOrdersRequest): unknown;
38944
+ create(base?: DeepPartial_79<GetOrdersRequest>): GetOrdersRequest;
38945
+ fromPartial(object: DeepPartial_79<GetOrdersRequest>): GetOrdersRequest;
38946
+ };
38947
+ readonly requestStream: false;
38948
+ readonly responseType: {
38949
+ $type: "devvit.plugin.payments.v1alpha.GetOrdersResponse";
38950
+ encode(message: GetOrdersResponse, writer?: _m0.Writer): _m0.Writer;
38951
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetOrdersResponse;
38952
+ fromJSON(object: any): GetOrdersResponse;
38953
+ toJSON(message: GetOrdersResponse): unknown;
38954
+ create(base?: DeepPartial_79<GetOrdersResponse>): GetOrdersResponse;
38955
+ fromPartial(object: DeepPartial_79<GetOrdersResponse>): GetOrdersResponse;
38956
+ };
38957
+ readonly responseStream: false;
38958
+ readonly options: {};
38959
+ };
38960
+ /** acknowledges an order has been fully delivered. This is used for asynchronous order fullfilment like pre-orders */
38961
+ readonly acknowledgeOrderDelivery: {
38962
+ readonly name: "AcknowledgeOrderDelivery";
38963
+ readonly requestType: {
38964
+ $type: "devvit.plugin.payments.v1alpha.AcknowledgeOrderDeliveryRequest";
38965
+ encode(message: AcknowledgeOrderDeliveryRequest, writer?: _m0.Writer): _m0.Writer;
38966
+ decode(input: _m0.Reader | Uint8Array, length?: number): AcknowledgeOrderDeliveryRequest;
38967
+ fromJSON(object: any): AcknowledgeOrderDeliveryRequest;
38968
+ toJSON(message: AcknowledgeOrderDeliveryRequest): unknown;
38969
+ create(base?: DeepPartial_79<AcknowledgeOrderDeliveryRequest>): AcknowledgeOrderDeliveryRequest;
38970
+ fromPartial(object: DeepPartial_79<AcknowledgeOrderDeliveryRequest>): AcknowledgeOrderDeliveryRequest;
38971
+ };
38972
+ readonly requestStream: false;
38973
+ readonly responseType: {
38974
+ $type: "devvit.plugin.payments.v1alpha.AcknowledgeOrderDeliveryResponse";
38975
+ encode(_: AcknowledgeOrderDeliveryResponse, writer?: _m0.Writer): _m0.Writer;
38976
+ decode(input: _m0.Reader | Uint8Array, length?: number): AcknowledgeOrderDeliveryResponse;
38977
+ fromJSON(_: any): AcknowledgeOrderDeliveryResponse;
38978
+ toJSON(_: AcknowledgeOrderDeliveryResponse): unknown;
38979
+ create(base?: DeepPartial_79<AcknowledgeOrderDeliveryResponse>): AcknowledgeOrderDeliveryResponse;
38980
+ fromPartial(_: DeepPartial_79<AcknowledgeOrderDeliveryResponse>): AcknowledgeOrderDeliveryResponse;
38981
+ };
38982
+ readonly responseStream: false;
38983
+ readonly options: {};
38984
+ };
38985
+ };
38986
+ };
38987
+
38988
+ declare const PaymentsServiceServiceName = "devvit.plugin.payments.v1alpha.PaymentsService";
38989
+
38667
38990
  declare enum Permission {
38668
38991
  SYSTEM = 0,
38669
38992
  HTTP = 1,
@@ -38682,8 +39005,8 @@ declare const PermissionConfig: {
38682
39005
  decode(input: _m0.Reader | Uint8Array, length?: number): PermissionConfig;
38683
39006
  fromJSON(object: any): PermissionConfig;
38684
39007
  toJSON(message: PermissionConfig): unknown;
38685
- create(base?: DeepPartial_106<PermissionConfig>): PermissionConfig;
38686
- fromPartial(object: DeepPartial_106<PermissionConfig>): PermissionConfig;
39008
+ create(base?: DeepPartial_109<PermissionConfig>): PermissionConfig;
39009
+ fromPartial(object: DeepPartial_109<PermissionConfig>): PermissionConfig;
38687
39010
  };
38688
39011
 
38689
39012
  declare function permissionFromJSON(object: any): Permission;
@@ -38698,8 +39021,8 @@ declare const PermissionList: {
38698
39021
  decode(input: _m0.Reader | Uint8Array, length?: number): PermissionList;
38699
39022
  fromJSON(object: any): PermissionList;
38700
39023
  toJSON(message: PermissionList): unknown;
38701
- create(base?: DeepPartial_106<PermissionList>): PermissionList;
38702
- fromPartial(object: DeepPartial_106<PermissionList>): PermissionList;
39024
+ create(base?: DeepPartial_109<PermissionList>): PermissionList;
39025
+ fromPartial(object: DeepPartial_109<PermissionList>): PermissionList;
38703
39026
  };
38704
39027
 
38705
39028
  declare interface PermissionOrRule {
@@ -38714,8 +39037,8 @@ declare const PermissionOrRule: {
38714
39037
  decode(input: _m0.Reader | Uint8Array, length?: number): PermissionOrRule;
38715
39038
  fromJSON(object: any): PermissionOrRule;
38716
39039
  toJSON(message: PermissionOrRule): unknown;
38717
- create(base?: DeepPartial_106<PermissionOrRule>): PermissionOrRule;
38718
- fromPartial(object: DeepPartial_106<PermissionOrRule>): PermissionOrRule;
39040
+ create(base?: DeepPartial_109<PermissionOrRule>): PermissionOrRule;
39041
+ fromPartial(object: DeepPartial_109<PermissionOrRule>): PermissionOrRule;
38719
39042
  };
38720
39043
 
38721
39044
  declare function permissionToJSON(object: Permission): number;
@@ -39011,8 +39334,8 @@ declare const Post_2: {
39011
39334
  decode(input: _m0.Reader | Uint8Array, length?: number): Post_2;
39012
39335
  fromJSON(object: any): Post_2;
39013
39336
  toJSON(message: Post_2): unknown;
39014
- create(base?: DeepPartial_80<Post_2>): Post_2;
39015
- fromPartial(object: DeepPartial_80<Post_2>): Post_2;
39337
+ create(base?: DeepPartial_83<Post_2>): Post_2;
39338
+ fromPartial(object: DeepPartial_83<Post_2>): Post_2;
39016
39339
  };
39017
39340
 
39018
39341
  declare const POST_LINK_ELEMENT = "p/";
@@ -39759,8 +40082,8 @@ declare const PostFilterDefinition: {
39759
40082
  decode(input: _m0.Reader | Uint8Array, length?: number): PostFilterRequest;
39760
40083
  fromJSON(object: any): PostFilterRequest;
39761
40084
  toJSON(message: PostFilterRequest): unknown;
39762
- create(base?: DeepPartial_81<PostFilterRequest>): PostFilterRequest;
39763
- fromPartial(object: DeepPartial_81<PostFilterRequest>): PostFilterRequest;
40085
+ create(base?: DeepPartial_84<PostFilterRequest>): PostFilterRequest;
40086
+ fromPartial(object: DeepPartial_84<PostFilterRequest>): PostFilterRequest;
39764
40087
  };
39765
40088
  readonly requestStream: false;
39766
40089
  readonly responseType: {
@@ -39769,8 +40092,8 @@ declare const PostFilterDefinition: {
39769
40092
  decode(input: _m0.Reader | Uint8Array, length?: number): Response_2;
39770
40093
  fromJSON(object: any): Response_2;
39771
40094
  toJSON(message: Response_2): unknown;
39772
- create(base?: DeepPartial_81<Response_2>): Response_2;
39773
- fromPartial(object: DeepPartial_81<Response_2>): Response_2;
40095
+ create(base?: DeepPartial_84<Response_2>): Response_2;
40096
+ fromPartial(object: DeepPartial_84<Response_2>): Response_2;
39774
40097
  };
39775
40098
  readonly responseStream: false;
39776
40099
  readonly options: {};
@@ -39788,8 +40111,8 @@ declare const PostFilterRequest: {
39788
40111
  decode(input: _m0.Reader | Uint8Array, length?: number): PostFilterRequest;
39789
40112
  fromJSON(object: any): PostFilterRequest;
39790
40113
  toJSON(message: PostFilterRequest): unknown;
39791
- create(base?: DeepPartial_81<PostFilterRequest>): PostFilterRequest;
39792
- fromPartial(object: DeepPartial_81<PostFilterRequest>): PostFilterRequest;
40114
+ create(base?: DeepPartial_84<PostFilterRequest>): PostFilterRequest;
40115
+ fromPartial(object: DeepPartial_84<PostFilterRequest>): PostFilterRequest;
39793
40116
  };
39794
40117
 
39795
40118
  declare const PostFilterServiceName = "devvit.actor.reddit.PostFilter";
@@ -40072,8 +40395,8 @@ declare const Preview: {
40072
40395
  decode(input: _m0.Reader | Uint8Array, length?: number): Preview;
40073
40396
  fromJSON(object: any): Preview;
40074
40397
  toJSON(message: Preview): unknown;
40075
- create(base?: DeepPartial_80<Preview>): Preview;
40076
- fromPartial(object: DeepPartial_80<Preview>): Preview;
40398
+ create(base?: DeepPartial_83<Preview>): Preview;
40399
+ fromPartial(object: DeepPartial_83<Preview>): Preview;
40077
40400
  };
40078
40401
 
40079
40402
  declare interface Preview_PreviewImage {
@@ -40089,8 +40412,8 @@ declare const Preview_PreviewImage: {
40089
40412
  decode(input: _m0.Reader | Uint8Array, length?: number): Preview_PreviewImage;
40090
40413
  fromJSON(object: any): Preview_PreviewImage;
40091
40414
  toJSON(message: Preview_PreviewImage): unknown;
40092
- create(base?: DeepPartial_80<Preview_PreviewImage>): Preview_PreviewImage;
40093
- fromPartial(object: DeepPartial_80<Preview_PreviewImage>): Preview_PreviewImage;
40415
+ create(base?: DeepPartial_83<Preview_PreviewImage>): Preview_PreviewImage;
40416
+ fromPartial(object: DeepPartial_83<Preview_PreviewImage>): Preview_PreviewImage;
40094
40417
  };
40095
40418
 
40096
40419
  declare interface Preview_PreviewImage_Image {
@@ -40105,8 +40428,8 @@ declare const Preview_PreviewImage_Image: {
40105
40428
  decode(input: _m0.Reader | Uint8Array, length?: number): Preview_PreviewImage_Image;
40106
40429
  fromJSON(object: any): Preview_PreviewImage_Image;
40107
40430
  toJSON(message: Preview_PreviewImage_Image): unknown;
40108
- create(base?: DeepPartial_80<Preview_PreviewImage_Image>): Preview_PreviewImage_Image;
40109
- fromPartial(object: DeepPartial_80<Preview_PreviewImage_Image>): Preview_PreviewImage_Image;
40431
+ create(base?: DeepPartial_83<Preview_PreviewImage_Image>): Preview_PreviewImage_Image;
40432
+ fromPartial(object: DeepPartial_83<Preview_PreviewImage_Image>): Preview_PreviewImage_Image;
40110
40433
  };
40111
40434
 
40112
40435
  export declare class PrivateMessage {
@@ -40903,8 +41226,8 @@ declare const ProducerDefinition: {
40903
41226
  decode(input: _m0.Reader | Uint8Array, length?: number): Args;
40904
41227
  fromJSON(object: any): Args;
40905
41228
  toJSON(message: Args): unknown;
40906
- create(base?: DeepPartial_83<Args>): Args;
40907
- fromPartial(object: DeepPartial_83<Args>): Args;
41229
+ create(base?: DeepPartial_86<Args>): Args;
41230
+ fromPartial(object: DeepPartial_86<Args>): Args;
40908
41231
  };
40909
41232
  readonly requestStream: false;
40910
41233
  readonly responseType: {
@@ -40913,8 +41236,8 @@ declare const ProducerDefinition: {
40913
41236
  decode(input: _m0.Reader | Uint8Array, length?: number): Arg;
40914
41237
  fromJSON(object: any): Arg;
40915
41238
  toJSON(message: Arg): unknown;
40916
- create(base?: DeepPartial_83<Arg>): Arg;
40917
- fromPartial(object: DeepPartial_83<Arg>): Arg;
41239
+ create(base?: DeepPartial_86<Arg>): Arg;
41240
+ fromPartial(object: DeepPartial_86<Arg>): Arg;
40918
41241
  };
40919
41242
  readonly responseStream: true;
40920
41243
  readonly options: {};
@@ -40924,6 +41247,44 @@ declare const ProducerDefinition: {
40924
41247
 
40925
41248
  declare const ProducerServiceName = "devvit.actor.producer.Producer";
40926
41249
 
41250
+ declare interface Product {
41251
+ /** the developer defined identifer for the product */
41252
+ sku: string;
41253
+ /** the price of the product */
41254
+ price?: ProductPrice | undefined;
41255
+ /** whether or not this product is defined for sandbox or production purchases */
41256
+ environment: Environment;
41257
+ /** tags associated with the product */
41258
+ productMetadata: {
41259
+ [key: string]: string;
41260
+ };
41261
+ }
41262
+
41263
+ declare const Product: {
41264
+ $type: "devvit.payments.v1alpha.Product";
41265
+ encode(message: Product, writer?: _m0.Writer): _m0.Writer;
41266
+ decode(input: _m0.Reader | Uint8Array, length?: number): Product;
41267
+ fromJSON(object: any): Product;
41268
+ toJSON(message: Product): unknown;
41269
+ create(base?: DeepPartial_80<Product>): Product;
41270
+ fromPartial(object: DeepPartial_80<Product>): Product;
41271
+ };
41272
+
41273
+ declare interface ProductPrice {
41274
+ amount: number;
41275
+ currency: Currency;
41276
+ }
41277
+
41278
+ declare const ProductPrice: {
41279
+ $type: "devvit.payments.v1alpha.ProductPrice";
41280
+ encode(message: ProductPrice, writer?: _m0.Writer): _m0.Writer;
41281
+ decode(input: _m0.Reader | Uint8Array, length?: number): ProductPrice;
41282
+ fromJSON(object: any): ProductPrice;
41283
+ toJSON(message: ProductPrice): unknown;
41284
+ create(base?: DeepPartial_80<ProductPrice>): ProductPrice;
41285
+ fromPartial(object: DeepPartial_80<ProductPrice>): ProductPrice;
41286
+ };
41287
+
40927
41288
  declare namespace protos {
40928
41289
  export {
40929
41290
  ActorDefinition,
@@ -42172,10 +42533,22 @@ declare namespace protos {
42172
42533
  OnAccountDeleteServiceName,
42173
42534
  OnAccountDeleteClientImpl,
42174
42535
  OnAccountDeleteDefinition,
42536
+ GetProductsRequest,
42537
+ GetProductsRequest_MetadataEntry,
42538
+ GetProductsResponse,
42539
+ GetOrdersRequest,
42540
+ GetOrdersRequest_MetadataEntry,
42541
+ GetOrdersResponse,
42542
+ AcknowledgeOrderDeliveryRequest,
42543
+ AcknowledgeOrderDeliveryResponse,
42544
+ PaymentsService,
42545
+ PaymentsServiceServiceName,
42546
+ PaymentsServiceClientImpl,
42547
+ PaymentsServiceDefinition,
42175
42548
  Metadata,
42176
42549
  Definition,
42177
42550
  MethodDefinition,
42178
- Rpc_66 as Rpc
42551
+ Rpc_67 as Rpc
42179
42552
  }
42180
42553
  }
42181
42554
 
@@ -42255,8 +42628,8 @@ declare const ReadAllMessagesRequest: {
42255
42628
  decode(input: _m0.Reader | Uint8Array, length?: number): ReadAllMessagesRequest;
42256
42629
  fromJSON(object: any): ReadAllMessagesRequest;
42257
42630
  toJSON(message: ReadAllMessagesRequest): unknown;
42258
- create(base?: DeepPartial_82<ReadAllMessagesRequest>): ReadAllMessagesRequest;
42259
- fromPartial(object: DeepPartial_82<ReadAllMessagesRequest>): ReadAllMessagesRequest;
42631
+ create(base?: DeepPartial_85<ReadAllMessagesRequest>): ReadAllMessagesRequest;
42632
+ fromPartial(object: DeepPartial_85<ReadAllMessagesRequest>): ReadAllMessagesRequest;
42260
42633
  };
42261
42634
 
42262
42635
  declare interface Realtime {
@@ -44139,8 +44512,8 @@ declare const RedditPostGallery: {
44139
44512
  decode(input: _m0.Reader | Uint8Array, length?: number): RedditPostGallery;
44140
44513
  fromJSON(object: any): RedditPostGallery;
44141
44514
  toJSON(message: RedditPostGallery): unknown;
44142
- create(base?: DeepPartial_80<RedditPostGallery>): RedditPostGallery;
44143
- fromPartial(object: DeepPartial_80<RedditPostGallery>): RedditPostGallery;
44515
+ create(base?: DeepPartial_83<RedditPostGallery>): RedditPostGallery;
44516
+ fromPartial(object: DeepPartial_83<RedditPostGallery>): RedditPostGallery;
44144
44517
  };
44145
44518
 
44146
44519
  /**
@@ -44328,8 +44701,8 @@ declare const RedisAPIDefinition: {
44328
44701
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44329
44702
  fromJSON(object: any): KeyRequest;
44330
44703
  toJSON(message: KeyRequest): unknown;
44331
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44332
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
44704
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
44705
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44333
44706
  };
44334
44707
  readonly requestStream: false;
44335
44708
  readonly responseType: {
@@ -44356,8 +44729,8 @@ declare const RedisAPIDefinition: {
44356
44729
  decode(input: _m0.Reader | Uint8Array, length?: number): SetRequest;
44357
44730
  fromJSON(object: any): SetRequest;
44358
44731
  toJSON(message: SetRequest): unknown;
44359
- create(base?: DeepPartial_84<SetRequest>): SetRequest;
44360
- fromPartial(object: DeepPartial_84<SetRequest>): SetRequest;
44732
+ create(base?: DeepPartial_87<SetRequest>): SetRequest;
44733
+ fromPartial(object: DeepPartial_87<SetRequest>): SetRequest;
44361
44734
  };
44362
44735
  readonly requestStream: false;
44363
44736
  readonly responseType: {
@@ -44384,8 +44757,8 @@ declare const RedisAPIDefinition: {
44384
44757
  decode(input: _m0.Reader | Uint8Array, length?: number): KeysRequest;
44385
44758
  fromJSON(object: any): KeysRequest;
44386
44759
  toJSON(message: KeysRequest): unknown;
44387
- create(base?: DeepPartial_84<KeysRequest>): KeysRequest;
44388
- fromPartial(object: DeepPartial_84<KeysRequest>): KeysRequest;
44760
+ create(base?: DeepPartial_87<KeysRequest>): KeysRequest;
44761
+ fromPartial(object: DeepPartial_87<KeysRequest>): KeysRequest;
44389
44762
  };
44390
44763
  readonly requestStream: false;
44391
44764
  readonly responseType: {
@@ -44412,8 +44785,8 @@ declare const RedisAPIDefinition: {
44412
44785
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44413
44786
  fromJSON(object: any): KeyRequest;
44414
44787
  toJSON(message: KeyRequest): unknown;
44415
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44416
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
44788
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
44789
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44417
44790
  };
44418
44791
  readonly requestStream: false;
44419
44792
  readonly responseType: {
@@ -44441,8 +44814,8 @@ declare const RedisAPIDefinition: {
44441
44814
  decode(input: _m0.Reader | Uint8Array, length?: number): IncrByRequest;
44442
44815
  fromJSON(object: any): IncrByRequest;
44443
44816
  toJSON(message: IncrByRequest): unknown;
44444
- create(base?: DeepPartial_84<IncrByRequest>): IncrByRequest;
44445
- fromPartial(object: DeepPartial_84<IncrByRequest>): IncrByRequest;
44817
+ create(base?: DeepPartial_87<IncrByRequest>): IncrByRequest;
44818
+ fromPartial(object: DeepPartial_87<IncrByRequest>): IncrByRequest;
44446
44819
  };
44447
44820
  readonly requestStream: false;
44448
44821
  readonly responseType: {
@@ -44470,8 +44843,8 @@ declare const RedisAPIDefinition: {
44470
44843
  decode(input: _m0.Reader | Uint8Array, length?: number): HSetRequest;
44471
44844
  fromJSON(object: any): HSetRequest;
44472
44845
  toJSON(message: HSetRequest): unknown;
44473
- create(base?: DeepPartial_84<HSetRequest>): HSetRequest;
44474
- fromPartial(object: DeepPartial_84<HSetRequest>): HSetRequest;
44846
+ create(base?: DeepPartial_87<HSetRequest>): HSetRequest;
44847
+ fromPartial(object: DeepPartial_87<HSetRequest>): HSetRequest;
44475
44848
  };
44476
44849
  readonly requestStream: false;
44477
44850
  readonly responseType: {
@@ -44498,8 +44871,8 @@ declare const RedisAPIDefinition: {
44498
44871
  decode(input: _m0.Reader | Uint8Array, length?: number): HGetRequest;
44499
44872
  fromJSON(object: any): HGetRequest;
44500
44873
  toJSON(message: HGetRequest): unknown;
44501
- create(base?: DeepPartial_84<HGetRequest>): HGetRequest;
44502
- fromPartial(object: DeepPartial_84<HGetRequest>): HGetRequest;
44874
+ create(base?: DeepPartial_87<HGetRequest>): HGetRequest;
44875
+ fromPartial(object: DeepPartial_87<HGetRequest>): HGetRequest;
44503
44876
  };
44504
44877
  readonly requestStream: false;
44505
44878
  readonly responseType: {
@@ -44526,8 +44899,8 @@ declare const RedisAPIDefinition: {
44526
44899
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44527
44900
  fromJSON(object: any): KeyRequest;
44528
44901
  toJSON(message: KeyRequest): unknown;
44529
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44530
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
44902
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
44903
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44531
44904
  };
44532
44905
  readonly requestStream: false;
44533
44906
  readonly responseType: {
@@ -44536,8 +44909,8 @@ declare const RedisAPIDefinition: {
44536
44909
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisFieldValues;
44537
44910
  fromJSON(object: any): RedisFieldValues;
44538
44911
  toJSON(message: RedisFieldValues): unknown;
44539
- create(base?: DeepPartial_84<RedisFieldValues>): RedisFieldValues;
44540
- fromPartial(object: DeepPartial_84<RedisFieldValues>): RedisFieldValues;
44912
+ create(base?: DeepPartial_87<RedisFieldValues>): RedisFieldValues;
44913
+ fromPartial(object: DeepPartial_87<RedisFieldValues>): RedisFieldValues;
44541
44914
  };
44542
44915
  readonly responseStream: false;
44543
44916
  readonly options: {};
@@ -44550,8 +44923,8 @@ declare const RedisAPIDefinition: {
44550
44923
  decode(input: _m0.Reader | Uint8Array, length?: number): HDelRequest;
44551
44924
  fromJSON(object: any): HDelRequest;
44552
44925
  toJSON(message: HDelRequest): unknown;
44553
- create(base?: DeepPartial_84<HDelRequest>): HDelRequest;
44554
- fromPartial(object: DeepPartial_84<HDelRequest>): HDelRequest;
44926
+ create(base?: DeepPartial_87<HDelRequest>): HDelRequest;
44927
+ fromPartial(object: DeepPartial_87<HDelRequest>): HDelRequest;
44555
44928
  };
44556
44929
  readonly requestStream: false;
44557
44930
  readonly responseType: {
@@ -44578,8 +44951,8 @@ declare const RedisAPIDefinition: {
44578
44951
  decode(input: _m0.Reader | Uint8Array, length?: number): HScanRequest;
44579
44952
  fromJSON(object: any): HScanRequest;
44580
44953
  toJSON(message: HScanRequest): unknown;
44581
- create(base?: DeepPartial_84<HScanRequest>): HScanRequest;
44582
- fromPartial(object: DeepPartial_84<HScanRequest>): HScanRequest;
44954
+ create(base?: DeepPartial_87<HScanRequest>): HScanRequest;
44955
+ fromPartial(object: DeepPartial_87<HScanRequest>): HScanRequest;
44583
44956
  };
44584
44957
  readonly requestStream: false;
44585
44958
  readonly responseType: {
@@ -44588,8 +44961,8 @@ declare const RedisAPIDefinition: {
44588
44961
  decode(input: _m0.Reader | Uint8Array, length?: number): HScanResponse;
44589
44962
  fromJSON(object: any): HScanResponse;
44590
44963
  toJSON(message: HScanResponse): unknown;
44591
- create(base?: DeepPartial_84<HScanResponse>): HScanResponse;
44592
- fromPartial(object: DeepPartial_84<HScanResponse>): HScanResponse;
44964
+ create(base?: DeepPartial_87<HScanResponse>): HScanResponse;
44965
+ fromPartial(object: DeepPartial_87<HScanResponse>): HScanResponse;
44593
44966
  };
44594
44967
  readonly responseStream: false;
44595
44968
  readonly options: {};
@@ -44602,8 +44975,8 @@ declare const RedisAPIDefinition: {
44602
44975
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44603
44976
  fromJSON(object: any): KeyRequest;
44604
44977
  toJSON(message: KeyRequest): unknown;
44605
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44606
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
44978
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
44979
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44607
44980
  };
44608
44981
  readonly requestStream: false;
44609
44982
  readonly responseType: {
@@ -44612,8 +44985,8 @@ declare const RedisAPIDefinition: {
44612
44985
  decode(input: _m0.Reader | Uint8Array, length?: number): KeysResponse;
44613
44986
  fromJSON(object: any): KeysResponse;
44614
44987
  toJSON(message: KeysResponse): unknown;
44615
- create(base?: DeepPartial_84<KeysResponse>): KeysResponse;
44616
- fromPartial(object: DeepPartial_84<KeysResponse>): KeysResponse;
44988
+ create(base?: DeepPartial_87<KeysResponse>): KeysResponse;
44989
+ fromPartial(object: DeepPartial_87<KeysResponse>): KeysResponse;
44617
44990
  };
44618
44991
  readonly responseStream: false;
44619
44992
  readonly options: {};
@@ -44626,8 +44999,8 @@ declare const RedisAPIDefinition: {
44626
44999
  decode(input: _m0.Reader | Uint8Array, length?: number): HIncrByRequest;
44627
45000
  fromJSON(object: any): HIncrByRequest;
44628
45001
  toJSON(message: HIncrByRequest): unknown;
44629
- create(base?: DeepPartial_84<HIncrByRequest>): HIncrByRequest;
44630
- fromPartial(object: DeepPartial_84<HIncrByRequest>): HIncrByRequest;
45002
+ create(base?: DeepPartial_87<HIncrByRequest>): HIncrByRequest;
45003
+ fromPartial(object: DeepPartial_87<HIncrByRequest>): HIncrByRequest;
44631
45004
  };
44632
45005
  readonly requestStream: false;
44633
45006
  readonly responseType: {
@@ -44654,8 +45027,8 @@ declare const RedisAPIDefinition: {
44654
45027
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44655
45028
  fromJSON(object: any): KeyRequest;
44656
45029
  toJSON(message: KeyRequest): unknown;
44657
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44658
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
45030
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
45031
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44659
45032
  };
44660
45033
  readonly requestStream: false;
44661
45034
  readonly responseType: {
@@ -44683,8 +45056,8 @@ declare const RedisAPIDefinition: {
44683
45056
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionId;
44684
45057
  fromJSON(object: any): TransactionId;
44685
45058
  toJSON(message: TransactionId): unknown;
44686
- create(base?: DeepPartial_84<TransactionId>): TransactionId;
44687
- fromPartial(object: DeepPartial_84<TransactionId>): TransactionId;
45059
+ create(base?: DeepPartial_87<TransactionId>): TransactionId;
45060
+ fromPartial(object: DeepPartial_87<TransactionId>): TransactionId;
44688
45061
  };
44689
45062
  readonly requestStream: false;
44690
45063
  readonly responseType: {
@@ -44707,8 +45080,8 @@ declare const RedisAPIDefinition: {
44707
45080
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionId;
44708
45081
  fromJSON(object: any): TransactionId;
44709
45082
  toJSON(message: TransactionId): unknown;
44710
- create(base?: DeepPartial_84<TransactionId>): TransactionId;
44711
- fromPartial(object: DeepPartial_84<TransactionId>): TransactionId;
45083
+ create(base?: DeepPartial_87<TransactionId>): TransactionId;
45084
+ fromPartial(object: DeepPartial_87<TransactionId>): TransactionId;
44712
45085
  };
44713
45086
  readonly requestStream: false;
44714
45087
  readonly responseType: {
@@ -44717,8 +45090,8 @@ declare const RedisAPIDefinition: {
44717
45090
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionResponses;
44718
45091
  fromJSON(object: any): TransactionResponses;
44719
45092
  toJSON(message: TransactionResponses): unknown;
44720
- create(base?: DeepPartial_84<TransactionResponses>): TransactionResponses;
44721
- fromPartial(object: DeepPartial_84<TransactionResponses>): TransactionResponses;
45093
+ create(base?: DeepPartial_87<TransactionResponses>): TransactionResponses;
45094
+ fromPartial(object: DeepPartial_87<TransactionResponses>): TransactionResponses;
44722
45095
  };
44723
45096
  readonly responseStream: false;
44724
45097
  readonly options: {};
@@ -44731,8 +45104,8 @@ declare const RedisAPIDefinition: {
44731
45104
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionId;
44732
45105
  fromJSON(object: any): TransactionId;
44733
45106
  toJSON(message: TransactionId): unknown;
44734
- create(base?: DeepPartial_84<TransactionId>): TransactionId;
44735
- fromPartial(object: DeepPartial_84<TransactionId>): TransactionId;
45107
+ create(base?: DeepPartial_87<TransactionId>): TransactionId;
45108
+ fromPartial(object: DeepPartial_87<TransactionId>): TransactionId;
44736
45109
  };
44737
45110
  readonly requestStream: false;
44738
45111
  readonly responseType: {
@@ -44755,8 +45128,8 @@ declare const RedisAPIDefinition: {
44755
45128
  decode(input: _m0.Reader | Uint8Array, length?: number): WatchRequest;
44756
45129
  fromJSON(object: any): WatchRequest;
44757
45130
  toJSON(message: WatchRequest): unknown;
44758
- create(base?: DeepPartial_84<WatchRequest>): WatchRequest;
44759
- fromPartial(object: DeepPartial_84<WatchRequest>): WatchRequest;
45131
+ create(base?: DeepPartial_87<WatchRequest>): WatchRequest;
45132
+ fromPartial(object: DeepPartial_87<WatchRequest>): WatchRequest;
44760
45133
  };
44761
45134
  readonly requestStream: false;
44762
45135
  readonly responseType: {
@@ -44765,8 +45138,8 @@ declare const RedisAPIDefinition: {
44765
45138
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionId;
44766
45139
  fromJSON(object: any): TransactionId;
44767
45140
  toJSON(message: TransactionId): unknown;
44768
- create(base?: DeepPartial_84<TransactionId>): TransactionId;
44769
- fromPartial(object: DeepPartial_84<TransactionId>): TransactionId;
45141
+ create(base?: DeepPartial_87<TransactionId>): TransactionId;
45142
+ fromPartial(object: DeepPartial_87<TransactionId>): TransactionId;
44770
45143
  };
44771
45144
  readonly responseStream: false;
44772
45145
  readonly options: {};
@@ -44779,8 +45152,8 @@ declare const RedisAPIDefinition: {
44779
45152
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionId;
44780
45153
  fromJSON(object: any): TransactionId;
44781
45154
  toJSON(message: TransactionId): unknown;
44782
- create(base?: DeepPartial_84<TransactionId>): TransactionId;
44783
- fromPartial(object: DeepPartial_84<TransactionId>): TransactionId;
45155
+ create(base?: DeepPartial_87<TransactionId>): TransactionId;
45156
+ fromPartial(object: DeepPartial_87<TransactionId>): TransactionId;
44784
45157
  };
44785
45158
  readonly requestStream: false;
44786
45159
  readonly responseType: {
@@ -44804,8 +45177,8 @@ declare const RedisAPIDefinition: {
44804
45177
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRangeRequest;
44805
45178
  fromJSON(object: any): KeyRangeRequest;
44806
45179
  toJSON(message: KeyRangeRequest): unknown;
44807
- create(base?: DeepPartial_84<KeyRangeRequest>): KeyRangeRequest;
44808
- fromPartial(object: DeepPartial_84<KeyRangeRequest>): KeyRangeRequest;
45180
+ create(base?: DeepPartial_87<KeyRangeRequest>): KeyRangeRequest;
45181
+ fromPartial(object: DeepPartial_87<KeyRangeRequest>): KeyRangeRequest;
44809
45182
  };
44810
45183
  readonly requestStream: false;
44811
45184
  readonly responseType: {
@@ -44832,8 +45205,8 @@ declare const RedisAPIDefinition: {
44832
45205
  decode(input: _m0.Reader | Uint8Array, length?: number): SetRangeRequest;
44833
45206
  fromJSON(object: any): SetRangeRequest;
44834
45207
  toJSON(message: SetRangeRequest): unknown;
44835
- create(base?: DeepPartial_84<SetRangeRequest>): SetRangeRequest;
44836
- fromPartial(object: DeepPartial_84<SetRangeRequest>): SetRangeRequest;
45208
+ create(base?: DeepPartial_87<SetRangeRequest>): SetRangeRequest;
45209
+ fromPartial(object: DeepPartial_87<SetRangeRequest>): SetRangeRequest;
44837
45210
  };
44838
45211
  readonly requestStream: false;
44839
45212
  readonly responseType: {
@@ -44860,8 +45233,8 @@ declare const RedisAPIDefinition: {
44860
45233
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44861
45234
  fromJSON(object: any): KeyRequest;
44862
45235
  toJSON(message: KeyRequest): unknown;
44863
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44864
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
45236
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
45237
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44865
45238
  };
44866
45239
  readonly requestStream: false;
44867
45240
  readonly responseType: {
@@ -44889,8 +45262,8 @@ declare const RedisAPIDefinition: {
44889
45262
  decode(input: _m0.Reader | Uint8Array, length?: number): KeysRequest;
44890
45263
  fromJSON(object: any): KeysRequest;
44891
45264
  toJSON(message: KeysRequest): unknown;
44892
- create(base?: DeepPartial_84<KeysRequest>): KeysRequest;
44893
- fromPartial(object: DeepPartial_84<KeysRequest>): KeysRequest;
45265
+ create(base?: DeepPartial_87<KeysRequest>): KeysRequest;
45266
+ fromPartial(object: DeepPartial_87<KeysRequest>): KeysRequest;
44894
45267
  };
44895
45268
  readonly requestStream: false;
44896
45269
  readonly responseType: {
@@ -44899,8 +45272,8 @@ declare const RedisAPIDefinition: {
44899
45272
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisValues;
44900
45273
  fromJSON(object: any): RedisValues;
44901
45274
  toJSON(message: RedisValues): unknown;
44902
- create(base?: DeepPartial_84<RedisValues>): RedisValues;
44903
- fromPartial(object: DeepPartial_84<RedisValues>): RedisValues;
45275
+ create(base?: DeepPartial_87<RedisValues>): RedisValues;
45276
+ fromPartial(object: DeepPartial_87<RedisValues>): RedisValues;
44904
45277
  };
44905
45278
  readonly responseStream: false;
44906
45279
  readonly options: {};
@@ -44913,8 +45286,8 @@ declare const RedisAPIDefinition: {
44913
45286
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyValuesRequest;
44914
45287
  fromJSON(object: any): KeyValuesRequest;
44915
45288
  toJSON(message: KeyValuesRequest): unknown;
44916
- create(base?: DeepPartial_84<KeyValuesRequest>): KeyValuesRequest;
44917
- fromPartial(object: DeepPartial_84<KeyValuesRequest>): KeyValuesRequest;
45289
+ create(base?: DeepPartial_87<KeyValuesRequest>): KeyValuesRequest;
45290
+ fromPartial(object: DeepPartial_87<KeyValuesRequest>): KeyValuesRequest;
44918
45291
  };
44919
45292
  readonly requestStream: false;
44920
45293
  readonly responseType: {
@@ -44938,8 +45311,8 @@ declare const RedisAPIDefinition: {
44938
45311
  decode(input: _m0.Reader | Uint8Array, length?: number): ExpireRequest;
44939
45312
  fromJSON(object: any): ExpireRequest;
44940
45313
  toJSON(message: ExpireRequest): unknown;
44941
- create(base?: DeepPartial_84<ExpireRequest>): ExpireRequest;
44942
- fromPartial(object: DeepPartial_84<ExpireRequest>): ExpireRequest;
45314
+ create(base?: DeepPartial_87<ExpireRequest>): ExpireRequest;
45315
+ fromPartial(object: DeepPartial_87<ExpireRequest>): ExpireRequest;
44943
45316
  };
44944
45317
  readonly requestStream: false;
44945
45318
  readonly responseType: {
@@ -44962,8 +45335,8 @@ declare const RedisAPIDefinition: {
44962
45335
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
44963
45336
  fromJSON(object: any): KeyRequest;
44964
45337
  toJSON(message: KeyRequest): unknown;
44965
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
44966
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
45338
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
45339
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
44967
45340
  };
44968
45341
  readonly requestStream: false;
44969
45342
  readonly responseType: {
@@ -44991,8 +45364,8 @@ declare const RedisAPIDefinition: {
44991
45364
  decode(input: _m0.Reader | Uint8Array, length?: number): ZAddRequest;
44992
45365
  fromJSON(object: any): ZAddRequest;
44993
45366
  toJSON(message: ZAddRequest): unknown;
44994
- create(base?: DeepPartial_84<ZAddRequest>): ZAddRequest;
44995
- fromPartial(object: DeepPartial_84<ZAddRequest>): ZAddRequest;
45367
+ create(base?: DeepPartial_87<ZAddRequest>): ZAddRequest;
45368
+ fromPartial(object: DeepPartial_87<ZAddRequest>): ZAddRequest;
44996
45369
  };
44997
45370
  readonly requestStream: false;
44998
45371
  readonly responseType: {
@@ -45019,8 +45392,8 @@ declare const RedisAPIDefinition: {
45019
45392
  decode(input: _m0.Reader | Uint8Array, length?: number): KeyRequest;
45020
45393
  fromJSON(object: any): KeyRequest;
45021
45394
  toJSON(message: KeyRequest): unknown;
45022
- create(base?: DeepPartial_84<KeyRequest>): KeyRequest;
45023
- fromPartial(object: DeepPartial_84<KeyRequest>): KeyRequest;
45395
+ create(base?: DeepPartial_87<KeyRequest>): KeyRequest;
45396
+ fromPartial(object: DeepPartial_87<KeyRequest>): KeyRequest;
45024
45397
  };
45025
45398
  readonly requestStream: false;
45026
45399
  readonly responseType: {
@@ -45047,8 +45420,8 @@ declare const RedisAPIDefinition: {
45047
45420
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRangeRequest;
45048
45421
  fromJSON(object: any): ZRangeRequest;
45049
45422
  toJSON(message: ZRangeRequest): unknown;
45050
- create(base?: DeepPartial_84<ZRangeRequest>): ZRangeRequest;
45051
- fromPartial(object: DeepPartial_84<ZRangeRequest>): ZRangeRequest;
45423
+ create(base?: DeepPartial_87<ZRangeRequest>): ZRangeRequest;
45424
+ fromPartial(object: DeepPartial_87<ZRangeRequest>): ZRangeRequest;
45052
45425
  };
45053
45426
  readonly requestStream: false;
45054
45427
  readonly responseType: {
@@ -45057,8 +45430,8 @@ declare const RedisAPIDefinition: {
45057
45430
  decode(input: _m0.Reader | Uint8Array, length?: number): ZMembers;
45058
45431
  fromJSON(object: any): ZMembers;
45059
45432
  toJSON(message: ZMembers): unknown;
45060
- create(base?: DeepPartial_84<ZMembers>): ZMembers;
45061
- fromPartial(object: DeepPartial_84<ZMembers>): ZMembers;
45433
+ create(base?: DeepPartial_87<ZMembers>): ZMembers;
45434
+ fromPartial(object: DeepPartial_87<ZMembers>): ZMembers;
45062
45435
  };
45063
45436
  readonly responseStream: false;
45064
45437
  readonly options: {};
@@ -45071,8 +45444,8 @@ declare const RedisAPIDefinition: {
45071
45444
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRequest;
45072
45445
  fromJSON(object: any): ZRemRequest;
45073
45446
  toJSON(message: ZRemRequest): unknown;
45074
- create(base?: DeepPartial_84<ZRemRequest>): ZRemRequest;
45075
- fromPartial(object: DeepPartial_84<ZRemRequest>): ZRemRequest;
45447
+ create(base?: DeepPartial_87<ZRemRequest>): ZRemRequest;
45448
+ fromPartial(object: DeepPartial_87<ZRemRequest>): ZRemRequest;
45076
45449
  };
45077
45450
  readonly requestStream: false;
45078
45451
  readonly responseType: {
@@ -45099,8 +45472,8 @@ declare const RedisAPIDefinition: {
45099
45472
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRangeByLexRequest;
45100
45473
  fromJSON(object: any): ZRemRangeByLexRequest;
45101
45474
  toJSON(message: ZRemRangeByLexRequest): unknown;
45102
- create(base?: DeepPartial_84<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
45103
- fromPartial(object: DeepPartial_84<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
45475
+ create(base?: DeepPartial_87<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
45476
+ fromPartial(object: DeepPartial_87<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
45104
45477
  };
45105
45478
  readonly requestStream: false;
45106
45479
  readonly responseType: {
@@ -45127,8 +45500,8 @@ declare const RedisAPIDefinition: {
45127
45500
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRangeByRankRequest;
45128
45501
  fromJSON(object: any): ZRemRangeByRankRequest;
45129
45502
  toJSON(message: ZRemRangeByRankRequest): unknown;
45130
- create(base?: DeepPartial_84<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
45131
- fromPartial(object: DeepPartial_84<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
45503
+ create(base?: DeepPartial_87<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
45504
+ fromPartial(object: DeepPartial_87<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
45132
45505
  };
45133
45506
  readonly requestStream: false;
45134
45507
  readonly responseType: {
@@ -45155,8 +45528,8 @@ declare const RedisAPIDefinition: {
45155
45528
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRangeByScoreRequest;
45156
45529
  fromJSON(object: any): ZRemRangeByScoreRequest;
45157
45530
  toJSON(message: ZRemRangeByScoreRequest): unknown;
45158
- create(base?: DeepPartial_84<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
45159
- fromPartial(object: DeepPartial_84<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
45531
+ create(base?: DeepPartial_87<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
45532
+ fromPartial(object: DeepPartial_87<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
45160
45533
  };
45161
45534
  readonly requestStream: false;
45162
45535
  readonly responseType: {
@@ -45183,8 +45556,8 @@ declare const RedisAPIDefinition: {
45183
45556
  decode(input: _m0.Reader | Uint8Array, length?: number): ZScoreRequest;
45184
45557
  fromJSON(object: any): ZScoreRequest;
45185
45558
  toJSON(message: ZScoreRequest): unknown;
45186
- create(base?: DeepPartial_84<ZScoreRequest>): ZScoreRequest;
45187
- fromPartial(object: DeepPartial_84<ZScoreRequest>): ZScoreRequest;
45559
+ create(base?: DeepPartial_87<ZScoreRequest>): ZScoreRequest;
45560
+ fromPartial(object: DeepPartial_87<ZScoreRequest>): ZScoreRequest;
45188
45561
  };
45189
45562
  readonly requestStream: false;
45190
45563
  readonly responseType: {
@@ -45211,8 +45584,8 @@ declare const RedisAPIDefinition: {
45211
45584
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRankRequest;
45212
45585
  fromJSON(object: any): ZRankRequest;
45213
45586
  toJSON(message: ZRankRequest): unknown;
45214
- create(base?: DeepPartial_84<ZRankRequest>): ZRankRequest;
45215
- fromPartial(object: DeepPartial_84<ZRankRequest>): ZRankRequest;
45587
+ create(base?: DeepPartial_87<ZRankRequest>): ZRankRequest;
45588
+ fromPartial(object: DeepPartial_87<ZRankRequest>): ZRankRequest;
45216
45589
  };
45217
45590
  readonly requestStream: false;
45218
45591
  readonly responseType: {
@@ -45239,8 +45612,8 @@ declare const RedisAPIDefinition: {
45239
45612
  decode(input: _m0.Reader | Uint8Array, length?: number): ZIncrByRequest;
45240
45613
  fromJSON(object: any): ZIncrByRequest;
45241
45614
  toJSON(message: ZIncrByRequest): unknown;
45242
- create(base?: DeepPartial_84<ZIncrByRequest>): ZIncrByRequest;
45243
- fromPartial(object: DeepPartial_84<ZIncrByRequest>): ZIncrByRequest;
45615
+ create(base?: DeepPartial_87<ZIncrByRequest>): ZIncrByRequest;
45616
+ fromPartial(object: DeepPartial_87<ZIncrByRequest>): ZIncrByRequest;
45244
45617
  };
45245
45618
  readonly requestStream: false;
45246
45619
  readonly responseType: {
@@ -45267,8 +45640,8 @@ declare const RedisAPIDefinition: {
45267
45640
  decode(input: _m0.Reader | Uint8Array, length?: number): ZScanRequest;
45268
45641
  fromJSON(object: any): ZScanRequest;
45269
45642
  toJSON(message: ZScanRequest): unknown;
45270
- create(base?: DeepPartial_84<ZScanRequest>): ZScanRequest;
45271
- fromPartial(object: DeepPartial_84<ZScanRequest>): ZScanRequest;
45643
+ create(base?: DeepPartial_87<ZScanRequest>): ZScanRequest;
45644
+ fromPartial(object: DeepPartial_87<ZScanRequest>): ZScanRequest;
45272
45645
  };
45273
45646
  readonly requestStream: false;
45274
45647
  readonly responseType: {
@@ -45277,8 +45650,8 @@ declare const RedisAPIDefinition: {
45277
45650
  decode(input: _m0.Reader | Uint8Array, length?: number): ZScanResponse;
45278
45651
  fromJSON(object: any): ZScanResponse;
45279
45652
  toJSON(message: ZScanResponse): unknown;
45280
- create(base?: DeepPartial_84<ZScanResponse>): ZScanResponse;
45281
- fromPartial(object: DeepPartial_84<ZScanResponse>): ZScanResponse;
45653
+ create(base?: DeepPartial_87<ZScanResponse>): ZScanResponse;
45654
+ fromPartial(object: DeepPartial_87<ZScanResponse>): ZScanResponse;
45282
45655
  };
45283
45656
  readonly responseStream: false;
45284
45657
  readonly options: {};
@@ -45563,8 +45936,8 @@ declare const RedisFieldValue: {
45563
45936
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisFieldValue;
45564
45937
  fromJSON(object: any): RedisFieldValue;
45565
45938
  toJSON(message: RedisFieldValue): unknown;
45566
- create(base?: DeepPartial_84<RedisFieldValue>): RedisFieldValue;
45567
- fromPartial(object: DeepPartial_84<RedisFieldValue>): RedisFieldValue;
45939
+ create(base?: DeepPartial_87<RedisFieldValue>): RedisFieldValue;
45940
+ fromPartial(object: DeepPartial_87<RedisFieldValue>): RedisFieldValue;
45568
45941
  };
45569
45942
 
45570
45943
  declare interface RedisFieldValues {
@@ -45579,8 +45952,8 @@ declare const RedisFieldValues: {
45579
45952
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisFieldValues;
45580
45953
  fromJSON(object: any): RedisFieldValues;
45581
45954
  toJSON(message: RedisFieldValues): unknown;
45582
- create(base?: DeepPartial_84<RedisFieldValues>): RedisFieldValues;
45583
- fromPartial(object: DeepPartial_84<RedisFieldValues>): RedisFieldValues;
45955
+ create(base?: DeepPartial_87<RedisFieldValues>): RedisFieldValues;
45956
+ fromPartial(object: DeepPartial_87<RedisFieldValues>): RedisFieldValues;
45584
45957
  };
45585
45958
 
45586
45959
  declare interface RedisFieldValues_FieldValuesEntry {
@@ -45594,8 +45967,8 @@ declare const RedisFieldValues_FieldValuesEntry: {
45594
45967
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisFieldValues_FieldValuesEntry;
45595
45968
  fromJSON(object: any): RedisFieldValues_FieldValuesEntry;
45596
45969
  toJSON(message: RedisFieldValues_FieldValuesEntry): unknown;
45597
- create(base?: DeepPartial_84<RedisFieldValues_FieldValuesEntry>): RedisFieldValues_FieldValuesEntry;
45598
- fromPartial(object: DeepPartial_84<RedisFieldValues_FieldValuesEntry>): RedisFieldValues_FieldValuesEntry;
45970
+ create(base?: DeepPartial_87<RedisFieldValues_FieldValuesEntry>): RedisFieldValues_FieldValuesEntry;
45971
+ fromPartial(object: DeepPartial_87<RedisFieldValues_FieldValuesEntry>): RedisFieldValues_FieldValuesEntry;
45599
45972
  };
45600
45973
 
45601
45974
  /**
@@ -45626,8 +45999,8 @@ declare const RedisKeyValue: {
45626
45999
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisKeyValue;
45627
46000
  fromJSON(object: any): RedisKeyValue;
45628
46001
  toJSON(message: RedisKeyValue): unknown;
45629
- create(base?: DeepPartial_84<RedisKeyValue>): RedisKeyValue;
45630
- fromPartial(object: DeepPartial_84<RedisKeyValue>): RedisKeyValue;
46002
+ create(base?: DeepPartial_87<RedisKeyValue>): RedisKeyValue;
46003
+ fromPartial(object: DeepPartial_87<RedisKeyValue>): RedisKeyValue;
45631
46004
  };
45632
46005
 
45633
46006
  declare interface RedisValues {
@@ -45640,8 +46013,8 @@ declare const RedisValues: {
45640
46013
  decode(input: _m0.Reader | Uint8Array, length?: number): RedisValues;
45641
46014
  fromJSON(object: any): RedisValues;
45642
46015
  toJSON(message: RedisValues): unknown;
45643
- create(base?: DeepPartial_84<RedisValues>): RedisValues;
45644
- fromPartial(object: DeepPartial_84<RedisValues>): RedisValues;
46016
+ create(base?: DeepPartial_87<RedisValues>): RedisValues;
46017
+ fromPartial(object: DeepPartial_87<RedisValues>): RedisValues;
45645
46018
  };
45646
46019
 
45647
46020
  export declare type RelationshipType = 'moderator_invite' | 'contributor' | 'banned' | 'muted' | 'wikibanned' | 'wikicontributor';
@@ -45771,8 +46144,8 @@ declare const RemoteLogConsumerDefinition: {
45771
46144
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogQuery;
45772
46145
  fromJSON(object: any): RemoteLogQuery;
45773
46146
  toJSON(message: RemoteLogQuery): unknown;
45774
- create(base?: DeepPartial_85<RemoteLogQuery>): RemoteLogQuery;
45775
- fromPartial(object: DeepPartial_85<RemoteLogQuery>): RemoteLogQuery;
46147
+ create(base?: DeepPartial_88<RemoteLogQuery>): RemoteLogQuery;
46148
+ fromPartial(object: DeepPartial_88<RemoteLogQuery>): RemoteLogQuery;
45776
46149
  };
45777
46150
  readonly requestStream: false;
45778
46151
  readonly responseType: {
@@ -45781,8 +46154,8 @@ declare const RemoteLogConsumerDefinition: {
45781
46154
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogMessage;
45782
46155
  fromJSON(object: any): RemoteLogMessage;
45783
46156
  toJSON(message: RemoteLogMessage): unknown;
45784
- create(base?: DeepPartial_85<RemoteLogMessage>): RemoteLogMessage;
45785
- fromPartial(object: DeepPartial_85<RemoteLogMessage>): RemoteLogMessage;
46157
+ create(base?: DeepPartial_88<RemoteLogMessage>): RemoteLogMessage;
46158
+ fromPartial(object: DeepPartial_88<RemoteLogMessage>): RemoteLogMessage;
45786
46159
  };
45787
46160
  readonly responseStream: true;
45788
46161
  readonly options: {};
@@ -45803,8 +46176,8 @@ declare const RemoteLogInstallationFilter: {
45803
46176
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogInstallationFilter;
45804
46177
  fromJSON(object: any): RemoteLogInstallationFilter;
45805
46178
  toJSON(message: RemoteLogInstallationFilter): unknown;
45806
- create(base?: DeepPartial_85<RemoteLogInstallationFilter>): RemoteLogInstallationFilter;
45807
- fromPartial(object: DeepPartial_85<RemoteLogInstallationFilter>): RemoteLogInstallationFilter;
46179
+ create(base?: DeepPartial_88<RemoteLogInstallationFilter>): RemoteLogInstallationFilter;
46180
+ fromPartial(object: DeepPartial_88<RemoteLogInstallationFilter>): RemoteLogInstallationFilter;
45808
46181
  };
45809
46182
 
45810
46183
  declare interface RemoteLogMessage {
@@ -45820,8 +46193,8 @@ declare const RemoteLogMessage: {
45820
46193
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogMessage;
45821
46194
  fromJSON(object: any): RemoteLogMessage;
45822
46195
  toJSON(message: RemoteLogMessage): unknown;
45823
- create(base?: DeepPartial_85<RemoteLogMessage>): RemoteLogMessage;
45824
- fromPartial(object: DeepPartial_85<RemoteLogMessage>): RemoteLogMessage;
46196
+ create(base?: DeepPartial_88<RemoteLogMessage>): RemoteLogMessage;
46197
+ fromPartial(object: DeepPartial_88<RemoteLogMessage>): RemoteLogMessage;
45825
46198
  };
45826
46199
 
45827
46200
  declare interface RemoteLogMessages {
@@ -45834,8 +46207,8 @@ declare const RemoteLogMessages: {
45834
46207
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogMessages;
45835
46208
  fromJSON(object: any): RemoteLogMessages;
45836
46209
  toJSON(message: RemoteLogMessages): unknown;
45837
- create(base?: DeepPartial_85<RemoteLogMessages>): RemoteLogMessages;
45838
- fromPartial(object: DeepPartial_85<RemoteLogMessages>): RemoteLogMessages;
46210
+ create(base?: DeepPartial_88<RemoteLogMessages>): RemoteLogMessages;
46211
+ fromPartial(object: DeepPartial_88<RemoteLogMessages>): RemoteLogMessages;
45839
46212
  };
45840
46213
 
45841
46214
  declare interface RemoteLogPublisher {
@@ -45886,8 +46259,8 @@ declare const RemoteLogPublisherDefinition: {
45886
46259
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogMessage;
45887
46260
  fromJSON(object: any): RemoteLogMessage;
45888
46261
  toJSON(message: RemoteLogMessage): unknown;
45889
- create(base?: DeepPartial_85<RemoteLogMessage>): RemoteLogMessage;
45890
- fromPartial(object: DeepPartial_85<RemoteLogMessage>): RemoteLogMessage;
46262
+ create(base?: DeepPartial_88<RemoteLogMessage>): RemoteLogMessage;
46263
+ fromPartial(object: DeepPartial_88<RemoteLogMessage>): RemoteLogMessage;
45891
46264
  };
45892
46265
  readonly requestStream: false;
45893
46266
  readonly responseType: {
@@ -45896,8 +46269,8 @@ declare const RemoteLogPublisherDefinition: {
45896
46269
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogPutResponse;
45897
46270
  fromJSON(_: any): RemoteLogPutResponse;
45898
46271
  toJSON(_: RemoteLogPutResponse): unknown;
45899
- create(base?: DeepPartial_85<RemoteLogPutResponse>): RemoteLogPutResponse;
45900
- fromPartial(_: DeepPartial_85<RemoteLogPutResponse>): RemoteLogPutResponse;
46272
+ create(base?: DeepPartial_88<RemoteLogPutResponse>): RemoteLogPutResponse;
46273
+ fromPartial(_: DeepPartial_88<RemoteLogPutResponse>): RemoteLogPutResponse;
45901
46274
  };
45902
46275
  readonly responseStream: false;
45903
46276
  readonly options: {};
@@ -45910,8 +46283,8 @@ declare const RemoteLogPublisherDefinition: {
45910
46283
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogMessages;
45911
46284
  fromJSON(object: any): RemoteLogMessages;
45912
46285
  toJSON(message: RemoteLogMessages): unknown;
45913
- create(base?: DeepPartial_85<RemoteLogMessages>): RemoteLogMessages;
45914
- fromPartial(object: DeepPartial_85<RemoteLogMessages>): RemoteLogMessages;
46286
+ create(base?: DeepPartial_88<RemoteLogMessages>): RemoteLogMessages;
46287
+ fromPartial(object: DeepPartial_88<RemoteLogMessages>): RemoteLogMessages;
45915
46288
  };
45916
46289
  readonly requestStream: false;
45917
46290
  readonly responseType: {
@@ -45920,8 +46293,8 @@ declare const RemoteLogPublisherDefinition: {
45920
46293
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogPutResponse;
45921
46294
  fromJSON(_: any): RemoteLogPutResponse;
45922
46295
  toJSON(_: RemoteLogPutResponse): unknown;
45923
- create(base?: DeepPartial_85<RemoteLogPutResponse>): RemoteLogPutResponse;
45924
- fromPartial(_: DeepPartial_85<RemoteLogPutResponse>): RemoteLogPutResponse;
46296
+ create(base?: DeepPartial_88<RemoteLogPutResponse>): RemoteLogPutResponse;
46297
+ fromPartial(_: DeepPartial_88<RemoteLogPutResponse>): RemoteLogPutResponse;
45925
46298
  };
45926
46299
  readonly responseStream: false;
45927
46300
  readonly options: {};
@@ -45940,8 +46313,8 @@ declare const RemoteLogPutResponse: {
45940
46313
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogPutResponse;
45941
46314
  fromJSON(_: any): RemoteLogPutResponse;
45942
46315
  toJSON(_: RemoteLogPutResponse): unknown;
45943
- create(base?: DeepPartial_85<RemoteLogPutResponse>): RemoteLogPutResponse;
45944
- fromPartial(_: DeepPartial_85<RemoteLogPutResponse>): RemoteLogPutResponse;
46316
+ create(base?: DeepPartial_88<RemoteLogPutResponse>): RemoteLogPutResponse;
46317
+ fromPartial(_: DeepPartial_88<RemoteLogPutResponse>): RemoteLogPutResponse;
45945
46318
  };
45946
46319
 
45947
46320
  declare interface RemoteLogQuery {
@@ -45957,8 +46330,8 @@ declare const RemoteLogQuery: {
45957
46330
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogQuery;
45958
46331
  fromJSON(object: any): RemoteLogQuery;
45959
46332
  toJSON(message: RemoteLogQuery): unknown;
45960
- create(base?: DeepPartial_85<RemoteLogQuery>): RemoteLogQuery;
45961
- fromPartial(object: DeepPartial_85<RemoteLogQuery>): RemoteLogQuery;
46333
+ create(base?: DeepPartial_88<RemoteLogQuery>): RemoteLogQuery;
46334
+ fromPartial(object: DeepPartial_88<RemoteLogQuery>): RemoteLogQuery;
45962
46335
  };
45963
46336
 
45964
46337
  /**
@@ -45976,8 +46349,8 @@ declare const RemoteLogSubredditAppNameFilter: {
45976
46349
  decode(input: _m0.Reader | Uint8Array, length?: number): RemoteLogSubredditAppNameFilter;
45977
46350
  fromJSON(object: any): RemoteLogSubredditAppNameFilter;
45978
46351
  toJSON(message: RemoteLogSubredditAppNameFilter): unknown;
45979
- create(base?: DeepPartial_85<RemoteLogSubredditAppNameFilter>): RemoteLogSubredditAppNameFilter;
45980
- fromPartial(object: DeepPartial_85<RemoteLogSubredditAppNameFilter>): RemoteLogSubredditAppNameFilter;
46352
+ create(base?: DeepPartial_88<RemoteLogSubredditAppNameFilter>): RemoteLogSubredditAppNameFilter;
46353
+ fromPartial(object: DeepPartial_88<RemoteLogSubredditAppNameFilter>): RemoteLogSubredditAppNameFilter;
45981
46354
  };
45982
46355
 
45983
46356
  declare enum RemoteLogType {
@@ -46022,8 +46395,8 @@ declare const RemovePostInCollectionRequest: {
46022
46395
  decode(input: _m0.Reader | Uint8Array, length?: number): RemovePostInCollectionRequest;
46023
46396
  fromJSON(object: any): RemovePostInCollectionRequest;
46024
46397
  toJSON(message: RemovePostInCollectionRequest): unknown;
46025
- create(base?: DeepPartial_79<RemovePostInCollectionRequest>): RemovePostInCollectionRequest;
46026
- fromPartial(object: DeepPartial_79<RemovePostInCollectionRequest>): RemovePostInCollectionRequest;
46398
+ create(base?: DeepPartial_82<RemovePostInCollectionRequest>): RemovePostInCollectionRequest;
46399
+ fromPartial(object: DeepPartial_82<RemovePostInCollectionRequest>): RemovePostInCollectionRequest;
46027
46400
  };
46028
46401
 
46029
46402
  export declare type RemoveRelationshipOptions = {
@@ -46118,8 +46491,8 @@ declare const ReorderCollectionRequest: {
46118
46491
  decode(input: _m0.Reader | Uint8Array, length?: number): ReorderCollectionRequest;
46119
46492
  fromJSON(object: any): ReorderCollectionRequest;
46120
46493
  toJSON(message: ReorderCollectionRequest): unknown;
46121
- create(base?: DeepPartial_79<ReorderCollectionRequest>): ReorderCollectionRequest;
46122
- fromPartial(object: DeepPartial_79<ReorderCollectionRequest>): ReorderCollectionRequest;
46494
+ create(base?: DeepPartial_82<ReorderCollectionRequest>): ReorderCollectionRequest;
46495
+ fromPartial(object: DeepPartial_82<ReorderCollectionRequest>): ReorderCollectionRequest;
46123
46496
  };
46124
46497
 
46125
46498
  export declare type ReplyToCommentOptions = CommentSubmissionOptions;
@@ -46206,8 +46579,8 @@ declare const ReportUserRequest: {
46206
46579
  decode(input: _m0.Reader | Uint8Array, length?: number): ReportUserRequest;
46207
46580
  fromJSON(object: any): ReportUserRequest;
46208
46581
  toJSON(message: ReportUserRequest): unknown;
46209
- create(base?: DeepPartial_98<ReportUserRequest>): ReportUserRequest;
46210
- fromPartial(object: DeepPartial_98<ReportUserRequest>): ReportUserRequest;
46582
+ create(base?: DeepPartial_101<ReportUserRequest>): ReportUserRequest;
46583
+ fromPartial(object: DeepPartial_101<ReportUserRequest>): ReportUserRequest;
46211
46584
  };
46212
46585
 
46213
46586
  declare interface RequestData {
@@ -46599,8 +46972,8 @@ declare const Response_2: {
46599
46972
  decode(input: _m0.Reader | Uint8Array, length?: number): Response_2;
46600
46973
  fromJSON(object: any): Response_2;
46601
46974
  toJSON(message: Response_2): unknown;
46602
- create(base?: DeepPartial_81<Response_2>): Response_2;
46603
- fromPartial(object: DeepPartial_81<Response_2>): Response_2;
46975
+ create(base?: DeepPartial_84<Response_2>): Response_2;
46976
+ fromPartial(object: DeepPartial_84<Response_2>): Response_2;
46604
46977
  };
46605
46978
 
46606
46979
  declare interface RevertWikiPageRequest {
@@ -46930,11 +47303,15 @@ declare interface Rpc_65 {
46930
47303
  request(service: string, method: string, data: Uint8Array, metadata?: Metadata): Promise<Uint8Array>;
46931
47304
  }
46932
47305
 
47306
+ declare interface Rpc_66 {
47307
+ request(service: string, method: string, data: Uint8Array, metadata?: Metadata): Promise<Uint8Array>;
47308
+ }
47309
+
46933
47310
  /**
46934
47311
  * Common denominator remote procedure call interface. Some services only
46935
47312
  * require a partial implementation.
46936
47313
  */
46937
- declare type Rpc_66 = {
47314
+ declare type Rpc_67 = {
46938
47315
  /** Make a unary request */
46939
47316
  request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
46940
47317
  /** Make a request that returns a server stream */
@@ -47091,8 +47468,8 @@ declare const RuntimeActorDefinition: {
47091
47468
  decode(input: _m0.Reader | Uint8Array, length?: number): WorkerQuery;
47092
47469
  fromJSON(object: any): WorkerQuery;
47093
47470
  toJSON(message: WorkerQuery): unknown;
47094
- create(base?: DeepPartial_104<WorkerQuery>): WorkerQuery;
47095
- fromPartial(object: DeepPartial_104<WorkerQuery>): WorkerQuery;
47471
+ create(base?: DeepPartial_107<WorkerQuery>): WorkerQuery;
47472
+ fromPartial(object: DeepPartial_107<WorkerQuery>): WorkerQuery;
47096
47473
  };
47097
47474
  readonly requestStream: false;
47098
47475
  readonly responseType: {
@@ -47145,8 +47522,8 @@ declare const ScheduledAction: {
47145
47522
  decode(input: _m0.Reader | Uint8Array, length?: number): ScheduledAction;
47146
47523
  fromJSON(object: any): ScheduledAction;
47147
47524
  toJSON(message: ScheduledAction): unknown;
47148
- create(base?: DeepPartial_86<ScheduledAction>): ScheduledAction;
47149
- fromPartial(object: DeepPartial_86<ScheduledAction>): ScheduledAction;
47525
+ create(base?: DeepPartial_89<ScheduledAction>): ScheduledAction;
47526
+ fromPartial(object: DeepPartial_89<ScheduledAction>): ScheduledAction;
47150
47527
  };
47151
47528
 
47152
47529
  declare interface ScheduledActionRequest {
@@ -47164,8 +47541,8 @@ declare const ScheduledActionRequest: {
47164
47541
  decode(input: _m0.Reader | Uint8Array, length?: number): ScheduledActionRequest;
47165
47542
  fromJSON(object: any): ScheduledActionRequest;
47166
47543
  toJSON(message: ScheduledActionRequest): unknown;
47167
- create(base?: DeepPartial_87<ScheduledActionRequest>): ScheduledActionRequest;
47168
- fromPartial(object: DeepPartial_87<ScheduledActionRequest>): ScheduledActionRequest;
47544
+ create(base?: DeepPartial_90<ScheduledActionRequest>): ScheduledActionRequest;
47545
+ fromPartial(object: DeepPartial_90<ScheduledActionRequest>): ScheduledActionRequest;
47169
47546
  };
47170
47547
 
47171
47548
  declare interface ScheduledActionResponse {
@@ -47179,8 +47556,8 @@ declare const ScheduledActionResponse: {
47179
47556
  decode(input: _m0.Reader | Uint8Array, length?: number): ScheduledActionResponse;
47180
47557
  fromJSON(object: any): ScheduledActionResponse;
47181
47558
  toJSON(message: ScheduledActionResponse): unknown;
47182
- create(base?: DeepPartial_87<ScheduledActionResponse>): ScheduledActionResponse;
47183
- fromPartial(object: DeepPartial_87<ScheduledActionResponse>): ScheduledActionResponse;
47559
+ create(base?: DeepPartial_90<ScheduledActionResponse>): ScheduledActionResponse;
47560
+ fromPartial(object: DeepPartial_90<ScheduledActionResponse>): ScheduledActionResponse;
47184
47561
  };
47185
47562
 
47186
47563
  export declare type ScheduledCronJob = {
@@ -47312,8 +47689,8 @@ declare const SchedulerDefinition: {
47312
47689
  decode(input: _m0.Reader | Uint8Array, length?: number): ScheduledActionRequest;
47313
47690
  fromJSON(object: any): ScheduledActionRequest;
47314
47691
  toJSON(message: ScheduledActionRequest): unknown;
47315
- create(base?: DeepPartial_87<ScheduledActionRequest>): ScheduledActionRequest;
47316
- fromPartial(object: DeepPartial_87<ScheduledActionRequest>): ScheduledActionRequest;
47692
+ create(base?: DeepPartial_90<ScheduledActionRequest>): ScheduledActionRequest;
47693
+ fromPartial(object: DeepPartial_90<ScheduledActionRequest>): ScheduledActionRequest;
47317
47694
  };
47318
47695
  readonly requestStream: false;
47319
47696
  readonly responseType: {
@@ -47322,8 +47699,8 @@ declare const SchedulerDefinition: {
47322
47699
  decode(input: _m0.Reader | Uint8Array, length?: number): ScheduledActionResponse;
47323
47700
  fromJSON(object: any): ScheduledActionResponse;
47324
47701
  toJSON(message: ScheduledActionResponse): unknown;
47325
- create(base?: DeepPartial_87<ScheduledActionResponse>): ScheduledActionResponse;
47326
- fromPartial(object: DeepPartial_87<ScheduledActionResponse>): ScheduledActionResponse;
47702
+ create(base?: DeepPartial_90<ScheduledActionResponse>): ScheduledActionResponse;
47703
+ fromPartial(object: DeepPartial_90<ScheduledActionResponse>): ScheduledActionResponse;
47327
47704
  };
47328
47705
  readonly responseStream: false;
47329
47706
  readonly options: {};
@@ -47337,8 +47714,8 @@ declare const SchedulerDefinition: {
47337
47714
  decode(input: _m0.Reader | Uint8Array, length?: number): CancelActionRequest;
47338
47715
  fromJSON(object: any): CancelActionRequest;
47339
47716
  toJSON(message: CancelActionRequest): unknown;
47340
- create(base?: DeepPartial_87<CancelActionRequest>): CancelActionRequest;
47341
- fromPartial(object: DeepPartial_87<CancelActionRequest>): CancelActionRequest;
47717
+ create(base?: DeepPartial_90<CancelActionRequest>): CancelActionRequest;
47718
+ fromPartial(object: DeepPartial_90<CancelActionRequest>): CancelActionRequest;
47342
47719
  };
47343
47720
  readonly requestStream: false;
47344
47721
  readonly responseType: {
@@ -47362,8 +47739,8 @@ declare const SchedulerDefinition: {
47362
47739
  decode(input: _m0.Reader | Uint8Array, length?: number): ListActionRequest;
47363
47740
  fromJSON(object: any): ListActionRequest;
47364
47741
  toJSON(message: ListActionRequest): unknown;
47365
- create(base?: DeepPartial_87<ListActionRequest>): ListActionRequest;
47366
- fromPartial(object: DeepPartial_87<ListActionRequest>): ListActionRequest;
47742
+ create(base?: DeepPartial_90<ListActionRequest>): ListActionRequest;
47743
+ fromPartial(object: DeepPartial_90<ListActionRequest>): ListActionRequest;
47367
47744
  };
47368
47745
  readonly requestStream: false;
47369
47746
  readonly responseType: {
@@ -47372,8 +47749,8 @@ declare const SchedulerDefinition: {
47372
47749
  decode(input: _m0.Reader | Uint8Array, length?: number): ListActionResponse;
47373
47750
  fromJSON(object: any): ListActionResponse;
47374
47751
  toJSON(message: ListActionResponse): unknown;
47375
- create(base?: DeepPartial_87<ListActionResponse>): ListActionResponse;
47376
- fromPartial(object: DeepPartial_87<ListActionResponse>): ListActionResponse;
47752
+ create(base?: DeepPartial_90<ListActionResponse>): ListActionResponse;
47753
+ fromPartial(object: DeepPartial_90<ListActionResponse>): ListActionResponse;
47377
47754
  };
47378
47755
  readonly responseStream: false;
47379
47756
  readonly options: {};
@@ -47632,8 +48009,8 @@ declare const ServiceDescriptorProto: {
47632
48009
  decode(input: _m0.Reader | Uint8Array, length?: number): ServiceDescriptorProto;
47633
48010
  fromJSON(object: any): ServiceDescriptorProto;
47634
48011
  toJSON(message: ServiceDescriptorProto): unknown;
47635
- create(base?: DeepPartial_102<ServiceDescriptorProto>): ServiceDescriptorProto;
47636
- fromPartial(object: DeepPartial_102<ServiceDescriptorProto>): ServiceDescriptorProto;
48012
+ create(base?: DeepPartial_105<ServiceDescriptorProto>): ServiceDescriptorProto;
48013
+ fromPartial(object: DeepPartial_105<ServiceDescriptorProto>): ServiceDescriptorProto;
47637
48014
  };
47638
48015
 
47639
48016
  declare interface ServiceOptions {
@@ -47656,8 +48033,8 @@ declare const ServiceOptions: {
47656
48033
  decode(input: _m0.Reader | Uint8Array, length?: number): ServiceOptions;
47657
48034
  fromJSON(object: any): ServiceOptions;
47658
48035
  toJSON(message: ServiceOptions): unknown;
47659
- create(base?: DeepPartial_102<ServiceOptions>): ServiceOptions;
47660
- fromPartial(object: DeepPartial_102<ServiceOptions>): ServiceOptions;
48036
+ create(base?: DeepPartial_105<ServiceOptions>): ServiceOptions;
48037
+ fromPartial(object: DeepPartial_105<ServiceOptions>): ServiceOptions;
47661
48038
  };
47662
48039
 
47663
48040
  declare interface SetContestModeRequest {
@@ -47773,8 +48150,8 @@ declare const SetPermissionsRequest: {
47773
48150
  decode(input: _m0.Reader | Uint8Array, length?: number): SetPermissionsRequest;
47774
48151
  fromJSON(object: any): SetPermissionsRequest;
47775
48152
  toJSON(message: SetPermissionsRequest): unknown;
47776
- create(base?: DeepPartial_98<SetPermissionsRequest>): SetPermissionsRequest;
47777
- fromPartial(object: DeepPartial_98<SetPermissionsRequest>): SetPermissionsRequest;
48153
+ create(base?: DeepPartial_101<SetPermissionsRequest>): SetPermissionsRequest;
48154
+ fromPartial(object: DeepPartial_101<SetPermissionsRequest>): SetPermissionsRequest;
47778
48155
  };
47779
48156
 
47780
48157
  export declare type SetPostFlairOptions = SetFlairOptions & {
@@ -47797,8 +48174,8 @@ declare const SetRangeRequest: {
47797
48174
  decode(input: _m0.Reader | Uint8Array, length?: number): SetRangeRequest;
47798
48175
  fromJSON(object: any): SetRangeRequest;
47799
48176
  toJSON(message: SetRangeRequest): unknown;
47800
- create(base?: DeepPartial_84<SetRangeRequest>): SetRangeRequest;
47801
- fromPartial(object: DeepPartial_84<SetRangeRequest>): SetRangeRequest;
48177
+ create(base?: DeepPartial_87<SetRangeRequest>): SetRangeRequest;
48178
+ fromPartial(object: DeepPartial_87<SetRangeRequest>): SetRangeRequest;
47802
48179
  };
47803
48180
 
47804
48181
  declare interface SetRequest {
@@ -47821,8 +48198,8 @@ declare const SetRequest: {
47821
48198
  decode(input: _m0.Reader | Uint8Array, length?: number): SetRequest;
47822
48199
  fromJSON(object: any): SetRequest;
47823
48200
  toJSON(message: SetRequest): unknown;
47824
- create(base?: DeepPartial_84<SetRequest>): SetRequest;
47825
- fromPartial(object: DeepPartial_84<SetRequest>): SetRequest;
48201
+ create(base?: DeepPartial_87<SetRequest>): SetRequest;
48202
+ fromPartial(object: DeepPartial_87<SetRequest>): SetRequest;
47826
48203
  };
47827
48204
 
47828
48205
  export declare type SetStateAction<S> = S | ((prevState: S) => S);
@@ -47952,8 +48329,8 @@ declare const SettingsDefinition: {
47952
48329
  decode(input: _m0.Reader | Uint8Array, length?: number): SettingsRequest;
47953
48330
  fromJSON(_: any): SettingsRequest;
47954
48331
  toJSON(_: SettingsRequest): unknown;
47955
- create(base?: DeepPartial_88<SettingsRequest>): SettingsRequest;
47956
- fromPartial(_: DeepPartial_88<SettingsRequest>): SettingsRequest;
48332
+ create(base?: DeepPartial_91<SettingsRequest>): SettingsRequest;
48333
+ fromPartial(_: DeepPartial_91<SettingsRequest>): SettingsRequest;
47957
48334
  };
47958
48335
  readonly requestStream: false;
47959
48336
  readonly responseType: {
@@ -47962,8 +48339,8 @@ declare const SettingsDefinition: {
47962
48339
  decode(input: _m0.Reader | Uint8Array, length?: number): SettingsResponse;
47963
48340
  fromJSON(object: any): SettingsResponse;
47964
48341
  toJSON(message: SettingsResponse): unknown;
47965
- create(base?: DeepPartial_88<SettingsResponse>): SettingsResponse;
47966
- fromPartial(object: DeepPartial_88<SettingsResponse>): SettingsResponse;
48342
+ create(base?: DeepPartial_91<SettingsResponse>): SettingsResponse;
48343
+ fromPartial(object: DeepPartial_91<SettingsResponse>): SettingsResponse;
47967
48344
  };
47968
48345
  readonly responseStream: false;
47969
48346
  readonly options: {};
@@ -47991,8 +48368,8 @@ declare const SettingsRequest: {
47991
48368
  decode(input: _m0.Reader | Uint8Array, length?: number): SettingsRequest;
47992
48369
  fromJSON(_: any): SettingsRequest;
47993
48370
  toJSON(_: SettingsRequest): unknown;
47994
- create(base?: DeepPartial_88<SettingsRequest>): SettingsRequest;
47995
- fromPartial(_: DeepPartial_88<SettingsRequest>): SettingsRequest;
48371
+ create(base?: DeepPartial_91<SettingsRequest>): SettingsRequest;
48372
+ fromPartial(_: DeepPartial_91<SettingsRequest>): SettingsRequest;
47996
48373
  };
47997
48374
 
47998
48375
  declare interface SettingsResponse {
@@ -48010,8 +48387,8 @@ declare const SettingsResponse: {
48010
48387
  decode(input: _m0.Reader | Uint8Array, length?: number): SettingsResponse;
48011
48388
  fromJSON(object: any): SettingsResponse;
48012
48389
  toJSON(message: SettingsResponse): unknown;
48013
- create(base?: DeepPartial_88<SettingsResponse>): SettingsResponse;
48014
- fromPartial(object: DeepPartial_88<SettingsResponse>): SettingsResponse;
48390
+ create(base?: DeepPartial_91<SettingsResponse>): SettingsResponse;
48391
+ fromPartial(object: DeepPartial_91<SettingsResponse>): SettingsResponse;
48015
48392
  };
48016
48393
 
48017
48394
  declare const SettingsServiceName = "devvit.plugin.settings.v1alpha.Settings";
@@ -48037,8 +48414,8 @@ declare const SettingsValues_2: {
48037
48414
  decode(input: _m0.Reader | Uint8Array, length?: number): SettingsValues_2;
48038
48415
  fromJSON(object: any): SettingsValues_2;
48039
48416
  toJSON(message: SettingsValues_2): unknown;
48040
- create(base?: DeepPartial_88<SettingsValues_2>): SettingsValues_2;
48041
- fromPartial(object: DeepPartial_88<SettingsValues_2>): SettingsValues_2;
48417
+ create(base?: DeepPartial_91<SettingsValues_2>): SettingsValues_2;
48418
+ fromPartial(object: DeepPartial_91<SettingsValues_2>): SettingsValues_2;
48042
48419
  };
48043
48420
 
48044
48421
  declare interface SettingsValues_SettingsEntry {
@@ -48052,8 +48429,8 @@ declare const SettingsValues_SettingsEntry: {
48052
48429
  decode(input: _m0.Reader | Uint8Array, length?: number): SettingsValues_SettingsEntry;
48053
48430
  fromJSON(object: any): SettingsValues_SettingsEntry;
48054
48431
  toJSON(message: SettingsValues_SettingsEntry): unknown;
48055
- create(base?: DeepPartial_88<SettingsValues_SettingsEntry>): SettingsValues_SettingsEntry;
48056
- fromPartial(object: DeepPartial_88<SettingsValues_SettingsEntry>): SettingsValues_SettingsEntry;
48432
+ create(base?: DeepPartial_91<SettingsValues_SettingsEntry>): SettingsValues_SettingsEntry;
48433
+ fromPartial(object: DeepPartial_91<SettingsValues_SettingsEntry>): SettingsValues_SettingsEntry;
48057
48434
  };
48058
48435
 
48059
48436
  export declare type SetUserFlairOptions = SetFlairOptions & {
@@ -48362,8 +48739,8 @@ declare const SourceCodeInfo: {
48362
48739
  decode(input: _m0.Reader | Uint8Array, length?: number): SourceCodeInfo;
48363
48740
  fromJSON(object: any): SourceCodeInfo;
48364
48741
  toJSON(message: SourceCodeInfo): unknown;
48365
- create(base?: DeepPartial_102<SourceCodeInfo>): SourceCodeInfo;
48366
- fromPartial(object: DeepPartial_102<SourceCodeInfo>): SourceCodeInfo;
48742
+ create(base?: DeepPartial_105<SourceCodeInfo>): SourceCodeInfo;
48743
+ fromPartial(object: DeepPartial_105<SourceCodeInfo>): SourceCodeInfo;
48367
48744
  };
48368
48745
 
48369
48746
  declare interface SourceCodeInfo_Location {
@@ -48461,8 +48838,8 @@ declare const SourceCodeInfo_Location: {
48461
48838
  decode(input: _m0.Reader | Uint8Array, length?: number): SourceCodeInfo_Location;
48462
48839
  fromJSON(object: any): SourceCodeInfo_Location;
48463
48840
  toJSON(message: SourceCodeInfo_Location): unknown;
48464
- create(base?: DeepPartial_102<SourceCodeInfo_Location>): SourceCodeInfo_Location;
48465
- fromPartial(object: DeepPartial_102<SourceCodeInfo_Location>): SourceCodeInfo_Location;
48841
+ create(base?: DeepPartial_105<SourceCodeInfo_Location>): SourceCodeInfo_Location;
48842
+ fromPartial(object: DeepPartial_105<SourceCodeInfo_Location>): SourceCodeInfo_Location;
48466
48843
  };
48467
48844
 
48468
48845
  declare const SPOILER_TEXT_ELEMENT = "spoilertext";
@@ -48682,8 +49059,8 @@ declare const StorableAction: {
48682
49059
  decode(input: _m0.Reader | Uint8Array, length?: number): StorableAction;
48683
49060
  fromJSON(object: any): StorableAction;
48684
49061
  toJSON(message: StorableAction): unknown;
48685
- create(base?: DeepPartial_87<StorableAction>): StorableAction;
48686
- fromPartial(object: DeepPartial_87<StorableAction>): StorableAction;
49062
+ create(base?: DeepPartial_90<StorableAction>): StorableAction;
49063
+ fromPartial(object: DeepPartial_90<StorableAction>): StorableAction;
48687
49064
  };
48688
49065
 
48689
49066
  declare interface StorableAction_MetadataEntry {
@@ -48697,8 +49074,8 @@ declare const StorableAction_MetadataEntry: {
48697
49074
  decode(input: _m0.Reader | Uint8Array, length?: number): StorableAction_MetadataEntry;
48698
49075
  fromJSON(object: any): StorableAction_MetadataEntry;
48699
49076
  toJSON(message: StorableAction_MetadataEntry): unknown;
48700
- create(base?: DeepPartial_87<StorableAction_MetadataEntry>): StorableAction_MetadataEntry;
48701
- fromPartial(object: DeepPartial_87<StorableAction_MetadataEntry>): StorableAction_MetadataEntry;
49077
+ create(base?: DeepPartial_90<StorableAction_MetadataEntry>): StorableAction_MetadataEntry;
49078
+ fromPartial(object: DeepPartial_90<StorableAction_MetadataEntry>): StorableAction_MetadataEntry;
48702
49079
  };
48703
49080
 
48704
49081
  declare enum StorableAction_State {
@@ -48760,8 +49137,8 @@ declare const StreamBrokerDefinition: {
48760
49137
  decode(input: _m0.Reader | Uint8Array, length?: number): Message;
48761
49138
  fromJSON(object: any): Message;
48762
49139
  toJSON(message: Message): unknown;
48763
- create(base?: DeepPartial_89<Message>): Message;
48764
- fromPartial(object: DeepPartial_89<Message>): Message;
49140
+ create(base?: DeepPartial_92<Message>): Message;
49141
+ fromPartial(object: DeepPartial_92<Message>): Message;
48765
49142
  };
48766
49143
  readonly requestStream: false;
48767
49144
  readonly responseType: {
@@ -48784,8 +49161,8 @@ declare const StreamBrokerDefinition: {
48784
49161
  decode(input: _m0.Reader | Uint8Array, length?: number): Cursor;
48785
49162
  fromJSON(object: any): Cursor;
48786
49163
  toJSON(message: Cursor): unknown;
48787
- create(base?: DeepPartial_89<Cursor>): Cursor;
48788
- fromPartial(object: DeepPartial_89<Cursor>): Cursor;
49164
+ create(base?: DeepPartial_92<Cursor>): Cursor;
49165
+ fromPartial(object: DeepPartial_92<Cursor>): Cursor;
48789
49166
  };
48790
49167
  readonly requestStream: false;
48791
49168
  readonly responseType: {
@@ -48794,8 +49171,8 @@ declare const StreamBrokerDefinition: {
48794
49171
  decode(input: _m0.Reader | Uint8Array, length?: number): Message;
48795
49172
  fromJSON(object: any): Message;
48796
49173
  toJSON(message: Message): unknown;
48797
- create(base?: DeepPartial_89<Message>): Message;
48798
- fromPartial(object: DeepPartial_89<Message>): Message;
49174
+ create(base?: DeepPartial_92<Message>): Message;
49175
+ fromPartial(object: DeepPartial_92<Message>): Message;
48799
49176
  };
48800
49177
  readonly responseStream: true;
48801
49178
  readonly options: {};
@@ -48854,8 +49231,8 @@ declare const StreamsDefinition: {
48854
49231
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
48855
49232
  fromJSON(object: any): TestMessage;
48856
49233
  toJSON(message: TestMessage): unknown;
48857
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
48858
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
49234
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
49235
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
48859
49236
  };
48860
49237
  readonly requestStream: true;
48861
49238
  readonly responseType: {
@@ -48864,8 +49241,8 @@ declare const StreamsDefinition: {
48864
49241
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
48865
49242
  fromJSON(object: any): TestMessage;
48866
49243
  toJSON(message: TestMessage): unknown;
48867
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
48868
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
49244
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
49245
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
48869
49246
  };
48870
49247
  readonly responseStream: true;
48871
49248
  readonly options: {};
@@ -48882,8 +49259,8 @@ declare const StreamsDefinition: {
48882
49259
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
48883
49260
  fromJSON(object: any): TestMessage;
48884
49261
  toJSON(message: TestMessage): unknown;
48885
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
48886
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
49262
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
49263
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
48887
49264
  };
48888
49265
  readonly requestStream: true;
48889
49266
  readonly responseType: {
@@ -48892,8 +49269,8 @@ declare const StreamsDefinition: {
48892
49269
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
48893
49270
  fromJSON(object: any): TestMessage;
48894
49271
  toJSON(message: TestMessage): unknown;
48895
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
48896
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
49272
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
49273
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
48897
49274
  };
48898
49275
  readonly responseStream: false;
48899
49276
  readonly options: {};
@@ -48910,8 +49287,8 @@ declare const StreamsDefinition: {
48910
49287
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
48911
49288
  fromJSON(object: any): TestMessage;
48912
49289
  toJSON(message: TestMessage): unknown;
48913
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
48914
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
49290
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
49291
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
48915
49292
  };
48916
49293
  readonly requestStream: false;
48917
49294
  readonly responseType: {
@@ -48920,8 +49297,8 @@ declare const StreamsDefinition: {
48920
49297
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
48921
49298
  fromJSON(object: any): TestMessage;
48922
49299
  toJSON(message: TestMessage): unknown;
48923
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
48924
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
49300
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
49301
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
48925
49302
  };
48926
49303
  readonly responseStream: true;
48927
49304
  readonly options: {};
@@ -48994,8 +49371,8 @@ declare const Struct: {
48994
49371
  decode(input: _m0.Reader | Uint8Array, length?: number): Struct;
48995
49372
  fromJSON(object: any): Struct;
48996
49373
  toJSON(message: Struct): unknown;
48997
- create(base?: DeepPartial_101<Struct>): Struct;
48998
- fromPartial(object: DeepPartial_101<Struct>): Struct;
49374
+ create(base?: DeepPartial_104<Struct>): Struct;
49375
+ fromPartial(object: DeepPartial_104<Struct>): Struct;
48999
49376
  wrap(object: {
49000
49377
  [key: string]: any;
49001
49378
  } | undefined): Struct;
@@ -49015,8 +49392,8 @@ declare const Struct_FieldsEntry: {
49015
49392
  decode(input: _m0.Reader | Uint8Array, length?: number): Struct_FieldsEntry;
49016
49393
  fromJSON(object: any): Struct_FieldsEntry;
49017
49394
  toJSON(message: Struct_FieldsEntry): unknown;
49018
- create(base?: DeepPartial_101<Struct_FieldsEntry>): Struct_FieldsEntry;
49019
- fromPartial(object: DeepPartial_101<Struct_FieldsEntry>): Struct_FieldsEntry;
49395
+ create(base?: DeepPartial_104<Struct_FieldsEntry>): Struct_FieldsEntry;
49396
+ fromPartial(object: DeepPartial_104<Struct_FieldsEntry>): Struct_FieldsEntry;
49020
49397
  };
49021
49398
 
49022
49399
  declare interface StylesheetRequest {
@@ -50139,8 +50516,8 @@ declare const SubredditCollectionsRequest: {
50139
50516
  decode(input: _m0.Reader | Uint8Array, length?: number): SubredditCollectionsRequest;
50140
50517
  fromJSON(object: any): SubredditCollectionsRequest;
50141
50518
  toJSON(message: SubredditCollectionsRequest): unknown;
50142
- create(base?: DeepPartial_79<SubredditCollectionsRequest>): SubredditCollectionsRequest;
50143
- fromPartial(object: DeepPartial_79<SubredditCollectionsRequest>): SubredditCollectionsRequest;
50519
+ create(base?: DeepPartial_82<SubredditCollectionsRequest>): SubredditCollectionsRequest;
50520
+ fromPartial(object: DeepPartial_82<SubredditCollectionsRequest>): SubredditCollectionsRequest;
50144
50521
  };
50145
50522
 
50146
50523
  declare interface SubredditCollectionsResponse {
@@ -50154,8 +50531,8 @@ declare const SubredditCollectionsResponse: {
50154
50531
  decode(input: _m0.Reader | Uint8Array, length?: number): SubredditCollectionsResponse;
50155
50532
  fromJSON(object: any): SubredditCollectionsResponse;
50156
50533
  toJSON(message: SubredditCollectionsResponse): unknown;
50157
- create(base?: DeepPartial_79<SubredditCollectionsResponse>): SubredditCollectionsResponse;
50158
- fromPartial(object: DeepPartial_79<SubredditCollectionsResponse>): SubredditCollectionsResponse;
50534
+ create(base?: DeepPartial_82<SubredditCollectionsResponse>): SubredditCollectionsResponse;
50535
+ fromPartial(object: DeepPartial_82<SubredditCollectionsResponse>): SubredditCollectionsResponse;
50159
50536
  };
50160
50537
 
50161
50538
  declare interface SubredditContextActions {
@@ -50171,8 +50548,8 @@ declare const SubredditContextActions: {
50171
50548
  decode(input: _m0.Reader | Uint8Array, length?: number): SubredditContextActions;
50172
50549
  fromJSON(object: any): SubredditContextActions;
50173
50550
  toJSON(message: SubredditContextActions): unknown;
50174
- create(base?: DeepPartial_92<SubredditContextActions>): SubredditContextActions;
50175
- fromPartial(object: DeepPartial_92<SubredditContextActions>): SubredditContextActions;
50551
+ create(base?: DeepPartial_95<SubredditContextActions>): SubredditContextActions;
50552
+ fromPartial(object: DeepPartial_95<SubredditContextActions>): SubredditContextActions;
50176
50553
  };
50177
50554
 
50178
50555
  export declare type SubredditData = {
@@ -50300,8 +50677,8 @@ declare const SubredditMetadataRequest: {
50300
50677
  decode(input: _m0.Reader | Uint8Array, length?: number): SubredditMetadataRequest;
50301
50678
  fromJSON(object: any): SubredditMetadataRequest;
50302
50679
  toJSON(message: SubredditMetadataRequest): unknown;
50303
- create(base?: DeepPartial_91<SubredditMetadataRequest>): SubredditMetadataRequest;
50304
- fromPartial(object: DeepPartial_91<SubredditMetadataRequest>): SubredditMetadataRequest;
50680
+ create(base?: DeepPartial_94<SubredditMetadataRequest>): SubredditMetadataRequest;
50681
+ fromPartial(object: DeepPartial_94<SubredditMetadataRequest>): SubredditMetadataRequest;
50305
50682
  };
50306
50683
 
50307
50684
  declare interface SubredditMetadataResolver {
@@ -50331,8 +50708,8 @@ declare const SubredditMetadataResolverDefinition: {
50331
50708
  decode(input: _m0.Reader | Uint8Array, length?: number): SubredditMetadataRequest;
50332
50709
  fromJSON(object: any): SubredditMetadataRequest;
50333
50710
  toJSON(message: SubredditMetadataRequest): unknown;
50334
- create(base?: DeepPartial_91<SubredditMetadataRequest>): SubredditMetadataRequest;
50335
- fromPartial(object: DeepPartial_91<SubredditMetadataRequest>): SubredditMetadataRequest;
50711
+ create(base?: DeepPartial_94<SubredditMetadataRequest>): SubredditMetadataRequest;
50712
+ fromPartial(object: DeepPartial_94<SubredditMetadataRequest>): SubredditMetadataRequest;
50336
50713
  };
50337
50714
  readonly requestStream: false;
50338
50715
  readonly responseType: {
@@ -55447,8 +55824,8 @@ declare const SupervisorDefinition: {
55447
55824
  decode(input: _m0.Reader | Uint8Array, length?: number): UnloadRequest;
55448
55825
  fromJSON(object: any): UnloadRequest;
55449
55826
  toJSON(message: UnloadRequest): unknown;
55450
- create(base?: DeepPartial_103<UnloadRequest>): UnloadRequest;
55451
- fromPartial(object: DeepPartial_103<UnloadRequest>): UnloadRequest;
55827
+ create(base?: DeepPartial_106<UnloadRequest>): UnloadRequest;
55828
+ fromPartial(object: DeepPartial_106<UnloadRequest>): UnloadRequest;
55452
55829
  };
55453
55830
  readonly requestStream: false;
55454
55831
  readonly responseType: {
@@ -55672,8 +56049,8 @@ declare const TestMessage: {
55672
56049
  decode(input: _m0.Reader | Uint8Array, length?: number): TestMessage;
55673
56050
  fromJSON(object: any): TestMessage;
55674
56051
  toJSON(message: TestMessage): unknown;
55675
- create(base?: DeepPartial_90<TestMessage>): TestMessage;
55676
- fromPartial(object: DeepPartial_90<TestMessage>): TestMessage;
56052
+ create(base?: DeepPartial_93<TestMessage>): TestMessage;
56053
+ fromPartial(object: DeepPartial_93<TestMessage>): TestMessage;
55677
56054
  };
55678
56055
 
55679
56056
  declare type Text = {
@@ -55782,8 +56159,8 @@ declare const TimerDefinition: {
55782
56159
  decode(input: _m0.Reader | Uint8Array, length?: number): TimerMessage;
55783
56160
  fromJSON(object: any): TimerMessage;
55784
56161
  toJSON(message: TimerMessage): unknown;
55785
- create(base?: DeepPartial_93<TimerMessage>): TimerMessage;
55786
- fromPartial(object: DeepPartial_93<TimerMessage>): TimerMessage;
56162
+ create(base?: DeepPartial_96<TimerMessage>): TimerMessage;
56163
+ fromPartial(object: DeepPartial_96<TimerMessage>): TimerMessage;
55787
56164
  };
55788
56165
  readonly requestStream: false;
55789
56166
  readonly responseType: {
@@ -55828,8 +56205,8 @@ declare const TimerMessage: {
55828
56205
  decode(input: _m0.Reader | Uint8Array, length?: number): TimerMessage;
55829
56206
  fromJSON(object: any): TimerMessage;
55830
56207
  toJSON(message: TimerMessage): unknown;
55831
- create(base?: DeepPartial_93<TimerMessage>): TimerMessage;
55832
- fromPartial(object: DeepPartial_93<TimerMessage>): TimerMessage;
56208
+ create(base?: DeepPartial_96<TimerMessage>): TimerMessage;
56209
+ fromPartial(object: DeepPartial_96<TimerMessage>): TimerMessage;
55833
56210
  };
55834
56211
 
55835
56212
  declare const TimerServiceName = "devvit.plugin.timer.Timer";
@@ -56049,8 +56426,8 @@ declare const TransactionId: {
56049
56426
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionId;
56050
56427
  fromJSON(object: any): TransactionId;
56051
56428
  toJSON(message: TransactionId): unknown;
56052
- create(base?: DeepPartial_84<TransactionId>): TransactionId;
56053
- fromPartial(object: DeepPartial_84<TransactionId>): TransactionId;
56429
+ create(base?: DeepPartial_87<TransactionId>): TransactionId;
56430
+ fromPartial(object: DeepPartial_87<TransactionId>): TransactionId;
56054
56431
  };
56055
56432
 
56056
56433
  declare interface TransactionResponse {
@@ -56067,8 +56444,8 @@ declare const TransactionResponse: {
56067
56444
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionResponse;
56068
56445
  fromJSON(object: any): TransactionResponse;
56069
56446
  toJSON(message: TransactionResponse): unknown;
56070
- create(base?: DeepPartial_84<TransactionResponse>): TransactionResponse;
56071
- fromPartial(object: DeepPartial_84<TransactionResponse>): TransactionResponse;
56447
+ create(base?: DeepPartial_87<TransactionResponse>): TransactionResponse;
56448
+ fromPartial(object: DeepPartial_87<TransactionResponse>): TransactionResponse;
56072
56449
  };
56073
56450
 
56074
56451
  declare interface TransactionResponses {
@@ -56081,8 +56458,8 @@ declare const TransactionResponses: {
56081
56458
  decode(input: _m0.Reader | Uint8Array, length?: number): TransactionResponses;
56082
56459
  fromJSON(object: any): TransactionResponses;
56083
56460
  toJSON(message: TransactionResponses): unknown;
56084
- create(base?: DeepPartial_84<TransactionResponses>): TransactionResponses;
56085
- fromPartial(object: DeepPartial_84<TransactionResponses>): TransactionResponses;
56461
+ create(base?: DeepPartial_87<TransactionResponses>): TransactionResponses;
56462
+ fromPartial(object: DeepPartial_87<TransactionResponses>): TransactionResponses;
56086
56463
  };
56087
56464
 
56088
56465
  export declare type TriggerContext = Omit<Devvit.Context, 'ui' | 'dimensions' | 'modLog' | 'uiEnvironment'>;
@@ -56125,8 +56502,8 @@ declare const TriggerEvent_2: {
56125
56502
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerEvent_2;
56126
56503
  fromJSON(object: any): TriggerEvent_2;
56127
56504
  toJSON(message: TriggerEvent_2): unknown;
56128
- create(base?: DeepPartial_94<TriggerEvent_2>): TriggerEvent_2;
56129
- fromPartial(object: DeepPartial_94<TriggerEvent_2>): TriggerEvent_2;
56505
+ create(base?: DeepPartial_97<TriggerEvent_2>): TriggerEvent_2;
56506
+ fromPartial(object: DeepPartial_97<TriggerEvent_2>): TriggerEvent_2;
56130
56507
  };
56131
56508
 
56132
56509
  /** Maps a TriggerEvent to a Protobuf message and type. */
@@ -56189,8 +56566,8 @@ declare const TriggerFanOutResponse: {
56189
56566
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerFanOutResponse;
56190
56567
  fromJSON(object: any): TriggerFanOutResponse;
56191
56568
  toJSON(message: TriggerFanOutResponse): unknown;
56192
- create(base?: DeepPartial_95<TriggerFanOutResponse>): TriggerFanOutResponse;
56193
- fromPartial(object: DeepPartial_95<TriggerFanOutResponse>): TriggerFanOutResponse;
56569
+ create(base?: DeepPartial_98<TriggerFanOutResponse>): TriggerFanOutResponse;
56570
+ fromPartial(object: DeepPartial_98<TriggerFanOutResponse>): TriggerFanOutResponse;
56194
56571
  };
56195
56572
 
56196
56573
  declare interface TriggerInvocation {
@@ -56204,8 +56581,8 @@ declare const TriggerInvocation: {
56204
56581
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerInvocation;
56205
56582
  fromJSON(object: any): TriggerInvocation;
56206
56583
  toJSON(message: TriggerInvocation): unknown;
56207
- create(base?: DeepPartial_95<TriggerInvocation>): TriggerInvocation;
56208
- fromPartial(object: DeepPartial_95<TriggerInvocation>): TriggerInvocation;
56584
+ create(base?: DeepPartial_98<TriggerInvocation>): TriggerInvocation;
56585
+ fromPartial(object: DeepPartial_98<TriggerInvocation>): TriggerInvocation;
56209
56586
  };
56210
56587
 
56211
56588
  export declare type TriggerOnEventHandler<RequestType> = (event: RequestType, context: TriggerContext) => TriggerResult;
@@ -56227,8 +56604,8 @@ declare const TriggerResponse: {
56227
56604
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerResponse;
56228
56605
  fromJSON(object: any): TriggerResponse;
56229
56606
  toJSON(message: TriggerResponse): unknown;
56230
- create(base?: DeepPartial_95<TriggerResponse>): TriggerResponse;
56231
- fromPartial(object: DeepPartial_95<TriggerResponse>): TriggerResponse;
56607
+ create(base?: DeepPartial_98<TriggerResponse>): TriggerResponse;
56608
+ fromPartial(object: DeepPartial_98<TriggerResponse>): TriggerResponse;
56232
56609
  };
56233
56610
 
56234
56611
  declare interface TriggerResponse_ErrorsEntry {
@@ -56242,8 +56619,8 @@ declare const TriggerResponse_ErrorsEntry: {
56242
56619
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerResponse_ErrorsEntry;
56243
56620
  fromJSON(object: any): TriggerResponse_ErrorsEntry;
56244
56621
  toJSON(message: TriggerResponse_ErrorsEntry): unknown;
56245
- create(base?: DeepPartial_95<TriggerResponse_ErrorsEntry>): TriggerResponse_ErrorsEntry;
56246
- fromPartial(object: DeepPartial_95<TriggerResponse_ErrorsEntry>): TriggerResponse_ErrorsEntry;
56622
+ create(base?: DeepPartial_98<TriggerResponse_ErrorsEntry>): TriggerResponse_ErrorsEntry;
56623
+ fromPartial(object: DeepPartial_98<TriggerResponse_ErrorsEntry>): TriggerResponse_ErrorsEntry;
56247
56624
  };
56248
56625
 
56249
56626
  declare type TriggerResult = Promise<void> | void;
@@ -60191,8 +60568,8 @@ declare const TriggersDefinition: {
60191
60568
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerResponse;
60192
60569
  fromJSON(object: any): TriggerResponse;
60193
60570
  toJSON(message: TriggerResponse): unknown;
60194
- create(base?: DeepPartial_95<TriggerResponse>): TriggerResponse;
60195
- fromPartial(object: DeepPartial_95<TriggerResponse>): TriggerResponse;
60571
+ create(base?: DeepPartial_98<TriggerResponse>): TriggerResponse;
60572
+ fromPartial(object: DeepPartial_98<TriggerResponse>): TriggerResponse;
60196
60573
  };
60197
60574
  readonly responseStream: false;
60198
60575
  readonly options: {};
@@ -64111,8 +64488,8 @@ declare const TriggersDefinition: {
64111
64488
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerFanOutResponse;
64112
64489
  fromJSON(object: any): TriggerFanOutResponse;
64113
64490
  toJSON(message: TriggerFanOutResponse): unknown;
64114
- create(base?: DeepPartial_95<TriggerFanOutResponse>): TriggerFanOutResponse;
64115
- fromPartial(object: DeepPartial_95<TriggerFanOutResponse>): TriggerFanOutResponse;
64491
+ create(base?: DeepPartial_98<TriggerFanOutResponse>): TriggerFanOutResponse;
64492
+ fromPartial(object: DeepPartial_98<TriggerFanOutResponse>): TriggerFanOutResponse;
64116
64493
  };
64117
64494
  readonly responseStream: false;
64118
64495
  readonly options: {};
@@ -64125,8 +64502,8 @@ declare const TriggersDefinition: {
64125
64502
  decode(input: _m0.Reader | Uint8Array, length?: number): TriggerInvocation;
64126
64503
  fromJSON(object: any): TriggerInvocation;
64127
64504
  toJSON(message: TriggerInvocation): unknown;
64128
- create(base?: DeepPartial_95<TriggerInvocation>): TriggerInvocation;
64129
- fromPartial(object: DeepPartial_95<TriggerInvocation>): TriggerInvocation;
64505
+ create(base?: DeepPartial_98<TriggerInvocation>): TriggerInvocation;
64506
+ fromPartial(object: DeepPartial_98<TriggerInvocation>): TriggerInvocation;
64130
64507
  };
64131
64508
  readonly requestStream: false;
64132
64509
  readonly responseType: {
@@ -64723,8 +65100,8 @@ declare const UIEventHandlerDefinition: {
64723
65100
  decode(input: _m0.Reader | Uint8Array, length?: number): HandleUIEventRequest;
64724
65101
  fromJSON(object: any): HandleUIEventRequest;
64725
65102
  toJSON(message: HandleUIEventRequest): unknown;
64726
- create(base?: DeepPartial_97<HandleUIEventRequest>): HandleUIEventRequest;
64727
- fromPartial(object: DeepPartial_97<HandleUIEventRequest>): HandleUIEventRequest;
65103
+ create(base?: DeepPartial_100<HandleUIEventRequest>): HandleUIEventRequest;
65104
+ fromPartial(object: DeepPartial_100<HandleUIEventRequest>): HandleUIEventRequest;
64728
65105
  };
64729
65106
  readonly requestStream: false;
64730
65107
  readonly responseType: {
@@ -64733,8 +65110,8 @@ declare const UIEventHandlerDefinition: {
64733
65110
  decode(input: _m0.Reader | Uint8Array, length?: number): HandleUIEventResponse;
64734
65111
  fromJSON(object: any): HandleUIEventResponse;
64735
65112
  toJSON(message: HandleUIEventResponse): unknown;
64736
- create(base?: DeepPartial_97<HandleUIEventResponse>): HandleUIEventResponse;
64737
- fromPartial(object: DeepPartial_97<HandleUIEventResponse>): HandleUIEventResponse;
65113
+ create(base?: DeepPartial_100<HandleUIEventResponse>): HandleUIEventResponse;
65114
+ fromPartial(object: DeepPartial_100<HandleUIEventResponse>): HandleUIEventResponse;
64738
65115
  };
64739
65116
  readonly responseStream: false;
64740
65117
  readonly options: {};
@@ -64901,8 +65278,8 @@ declare const UnfriendRequest: {
64901
65278
  decode(input: _m0.Reader | Uint8Array, length?: number): UnfriendRequest;
64902
65279
  fromJSON(object: any): UnfriendRequest;
64903
65280
  toJSON(message: UnfriendRequest): unknown;
64904
- create(base?: DeepPartial_98<UnfriendRequest>): UnfriendRequest;
64905
- fromPartial(object: DeepPartial_98<UnfriendRequest>): UnfriendRequest;
65281
+ create(base?: DeepPartial_101<UnfriendRequest>): UnfriendRequest;
65282
+ fromPartial(object: DeepPartial_101<UnfriendRequest>): UnfriendRequest;
64906
65283
  };
64907
65284
 
64908
65285
  /**
@@ -64933,8 +65310,8 @@ declare const UninterpretedOption: {
64933
65310
  decode(input: _m0.Reader | Uint8Array, length?: number): UninterpretedOption;
64934
65311
  fromJSON(object: any): UninterpretedOption;
64935
65312
  toJSON(message: UninterpretedOption): unknown;
64936
- create(base?: DeepPartial_102<UninterpretedOption>): UninterpretedOption;
64937
- fromPartial(object: DeepPartial_102<UninterpretedOption>): UninterpretedOption;
65313
+ create(base?: DeepPartial_105<UninterpretedOption>): UninterpretedOption;
65314
+ fromPartial(object: DeepPartial_105<UninterpretedOption>): UninterpretedOption;
64938
65315
  };
64939
65316
 
64940
65317
  /**
@@ -64955,8 +65332,8 @@ declare const UninterpretedOption_NamePart: {
64955
65332
  decode(input: _m0.Reader | Uint8Array, length?: number): UninterpretedOption_NamePart;
64956
65333
  fromJSON(object: any): UninterpretedOption_NamePart;
64957
65334
  toJSON(message: UninterpretedOption_NamePart): unknown;
64958
- create(base?: DeepPartial_102<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
64959
- fromPartial(object: DeepPartial_102<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
65335
+ create(base?: DeepPartial_105<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
65336
+ fromPartial(object: DeepPartial_105<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
64960
65337
  };
64961
65338
 
64962
65339
  declare type UnknownMessage = unknown;
@@ -64972,8 +65349,8 @@ declare const UnloadRequest: {
64972
65349
  decode(input: _m0.Reader | Uint8Array, length?: number): UnloadRequest;
64973
65350
  fromJSON(object: any): UnloadRequest;
64974
65351
  toJSON(message: UnloadRequest): unknown;
64975
- create(base?: DeepPartial_103<UnloadRequest>): UnloadRequest;
64976
- fromPartial(object: DeepPartial_103<UnloadRequest>): UnloadRequest;
65352
+ create(base?: DeepPartial_106<UnloadRequest>): UnloadRequest;
65353
+ fromPartial(object: DeepPartial_106<UnloadRequest>): UnloadRequest;
64977
65354
  };
64978
65355
 
64979
65356
  export declare type UnreadCountResponse = {
@@ -65062,8 +65439,8 @@ declare const UpdateCollectionDescriptionRequest: {
65062
65439
  decode(input: _m0.Reader | Uint8Array, length?: number): UpdateCollectionDescriptionRequest;
65063
65440
  fromJSON(object: any): UpdateCollectionDescriptionRequest;
65064
65441
  toJSON(message: UpdateCollectionDescriptionRequest): unknown;
65065
- create(base?: DeepPartial_79<UpdateCollectionDescriptionRequest>): UpdateCollectionDescriptionRequest;
65066
- fromPartial(object: DeepPartial_79<UpdateCollectionDescriptionRequest>): UpdateCollectionDescriptionRequest;
65442
+ create(base?: DeepPartial_82<UpdateCollectionDescriptionRequest>): UpdateCollectionDescriptionRequest;
65443
+ fromPartial(object: DeepPartial_82<UpdateCollectionDescriptionRequest>): UpdateCollectionDescriptionRequest;
65067
65444
  };
65068
65445
 
65069
65446
  declare interface UpdateCollectionDisplayLayoutRequest {
@@ -65079,8 +65456,8 @@ declare const UpdateCollectionDisplayLayoutRequest: {
65079
65456
  decode(input: _m0.Reader | Uint8Array, length?: number): UpdateCollectionDisplayLayoutRequest;
65080
65457
  fromJSON(object: any): UpdateCollectionDisplayLayoutRequest;
65081
65458
  toJSON(message: UpdateCollectionDisplayLayoutRequest): unknown;
65082
- create(base?: DeepPartial_79<UpdateCollectionDisplayLayoutRequest>): UpdateCollectionDisplayLayoutRequest;
65083
- fromPartial(object: DeepPartial_79<UpdateCollectionDisplayLayoutRequest>): UpdateCollectionDisplayLayoutRequest;
65459
+ create(base?: DeepPartial_82<UpdateCollectionDisplayLayoutRequest>): UpdateCollectionDisplayLayoutRequest;
65460
+ fromPartial(object: DeepPartial_82<UpdateCollectionDisplayLayoutRequest>): UpdateCollectionDisplayLayoutRequest;
65084
65461
  };
65085
65462
 
65086
65463
  declare interface UpdateCollectionTitleRequest {
@@ -65096,8 +65473,8 @@ declare const UpdateCollectionTitleRequest: {
65096
65473
  decode(input: _m0.Reader | Uint8Array, length?: number): UpdateCollectionTitleRequest;
65097
65474
  fromJSON(object: any): UpdateCollectionTitleRequest;
65098
65475
  toJSON(message: UpdateCollectionTitleRequest): unknown;
65099
- create(base?: DeepPartial_79<UpdateCollectionTitleRequest>): UpdateCollectionTitleRequest;
65100
- fromPartial(object: DeepPartial_79<UpdateCollectionTitleRequest>): UpdateCollectionTitleRequest;
65476
+ create(base?: DeepPartial_82<UpdateCollectionTitleRequest>): UpdateCollectionTitleRequest;
65477
+ fromPartial(object: DeepPartial_82<UpdateCollectionTitleRequest>): UpdateCollectionTitleRequest;
65101
65478
  };
65102
65479
 
65103
65480
  declare interface UpdateCommunityListWidgetRequest {
@@ -65185,8 +65562,8 @@ declare const UpdateFriendRelationshipRequest: {
65185
65562
  decode(input: _m0.Reader | Uint8Array, length?: number): UpdateFriendRelationshipRequest;
65186
65563
  fromJSON(object: any): UpdateFriendRelationshipRequest;
65187
65564
  toJSON(message: UpdateFriendRelationshipRequest): unknown;
65188
- create(base?: DeepPartial_98<UpdateFriendRelationshipRequest>): UpdateFriendRelationshipRequest;
65189
- fromPartial(object: DeepPartial_98<UpdateFriendRelationshipRequest>): UpdateFriendRelationshipRequest;
65565
+ create(base?: DeepPartial_101<UpdateFriendRelationshipRequest>): UpdateFriendRelationshipRequest;
65566
+ fromPartial(object: DeepPartial_101<UpdateFriendRelationshipRequest>): UpdateFriendRelationshipRequest;
65190
65567
  };
65191
65568
 
65192
65569
  declare interface UpdateImageWidgetRequest {
@@ -65600,8 +65977,8 @@ declare const UserAboutRequest: {
65600
65977
  decode(input: _m0.Reader | Uint8Array, length?: number): UserAboutRequest;
65601
65978
  fromJSON(object: any): UserAboutRequest;
65602
65979
  toJSON(message: UserAboutRequest): unknown;
65603
- create(base?: DeepPartial_98<UserAboutRequest>): UserAboutRequest;
65604
- fromPartial(object: DeepPartial_98<UserAboutRequest>): UserAboutRequest;
65980
+ create(base?: DeepPartial_101<UserAboutRequest>): UserAboutRequest;
65981
+ fromPartial(object: DeepPartial_101<UserAboutRequest>): UserAboutRequest;
65605
65982
  };
65606
65983
 
65607
65984
  declare interface UserAboutResponse {
@@ -65615,8 +65992,8 @@ declare const UserAboutResponse: {
65615
65992
  decode(input: _m0.Reader | Uint8Array, length?: number): UserAboutResponse;
65616
65993
  fromJSON(object: any): UserAboutResponse;
65617
65994
  toJSON(message: UserAboutResponse): unknown;
65618
- create(base?: DeepPartial_98<UserAboutResponse>): UserAboutResponse;
65619
- fromPartial(object: DeepPartial_98<UserAboutResponse>): UserAboutResponse;
65995
+ create(base?: DeepPartial_101<UserAboutResponse>): UserAboutResponse;
65996
+ fromPartial(object: DeepPartial_101<UserAboutResponse>): UserAboutResponse;
65620
65997
  };
65621
65998
 
65622
65999
  declare interface UserAction {
@@ -65733,8 +66110,8 @@ declare const UserDataByAccountIdsRequest: {
65733
66110
  decode(input: _m0.Reader | Uint8Array, length?: number): UserDataByAccountIdsRequest;
65734
66111
  fromJSON(object: any): UserDataByAccountIdsRequest;
65735
66112
  toJSON(message: UserDataByAccountIdsRequest): unknown;
65736
- create(base?: DeepPartial_98<UserDataByAccountIdsRequest>): UserDataByAccountIdsRequest;
65737
- fromPartial(object: DeepPartial_98<UserDataByAccountIdsRequest>): UserDataByAccountIdsRequest;
66113
+ create(base?: DeepPartial_101<UserDataByAccountIdsRequest>): UserDataByAccountIdsRequest;
66114
+ fromPartial(object: DeepPartial_101<UserDataByAccountIdsRequest>): UserDataByAccountIdsRequest;
65738
66115
  };
65739
66116
 
65740
66117
  declare interface UserDataByAccountIdsResponse {
@@ -65749,8 +66126,8 @@ declare const UserDataByAccountIdsResponse: {
65749
66126
  decode(input: _m0.Reader | Uint8Array, length?: number): UserDataByAccountIdsResponse;
65750
66127
  fromJSON(object: any): UserDataByAccountIdsResponse;
65751
66128
  toJSON(message: UserDataByAccountIdsResponse): unknown;
65752
- create(base?: DeepPartial_98<UserDataByAccountIdsResponse>): UserDataByAccountIdsResponse;
65753
- fromPartial(object: DeepPartial_98<UserDataByAccountIdsResponse>): UserDataByAccountIdsResponse;
66129
+ create(base?: DeepPartial_101<UserDataByAccountIdsResponse>): UserDataByAccountIdsResponse;
66130
+ fromPartial(object: DeepPartial_101<UserDataByAccountIdsResponse>): UserDataByAccountIdsResponse;
65754
66131
  };
65755
66132
 
65756
66133
  declare interface UserDataByAccountIdsResponse_UserAccountData {
@@ -65769,8 +66146,8 @@ declare const UserDataByAccountIdsResponse_UserAccountData: {
65769
66146
  decode(input: _m0.Reader | Uint8Array, length?: number): UserDataByAccountIdsResponse_UserAccountData;
65770
66147
  fromJSON(object: any): UserDataByAccountIdsResponse_UserAccountData;
65771
66148
  toJSON(message: UserDataByAccountIdsResponse_UserAccountData): unknown;
65772
- create(base?: DeepPartial_98<UserDataByAccountIdsResponse_UserAccountData>): UserDataByAccountIdsResponse_UserAccountData;
65773
- fromPartial(object: DeepPartial_98<UserDataByAccountIdsResponse_UserAccountData>): UserDataByAccountIdsResponse_UserAccountData;
66149
+ create(base?: DeepPartial_101<UserDataByAccountIdsResponse_UserAccountData>): UserDataByAccountIdsResponse_UserAccountData;
66150
+ fromPartial(object: DeepPartial_101<UserDataByAccountIdsResponse_UserAccountData>): UserDataByAccountIdsResponse_UserAccountData;
65774
66151
  };
65775
66152
 
65776
66153
  declare interface UserDataByAccountIdsResponse_UsersEntry {
@@ -65784,8 +66161,8 @@ declare const UserDataByAccountIdsResponse_UsersEntry: {
65784
66161
  decode(input: _m0.Reader | Uint8Array, length?: number): UserDataByAccountIdsResponse_UsersEntry;
65785
66162
  fromJSON(object: any): UserDataByAccountIdsResponse_UsersEntry;
65786
66163
  toJSON(message: UserDataByAccountIdsResponse_UsersEntry): unknown;
65787
- create(base?: DeepPartial_98<UserDataByAccountIdsResponse_UsersEntry>): UserDataByAccountIdsResponse_UsersEntry;
65788
- fromPartial(object: DeepPartial_98<UserDataByAccountIdsResponse_UsersEntry>): UserDataByAccountIdsResponse_UsersEntry;
66164
+ create(base?: DeepPartial_101<UserDataByAccountIdsResponse_UsersEntry>): UserDataByAccountIdsResponse_UsersEntry;
66165
+ fromPartial(object: DeepPartial_101<UserDataByAccountIdsResponse_UsersEntry>): UserDataByAccountIdsResponse_UsersEntry;
65789
66166
  };
65790
66167
 
65791
66168
  declare interface UserFeatures {
@@ -65963,8 +66340,8 @@ declare const UsernameAvailableRequest: {
65963
66340
  decode(input: _m0.Reader | Uint8Array, length?: number): UsernameAvailableRequest;
65964
66341
  fromJSON(object: any): UsernameAvailableRequest;
65965
66342
  toJSON(message: UsernameAvailableRequest): unknown;
65966
- create(base?: DeepPartial_98<UsernameAvailableRequest>): UsernameAvailableRequest;
65967
- fromPartial(object: DeepPartial_98<UsernameAvailableRequest>): UsernameAvailableRequest;
66343
+ create(base?: DeepPartial_101<UsernameAvailableRequest>): UsernameAvailableRequest;
66344
+ fromPartial(object: DeepPartial_101<UsernameAvailableRequest>): UsernameAvailableRequest;
65968
66345
  };
65969
66346
 
65970
66347
  export declare type UserNote = {
@@ -67671,8 +68048,8 @@ declare const UserTrophiesResponse: {
67671
68048
  decode(input: _m0.Reader | Uint8Array, length?: number): UserTrophiesResponse;
67672
68049
  fromJSON(object: any): UserTrophiesResponse;
67673
68050
  toJSON(message: UserTrophiesResponse): unknown;
67674
- create(base?: DeepPartial_98<UserTrophiesResponse>): UserTrophiesResponse;
67675
- fromPartial(object: DeepPartial_98<UserTrophiesResponse>): UserTrophiesResponse;
68051
+ create(base?: DeepPartial_101<UserTrophiesResponse>): UserTrophiesResponse;
68052
+ fromPartial(object: DeepPartial_101<UserTrophiesResponse>): UserTrophiesResponse;
67676
68053
  };
67677
68054
 
67678
68055
  declare interface UserTrophiesResponse_TrophiesData {
@@ -67692,8 +68069,8 @@ declare const UserTrophiesResponse_TrophiesData: {
67692
68069
  decode(input: _m0.Reader | Uint8Array, length?: number): UserTrophiesResponse_TrophiesData;
67693
68070
  fromJSON(object: any): UserTrophiesResponse_TrophiesData;
67694
68071
  toJSON(message: UserTrophiesResponse_TrophiesData): unknown;
67695
- create(base?: DeepPartial_98<UserTrophiesResponse_TrophiesData>): UserTrophiesResponse_TrophiesData;
67696
- fromPartial(object: DeepPartial_98<UserTrophiesResponse_TrophiesData>): UserTrophiesResponse_TrophiesData;
68072
+ create(base?: DeepPartial_101<UserTrophiesResponse_TrophiesData>): UserTrophiesResponse_TrophiesData;
68073
+ fromPartial(object: DeepPartial_101<UserTrophiesResponse_TrophiesData>): UserTrophiesResponse_TrophiesData;
67697
68074
  };
67698
68075
 
67699
68076
  declare interface UserTrophiesResponse_TrophiesType {
@@ -67707,8 +68084,8 @@ declare const UserTrophiesResponse_TrophiesType: {
67707
68084
  decode(input: _m0.Reader | Uint8Array, length?: number): UserTrophiesResponse_TrophiesType;
67708
68085
  fromJSON(object: any): UserTrophiesResponse_TrophiesType;
67709
68086
  toJSON(message: UserTrophiesResponse_TrophiesType): unknown;
67710
- create(base?: DeepPartial_98<UserTrophiesResponse_TrophiesType>): UserTrophiesResponse_TrophiesType;
67711
- fromPartial(object: DeepPartial_98<UserTrophiesResponse_TrophiesType>): UserTrophiesResponse_TrophiesType;
68087
+ create(base?: DeepPartial_101<UserTrophiesResponse_TrophiesType>): UserTrophiesResponse_TrophiesType;
68088
+ fromPartial(object: DeepPartial_101<UserTrophiesResponse_TrophiesType>): UserTrophiesResponse_TrophiesType;
67712
68089
  };
67713
68090
 
67714
68091
  declare interface UserTrophiesResponse_UserTrophiesData {
@@ -67721,8 +68098,8 @@ declare const UserTrophiesResponse_UserTrophiesData: {
67721
68098
  decode(input: _m0.Reader | Uint8Array, length?: number): UserTrophiesResponse_UserTrophiesData;
67722
68099
  fromJSON(object: any): UserTrophiesResponse_UserTrophiesData;
67723
68100
  toJSON(message: UserTrophiesResponse_UserTrophiesData): unknown;
67724
- create(base?: DeepPartial_98<UserTrophiesResponse_UserTrophiesData>): UserTrophiesResponse_UserTrophiesData;
67725
- fromPartial(object: DeepPartial_98<UserTrophiesResponse_UserTrophiesData>): UserTrophiesResponse_UserTrophiesData;
68101
+ create(base?: DeepPartial_101<UserTrophiesResponse_UserTrophiesData>): UserTrophiesResponse_UserTrophiesData;
68102
+ fromPartial(object: DeepPartial_101<UserTrophiesResponse_UserTrophiesData>): UserTrophiesResponse_UserTrophiesData;
67726
68103
  };
67727
68104
 
67728
68105
  declare interface UserV2 {
@@ -67769,8 +68146,8 @@ declare const UserWhereRequest: {
67769
68146
  decode(input: _m0.Reader | Uint8Array, length?: number): UserWhereRequest;
67770
68147
  fromJSON(object: any): UserWhereRequest;
67771
68148
  toJSON(message: UserWhereRequest): unknown;
67772
- create(base?: DeepPartial_98<UserWhereRequest>): UserWhereRequest;
67773
- fromPartial(object: DeepPartial_98<UserWhereRequest>): UserWhereRequest;
68149
+ create(base?: DeepPartial_101<UserWhereRequest>): UserWhereRequest;
68150
+ fromPartial(object: DeepPartial_101<UserWhereRequest>): UserWhereRequest;
67774
68151
  };
67775
68152
 
67776
68153
  export declare function useState(initialState: UseStateInitializer<boolean>): UseStateResult<boolean>;
@@ -67799,8 +68176,8 @@ declare const UUID: {
67799
68176
  decode(input: _m0.Reader | Uint8Array, length?: number): UUID;
67800
68177
  fromJSON(object: any): UUID;
67801
68178
  toJSON(message: UUID): unknown;
67802
- create(base?: DeepPartial_100<UUID>): UUID;
67803
- fromPartial(object: DeepPartial_100<UUID>): UUID;
68179
+ create(base?: DeepPartial_103<UUID>): UUID;
68180
+ fromPartial(object: DeepPartial_103<UUID>): UUID;
67804
68181
  };
67805
68182
 
67806
68183
  /** The Events plugin allows an app to emit pre-defined v2 events */
@@ -67819,8 +68196,8 @@ declare const V2EventsActionInfo: {
67819
68196
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsActionInfo;
67820
68197
  fromJSON(object: any): V2EventsActionInfo;
67821
68198
  toJSON(message: V2EventsActionInfo): unknown;
67822
- create(base?: DeepPartial_99<V2EventsActionInfo>): V2EventsActionInfo;
67823
- fromPartial(object: DeepPartial_99<V2EventsActionInfo>): V2EventsActionInfo;
68199
+ create(base?: DeepPartial_102<V2EventsActionInfo>): V2EventsActionInfo;
68200
+ fromPartial(object: DeepPartial_102<V2EventsActionInfo>): V2EventsActionInfo;
67824
68201
  };
67825
68202
 
67826
68203
  declare class V2EventsClientImpl implements V2Events {
@@ -67847,8 +68224,8 @@ declare const V2EventsDefinition: {
67847
68224
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsPublishRequest;
67848
68225
  fromJSON(object: any): V2EventsPublishRequest;
67849
68226
  toJSON(message: V2EventsPublishRequest): unknown;
67850
- create(base?: DeepPartial_99<V2EventsPublishRequest>): V2EventsPublishRequest;
67851
- fromPartial(object: DeepPartial_99<V2EventsPublishRequest>): V2EventsPublishRequest;
68227
+ create(base?: DeepPartial_102<V2EventsPublishRequest>): V2EventsPublishRequest;
68228
+ fromPartial(object: DeepPartial_102<V2EventsPublishRequest>): V2EventsPublishRequest;
67852
68229
  };
67853
68230
  readonly requestStream: false;
67854
68231
  readonly responseType: {
@@ -67857,8 +68234,8 @@ declare const V2EventsDefinition: {
67857
68234
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsPublishResponse;
67858
68235
  fromJSON(_: any): V2EventsPublishResponse;
67859
68236
  toJSON(_: V2EventsPublishResponse): unknown;
67860
- create(base?: DeepPartial_99<V2EventsPublishResponse>): V2EventsPublishResponse;
67861
- fromPartial(_: DeepPartial_99<V2EventsPublishResponse>): V2EventsPublishResponse;
68237
+ create(base?: DeepPartial_102<V2EventsPublishResponse>): V2EventsPublishResponse;
68238
+ fromPartial(_: DeepPartial_102<V2EventsPublishResponse>): V2EventsPublishResponse;
67862
68239
  };
67863
68240
  readonly responseStream: false;
67864
68241
  readonly options: {};
@@ -67876,8 +68253,8 @@ declare const V2EventsPostGuidanceCreate: {
67876
68253
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsPostGuidanceCreate;
67877
68254
  fromJSON(object: any): V2EventsPostGuidanceCreate;
67878
68255
  toJSON(message: V2EventsPostGuidanceCreate): unknown;
67879
- create(base?: DeepPartial_99<V2EventsPostGuidanceCreate>): V2EventsPostGuidanceCreate;
67880
- fromPartial(object: DeepPartial_99<V2EventsPostGuidanceCreate>): V2EventsPostGuidanceCreate;
68256
+ create(base?: DeepPartial_102<V2EventsPostGuidanceCreate>): V2EventsPostGuidanceCreate;
68257
+ fromPartial(object: DeepPartial_102<V2EventsPostGuidanceCreate>): V2EventsPostGuidanceCreate;
67881
68258
  };
67882
68259
 
67883
68260
  declare interface V2EventsPostGuidanceUpdate {
@@ -67890,8 +68267,8 @@ declare const V2EventsPostGuidanceUpdate: {
67890
68267
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsPostGuidanceUpdate;
67891
68268
  fromJSON(object: any): V2EventsPostGuidanceUpdate;
67892
68269
  toJSON(message: V2EventsPostGuidanceUpdate): unknown;
67893
- create(base?: DeepPartial_99<V2EventsPostGuidanceUpdate>): V2EventsPostGuidanceUpdate;
67894
- fromPartial(object: DeepPartial_99<V2EventsPostGuidanceUpdate>): V2EventsPostGuidanceUpdate;
68270
+ create(base?: DeepPartial_102<V2EventsPostGuidanceUpdate>): V2EventsPostGuidanceUpdate;
68271
+ fromPartial(object: DeepPartial_102<V2EventsPostGuidanceUpdate>): V2EventsPostGuidanceUpdate;
67895
68272
  };
67896
68273
 
67897
68274
  declare interface V2EventsPublishRequest {
@@ -67905,8 +68282,8 @@ declare const V2EventsPublishRequest: {
67905
68282
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsPublishRequest;
67906
68283
  fromJSON(object: any): V2EventsPublishRequest;
67907
68284
  toJSON(message: V2EventsPublishRequest): unknown;
67908
- create(base?: DeepPartial_99<V2EventsPublishRequest>): V2EventsPublishRequest;
67909
- fromPartial(object: DeepPartial_99<V2EventsPublishRequest>): V2EventsPublishRequest;
68285
+ create(base?: DeepPartial_102<V2EventsPublishRequest>): V2EventsPublishRequest;
68286
+ fromPartial(object: DeepPartial_102<V2EventsPublishRequest>): V2EventsPublishRequest;
67910
68287
  };
67911
68288
 
67912
68289
  /** Generic response interface */
@@ -67919,8 +68296,8 @@ declare const V2EventsPublishResponse: {
67919
68296
  decode(input: _m0.Reader | Uint8Array, length?: number): V2EventsPublishResponse;
67920
68297
  fromJSON(_: any): V2EventsPublishResponse;
67921
68298
  toJSON(_: V2EventsPublishResponse): unknown;
67922
- create(base?: DeepPartial_99<V2EventsPublishResponse>): V2EventsPublishResponse;
67923
- fromPartial(_: DeepPartial_99<V2EventsPublishResponse>): V2EventsPublishResponse;
68299
+ create(base?: DeepPartial_102<V2EventsPublishResponse>): V2EventsPublishResponse;
68300
+ fromPartial(_: DeepPartial_102<V2EventsPublishResponse>): V2EventsPublishResponse;
67924
68301
  };
67925
68302
 
67926
68303
  declare const V2EventsServiceName = "devvit.plugin.v2events.V2Events";
@@ -68038,8 +68415,8 @@ declare const Value: {
68038
68415
  decode(input: _m0.Reader | Uint8Array, length?: number): Value;
68039
68416
  fromJSON(object: any): Value;
68040
68417
  toJSON(message: Value): unknown;
68041
- create(base?: DeepPartial_101<Value>): Value;
68042
- fromPartial(object: DeepPartial_101<Value>): Value;
68418
+ create(base?: DeepPartial_104<Value>): Value;
68419
+ fromPartial(object: DeepPartial_104<Value>): Value;
68043
68420
  wrap(value: any): Value;
68044
68421
  unwrap(message: any): string | number | boolean | Object | null | Array<any> | undefined;
68045
68422
  };
@@ -68154,8 +68531,8 @@ declare const WatchRequest: {
68154
68531
  decode(input: _m0.Reader | Uint8Array, length?: number): WatchRequest;
68155
68532
  fromJSON(object: any): WatchRequest;
68156
68533
  toJSON(message: WatchRequest): unknown;
68157
- create(base?: DeepPartial_84<WatchRequest>): WatchRequest;
68158
- fromPartial(object: DeepPartial_84<WatchRequest>): WatchRequest;
68534
+ create(base?: DeepPartial_87<WatchRequest>): WatchRequest;
68535
+ fromPartial(object: DeepPartial_87<WatchRequest>): WatchRequest;
68159
68536
  };
68160
68537
 
68161
68538
  export declare class Widget {
@@ -73524,8 +73901,8 @@ declare const WorkerQuery: {
73524
73901
  decode(input: _m0.Reader | Uint8Array, length?: number): WorkerQuery;
73525
73902
  fromJSON(object: any): WorkerQuery;
73526
73903
  toJSON(message: WorkerQuery): unknown;
73527
- create(base?: DeepPartial_104<WorkerQuery>): WorkerQuery;
73528
- fromPartial(object: DeepPartial_104<WorkerQuery>): WorkerQuery;
73904
+ create(base?: DeepPartial_107<WorkerQuery>): WorkerQuery;
73905
+ fromPartial(object: DeepPartial_107<WorkerQuery>): WorkerQuery;
73529
73906
  };
73530
73907
 
73531
73908
  declare interface WqCleanup {
@@ -73538,8 +73915,8 @@ declare const WqCleanup: {
73538
73915
  decode(input: _m0.Reader | Uint8Array, length?: number): WqCleanup;
73539
73916
  fromJSON(object: any): WqCleanup;
73540
73917
  toJSON(message: WqCleanup): unknown;
73541
- create(base?: DeepPartial_105<WqCleanup>): WqCleanup;
73542
- fromPartial(object: DeepPartial_105<WqCleanup>): WqCleanup;
73918
+ create(base?: DeepPartial_108<WqCleanup>): WqCleanup;
73919
+ fromPartial(object: DeepPartial_108<WqCleanup>): WqCleanup;
73543
73920
  };
73544
73921
 
73545
73922
  /** A WrappedRedditObject couples a RedditObject with a type identifier */
@@ -73883,8 +74260,8 @@ declare const ZAddRequest: {
73883
74260
  decode(input: _m0.Reader | Uint8Array, length?: number): ZAddRequest;
73884
74261
  fromJSON(object: any): ZAddRequest;
73885
74262
  toJSON(message: ZAddRequest): unknown;
73886
- create(base?: DeepPartial_84<ZAddRequest>): ZAddRequest;
73887
- fromPartial(object: DeepPartial_84<ZAddRequest>): ZAddRequest;
74263
+ create(base?: DeepPartial_87<ZAddRequest>): ZAddRequest;
74264
+ fromPartial(object: DeepPartial_87<ZAddRequest>): ZAddRequest;
73888
74265
  };
73889
74266
 
73890
74267
  declare interface ZIncrByRequest {
@@ -73902,8 +74279,8 @@ declare const ZIncrByRequest: {
73902
74279
  decode(input: _m0.Reader | Uint8Array, length?: number): ZIncrByRequest;
73903
74280
  fromJSON(object: any): ZIncrByRequest;
73904
74281
  toJSON(message: ZIncrByRequest): unknown;
73905
- create(base?: DeepPartial_84<ZIncrByRequest>): ZIncrByRequest;
73906
- fromPartial(object: DeepPartial_84<ZIncrByRequest>): ZIncrByRequest;
74282
+ create(base?: DeepPartial_87<ZIncrByRequest>): ZIncrByRequest;
74283
+ fromPartial(object: DeepPartial_87<ZIncrByRequest>): ZIncrByRequest;
73907
74284
  };
73908
74285
 
73909
74286
  export declare type ZMember = {
@@ -73922,8 +74299,8 @@ declare const ZMember_2: {
73922
74299
  decode(input: _m0.Reader | Uint8Array, length?: number): ZMember_2;
73923
74300
  fromJSON(object: any): ZMember_2;
73924
74301
  toJSON(message: ZMember_2): unknown;
73925
- create(base?: DeepPartial_84<ZMember_2>): ZMember_2;
73926
- fromPartial(object: DeepPartial_84<ZMember_2>): ZMember_2;
74302
+ create(base?: DeepPartial_87<ZMember_2>): ZMember_2;
74303
+ fromPartial(object: DeepPartial_87<ZMember_2>): ZMember_2;
73927
74304
  };
73928
74305
 
73929
74306
  declare interface ZMembers {
@@ -73936,8 +74313,8 @@ declare const ZMembers: {
73936
74313
  decode(input: _m0.Reader | Uint8Array, length?: number): ZMembers;
73937
74314
  fromJSON(object: any): ZMembers;
73938
74315
  toJSON(message: ZMembers): unknown;
73939
- create(base?: DeepPartial_84<ZMembers>): ZMembers;
73940
- fromPartial(object: DeepPartial_84<ZMembers>): ZMembers;
74316
+ create(base?: DeepPartial_87<ZMembers>): ZMembers;
74317
+ fromPartial(object: DeepPartial_87<ZMembers>): ZMembers;
73941
74318
  };
73942
74319
 
73943
74320
  declare interface ZRangeByLexRequest {
@@ -73953,8 +74330,8 @@ declare const ZRangeByLexRequest: {
73953
74330
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRangeByLexRequest;
73954
74331
  fromJSON(object: any): ZRangeByLexRequest;
73955
74332
  toJSON(message: ZRangeByLexRequest): unknown;
73956
- create(base?: DeepPartial_84<ZRangeByLexRequest>): ZRangeByLexRequest;
73957
- fromPartial(object: DeepPartial_84<ZRangeByLexRequest>): ZRangeByLexRequest;
74333
+ create(base?: DeepPartial_87<ZRangeByLexRequest>): ZRangeByLexRequest;
74334
+ fromPartial(object: DeepPartial_87<ZRangeByLexRequest>): ZRangeByLexRequest;
73958
74335
  };
73959
74336
 
73960
74337
  export declare type ZRangeByScoreOptions = {
@@ -73979,8 +74356,8 @@ declare const ZRangeByScoreRequest: {
73979
74356
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRangeByScoreRequest;
73980
74357
  fromJSON(object: any): ZRangeByScoreRequest;
73981
74358
  toJSON(message: ZRangeByScoreRequest): unknown;
73982
- create(base?: DeepPartial_84<ZRangeByScoreRequest>): ZRangeByScoreRequest;
73983
- fromPartial(object: DeepPartial_84<ZRangeByScoreRequest>): ZRangeByScoreRequest;
74359
+ create(base?: DeepPartial_87<ZRangeByScoreRequest>): ZRangeByScoreRequest;
74360
+ fromPartial(object: DeepPartial_87<ZRangeByScoreRequest>): ZRangeByScoreRequest;
73984
74361
  };
73985
74362
 
73986
74363
  export declare type ZRangeOptions = {
@@ -74010,8 +74387,8 @@ declare const ZRangeRequest: {
74010
74387
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRangeRequest;
74011
74388
  fromJSON(object: any): ZRangeRequest;
74012
74389
  toJSON(message: ZRangeRequest): unknown;
74013
- create(base?: DeepPartial_84<ZRangeRequest>): ZRangeRequest;
74014
- fromPartial(object: DeepPartial_84<ZRangeRequest>): ZRangeRequest;
74390
+ create(base?: DeepPartial_87<ZRangeRequest>): ZRangeRequest;
74391
+ fromPartial(object: DeepPartial_87<ZRangeRequest>): ZRangeRequest;
74015
74392
  };
74016
74393
 
74017
74394
  declare interface ZRankRequest {
@@ -74026,8 +74403,8 @@ declare const ZRankRequest: {
74026
74403
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRankRequest;
74027
74404
  fromJSON(object: any): ZRankRequest;
74028
74405
  toJSON(message: ZRankRequest): unknown;
74029
- create(base?: DeepPartial_84<ZRankRequest>): ZRankRequest;
74030
- fromPartial(object: DeepPartial_84<ZRankRequest>): ZRankRequest;
74406
+ create(base?: DeepPartial_87<ZRankRequest>): ZRankRequest;
74407
+ fromPartial(object: DeepPartial_87<ZRankRequest>): ZRankRequest;
74031
74408
  };
74032
74409
 
74033
74410
  declare interface ZRemRangeByLexRequest {
@@ -74043,8 +74420,8 @@ declare const ZRemRangeByLexRequest: {
74043
74420
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRangeByLexRequest;
74044
74421
  fromJSON(object: any): ZRemRangeByLexRequest;
74045
74422
  toJSON(message: ZRemRangeByLexRequest): unknown;
74046
- create(base?: DeepPartial_84<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
74047
- fromPartial(object: DeepPartial_84<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
74423
+ create(base?: DeepPartial_87<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
74424
+ fromPartial(object: DeepPartial_87<ZRemRangeByLexRequest>): ZRemRangeByLexRequest;
74048
74425
  };
74049
74426
 
74050
74427
  declare interface ZRemRangeByRankRequest {
@@ -74060,8 +74437,8 @@ declare const ZRemRangeByRankRequest: {
74060
74437
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRangeByRankRequest;
74061
74438
  fromJSON(object: any): ZRemRangeByRankRequest;
74062
74439
  toJSON(message: ZRemRangeByRankRequest): unknown;
74063
- create(base?: DeepPartial_84<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
74064
- fromPartial(object: DeepPartial_84<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
74440
+ create(base?: DeepPartial_87<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
74441
+ fromPartial(object: DeepPartial_87<ZRemRangeByRankRequest>): ZRemRangeByRankRequest;
74065
74442
  };
74066
74443
 
74067
74444
  declare interface ZRemRangeByScoreRequest {
@@ -74077,8 +74454,8 @@ declare const ZRemRangeByScoreRequest: {
74077
74454
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRangeByScoreRequest;
74078
74455
  fromJSON(object: any): ZRemRangeByScoreRequest;
74079
74456
  toJSON(message: ZRemRangeByScoreRequest): unknown;
74080
- create(base?: DeepPartial_84<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
74081
- fromPartial(object: DeepPartial_84<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
74457
+ create(base?: DeepPartial_87<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
74458
+ fromPartial(object: DeepPartial_87<ZRemRangeByScoreRequest>): ZRemRangeByScoreRequest;
74082
74459
  };
74083
74460
 
74084
74461
  declare interface ZRemRequest {
@@ -74093,8 +74470,8 @@ declare const ZRemRequest: {
74093
74470
  decode(input: _m0.Reader | Uint8Array, length?: number): ZRemRequest;
74094
74471
  fromJSON(object: any): ZRemRequest;
74095
74472
  toJSON(message: ZRemRequest): unknown;
74096
- create(base?: DeepPartial_84<ZRemRequest>): ZRemRequest;
74097
- fromPartial(object: DeepPartial_84<ZRemRequest>): ZRemRequest;
74473
+ create(base?: DeepPartial_87<ZRemRequest>): ZRemRequest;
74474
+ fromPartial(object: DeepPartial_87<ZRemRequest>): ZRemRequest;
74098
74475
  };
74099
74476
 
74100
74477
  declare interface ZScanRequest {
@@ -74113,8 +74490,8 @@ declare const ZScanRequest: {
74113
74490
  decode(input: _m0.Reader | Uint8Array, length?: number): ZScanRequest;
74114
74491
  fromJSON(object: any): ZScanRequest;
74115
74492
  toJSON(message: ZScanRequest): unknown;
74116
- create(base?: DeepPartial_84<ZScanRequest>): ZScanRequest;
74117
- fromPartial(object: DeepPartial_84<ZScanRequest>): ZScanRequest;
74493
+ create(base?: DeepPartial_87<ZScanRequest>): ZScanRequest;
74494
+ fromPartial(object: DeepPartial_87<ZScanRequest>): ZScanRequest;
74118
74495
  };
74119
74496
 
74120
74497
  declare interface ZScanResponse {
@@ -74128,8 +74505,8 @@ declare const ZScanResponse: {
74128
74505
  decode(input: _m0.Reader | Uint8Array, length?: number): ZScanResponse;
74129
74506
  fromJSON(object: any): ZScanResponse;
74130
74507
  toJSON(message: ZScanResponse): unknown;
74131
- create(base?: DeepPartial_84<ZScanResponse>): ZScanResponse;
74132
- fromPartial(object: DeepPartial_84<ZScanResponse>): ZScanResponse;
74508
+ create(base?: DeepPartial_87<ZScanResponse>): ZScanResponse;
74509
+ fromPartial(object: DeepPartial_87<ZScanResponse>): ZScanResponse;
74133
74510
  };
74134
74511
 
74135
74512
  declare interface ZScoreRequest {
@@ -74144,8 +74521,8 @@ declare const ZScoreRequest: {
74144
74521
  decode(input: _m0.Reader | Uint8Array, length?: number): ZScoreRequest;
74145
74522
  fromJSON(object: any): ZScoreRequest;
74146
74523
  toJSON(message: ZScoreRequest): unknown;
74147
- create(base?: DeepPartial_84<ZScoreRequest>): ZScoreRequest;
74148
- fromPartial(object: DeepPartial_84<ZScoreRequest>): ZScoreRequest;
74524
+ create(base?: DeepPartial_87<ZScoreRequest>): ZScoreRequest;
74525
+ fromPartial(object: DeepPartial_87<ZScoreRequest>): ZScoreRequest;
74149
74526
  };
74150
74527
 
74151
74528
  export { }