@wppconnect/wa-proto 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/WAProto.proto +38 -6
- package/dist/index.d.ts +469 -10
- package/dist/index.js +1330 -35
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4864,6 +4864,9 @@ export namespace waproto {
|
|
|
4864
4864
|
|
|
4865
4865
|
/** ClientPairingProps isChatDbLidMigrated */
|
|
4866
4866
|
isChatDbLidMigrated?: (boolean|null);
|
|
4867
|
+
|
|
4868
|
+
/** ClientPairingProps isSyncdPureLidSession */
|
|
4869
|
+
isSyncdPureLidSession?: (boolean|null);
|
|
4867
4870
|
}
|
|
4868
4871
|
|
|
4869
4872
|
/** Represents a ClientPairingProps. */
|
|
@@ -4878,6 +4881,9 @@ export namespace waproto {
|
|
|
4878
4881
|
/** ClientPairingProps isChatDbLidMigrated. */
|
|
4879
4882
|
public isChatDbLidMigrated?: (boolean|null);
|
|
4880
4883
|
|
|
4884
|
+
/** ClientPairingProps isSyncdPureLidSession. */
|
|
4885
|
+
public isSyncdPureLidSession?: (boolean|null);
|
|
4886
|
+
|
|
4881
4887
|
/**
|
|
4882
4888
|
* Creates a new ClientPairingProps instance using the specified properties.
|
|
4883
4889
|
* @param [properties] Properties to set
|
|
@@ -6821,6 +6827,9 @@ export namespace waproto {
|
|
|
6821
6827
|
|
|
6822
6828
|
/** ContextInfo statusAttributionType */
|
|
6823
6829
|
statusAttributionType?: (waproto.ContextInfo.StatusAttributionType|null);
|
|
6830
|
+
|
|
6831
|
+
/** ContextInfo urlTrackingMap */
|
|
6832
|
+
urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
6824
6833
|
}
|
|
6825
6834
|
|
|
6826
6835
|
/** Represents a ContextInfo. */
|
|
@@ -6955,6 +6964,9 @@ export namespace waproto {
|
|
|
6955
6964
|
/** ContextInfo statusAttributionType. */
|
|
6956
6965
|
public statusAttributionType?: (waproto.ContextInfo.StatusAttributionType|null);
|
|
6957
6966
|
|
|
6967
|
+
/** ContextInfo urlTrackingMap. */
|
|
6968
|
+
public urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
6969
|
+
|
|
6958
6970
|
/**
|
|
6959
6971
|
* Creates a new ContextInfo instance using the specified properties.
|
|
6960
6972
|
* @param [properties] Properties to set
|
|
@@ -12853,6 +12865,115 @@ export namespace waproto {
|
|
|
12853
12865
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12854
12866
|
}
|
|
12855
12867
|
|
|
12868
|
+
/** Properties of a LIDMigrationMapping. */
|
|
12869
|
+
interface ILIDMigrationMapping {
|
|
12870
|
+
|
|
12871
|
+
/** LIDMigrationMapping pn */
|
|
12872
|
+
pn: (number|Long);
|
|
12873
|
+
|
|
12874
|
+
/** LIDMigrationMapping assignedLid */
|
|
12875
|
+
assignedLid: (number|Long);
|
|
12876
|
+
|
|
12877
|
+
/** LIDMigrationMapping latestLid */
|
|
12878
|
+
latestLid?: (number|Long|null);
|
|
12879
|
+
}
|
|
12880
|
+
|
|
12881
|
+
/** Represents a LIDMigrationMapping. */
|
|
12882
|
+
class LIDMigrationMapping implements ILIDMigrationMapping {
|
|
12883
|
+
|
|
12884
|
+
/**
|
|
12885
|
+
* Constructs a new LIDMigrationMapping.
|
|
12886
|
+
* @param [properties] Properties to set
|
|
12887
|
+
*/
|
|
12888
|
+
constructor(properties?: waproto.ILIDMigrationMapping);
|
|
12889
|
+
|
|
12890
|
+
/** LIDMigrationMapping pn. */
|
|
12891
|
+
public pn: (number|Long);
|
|
12892
|
+
|
|
12893
|
+
/** LIDMigrationMapping assignedLid. */
|
|
12894
|
+
public assignedLid: (number|Long);
|
|
12895
|
+
|
|
12896
|
+
/** LIDMigrationMapping latestLid. */
|
|
12897
|
+
public latestLid?: (number|Long|null);
|
|
12898
|
+
|
|
12899
|
+
/**
|
|
12900
|
+
* Creates a new LIDMigrationMapping instance using the specified properties.
|
|
12901
|
+
* @param [properties] Properties to set
|
|
12902
|
+
* @returns LIDMigrationMapping instance
|
|
12903
|
+
*/
|
|
12904
|
+
public static create(properties?: waproto.ILIDMigrationMapping): waproto.LIDMigrationMapping;
|
|
12905
|
+
|
|
12906
|
+
/**
|
|
12907
|
+
* Encodes the specified LIDMigrationMapping message. Does not implicitly {@link waproto.LIDMigrationMapping.verify|verify} messages.
|
|
12908
|
+
* @param message LIDMigrationMapping message or plain object to encode
|
|
12909
|
+
* @param [writer] Writer to encode to
|
|
12910
|
+
* @returns Writer
|
|
12911
|
+
*/
|
|
12912
|
+
public static encode(message: waproto.ILIDMigrationMapping, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12913
|
+
|
|
12914
|
+
/**
|
|
12915
|
+
* Encodes the specified LIDMigrationMapping message, length delimited. Does not implicitly {@link waproto.LIDMigrationMapping.verify|verify} messages.
|
|
12916
|
+
* @param message LIDMigrationMapping message or plain object to encode
|
|
12917
|
+
* @param [writer] Writer to encode to
|
|
12918
|
+
* @returns Writer
|
|
12919
|
+
*/
|
|
12920
|
+
public static encodeDelimited(message: waproto.ILIDMigrationMapping, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12921
|
+
|
|
12922
|
+
/**
|
|
12923
|
+
* Decodes a LIDMigrationMapping message from the specified reader or buffer.
|
|
12924
|
+
* @param reader Reader or buffer to decode from
|
|
12925
|
+
* @param [length] Message length if known beforehand
|
|
12926
|
+
* @returns LIDMigrationMapping
|
|
12927
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12928
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12929
|
+
*/
|
|
12930
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.LIDMigrationMapping;
|
|
12931
|
+
|
|
12932
|
+
/**
|
|
12933
|
+
* Decodes a LIDMigrationMapping message from the specified reader or buffer, length delimited.
|
|
12934
|
+
* @param reader Reader or buffer to decode from
|
|
12935
|
+
* @returns LIDMigrationMapping
|
|
12936
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12937
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12938
|
+
*/
|
|
12939
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.LIDMigrationMapping;
|
|
12940
|
+
|
|
12941
|
+
/**
|
|
12942
|
+
* Verifies a LIDMigrationMapping message.
|
|
12943
|
+
* @param message Plain object to verify
|
|
12944
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12945
|
+
*/
|
|
12946
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12947
|
+
|
|
12948
|
+
/**
|
|
12949
|
+
* Creates a LIDMigrationMapping message from a plain object. Also converts values to their respective internal types.
|
|
12950
|
+
* @param object Plain object
|
|
12951
|
+
* @returns LIDMigrationMapping
|
|
12952
|
+
*/
|
|
12953
|
+
public static fromObject(object: { [k: string]: any }): waproto.LIDMigrationMapping;
|
|
12954
|
+
|
|
12955
|
+
/**
|
|
12956
|
+
* Creates a plain object from a LIDMigrationMapping message. Also converts values to other types if specified.
|
|
12957
|
+
* @param message LIDMigrationMapping
|
|
12958
|
+
* @param [options] Conversion options
|
|
12959
|
+
* @returns Plain object
|
|
12960
|
+
*/
|
|
12961
|
+
public static toObject(message: waproto.LIDMigrationMapping, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12962
|
+
|
|
12963
|
+
/**
|
|
12964
|
+
* Converts this LIDMigrationMapping to JSON.
|
|
12965
|
+
* @returns JSON object
|
|
12966
|
+
*/
|
|
12967
|
+
public toJSON(): { [k: string]: any };
|
|
12968
|
+
|
|
12969
|
+
/**
|
|
12970
|
+
* Gets the default type url for LIDMigrationMapping
|
|
12971
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12972
|
+
* @returns The default type url
|
|
12973
|
+
*/
|
|
12974
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12975
|
+
}
|
|
12976
|
+
|
|
12856
12977
|
/** Properties of a LIDMigrationMappingSyncMessage. */
|
|
12857
12978
|
interface ILIDMigrationMappingSyncMessage {
|
|
12858
12979
|
|
|
@@ -12950,6 +13071,103 @@ export namespace waproto {
|
|
|
12950
13071
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12951
13072
|
}
|
|
12952
13073
|
|
|
13074
|
+
/** Properties of a LIDMigrationMappingSyncPayload. */
|
|
13075
|
+
interface ILIDMigrationMappingSyncPayload {
|
|
13076
|
+
|
|
13077
|
+
/** LIDMigrationMappingSyncPayload pnToLidMappings */
|
|
13078
|
+
pnToLidMappings?: (waproto.ILIDMigrationMapping[]|null);
|
|
13079
|
+
}
|
|
13080
|
+
|
|
13081
|
+
/** Represents a LIDMigrationMappingSyncPayload. */
|
|
13082
|
+
class LIDMigrationMappingSyncPayload implements ILIDMigrationMappingSyncPayload {
|
|
13083
|
+
|
|
13084
|
+
/**
|
|
13085
|
+
* Constructs a new LIDMigrationMappingSyncPayload.
|
|
13086
|
+
* @param [properties] Properties to set
|
|
13087
|
+
*/
|
|
13088
|
+
constructor(properties?: waproto.ILIDMigrationMappingSyncPayload);
|
|
13089
|
+
|
|
13090
|
+
/** LIDMigrationMappingSyncPayload pnToLidMappings. */
|
|
13091
|
+
public pnToLidMappings: waproto.ILIDMigrationMapping[];
|
|
13092
|
+
|
|
13093
|
+
/**
|
|
13094
|
+
* Creates a new LIDMigrationMappingSyncPayload instance using the specified properties.
|
|
13095
|
+
* @param [properties] Properties to set
|
|
13096
|
+
* @returns LIDMigrationMappingSyncPayload instance
|
|
13097
|
+
*/
|
|
13098
|
+
public static create(properties?: waproto.ILIDMigrationMappingSyncPayload): waproto.LIDMigrationMappingSyncPayload;
|
|
13099
|
+
|
|
13100
|
+
/**
|
|
13101
|
+
* Encodes the specified LIDMigrationMappingSyncPayload message. Does not implicitly {@link waproto.LIDMigrationMappingSyncPayload.verify|verify} messages.
|
|
13102
|
+
* @param message LIDMigrationMappingSyncPayload message or plain object to encode
|
|
13103
|
+
* @param [writer] Writer to encode to
|
|
13104
|
+
* @returns Writer
|
|
13105
|
+
*/
|
|
13106
|
+
public static encode(message: waproto.ILIDMigrationMappingSyncPayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13107
|
+
|
|
13108
|
+
/**
|
|
13109
|
+
* Encodes the specified LIDMigrationMappingSyncPayload message, length delimited. Does not implicitly {@link waproto.LIDMigrationMappingSyncPayload.verify|verify} messages.
|
|
13110
|
+
* @param message LIDMigrationMappingSyncPayload message or plain object to encode
|
|
13111
|
+
* @param [writer] Writer to encode to
|
|
13112
|
+
* @returns Writer
|
|
13113
|
+
*/
|
|
13114
|
+
public static encodeDelimited(message: waproto.ILIDMigrationMappingSyncPayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13115
|
+
|
|
13116
|
+
/**
|
|
13117
|
+
* Decodes a LIDMigrationMappingSyncPayload message from the specified reader or buffer.
|
|
13118
|
+
* @param reader Reader or buffer to decode from
|
|
13119
|
+
* @param [length] Message length if known beforehand
|
|
13120
|
+
* @returns LIDMigrationMappingSyncPayload
|
|
13121
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13122
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13123
|
+
*/
|
|
13124
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.LIDMigrationMappingSyncPayload;
|
|
13125
|
+
|
|
13126
|
+
/**
|
|
13127
|
+
* Decodes a LIDMigrationMappingSyncPayload message from the specified reader or buffer, length delimited.
|
|
13128
|
+
* @param reader Reader or buffer to decode from
|
|
13129
|
+
* @returns LIDMigrationMappingSyncPayload
|
|
13130
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13131
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13132
|
+
*/
|
|
13133
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.LIDMigrationMappingSyncPayload;
|
|
13134
|
+
|
|
13135
|
+
/**
|
|
13136
|
+
* Verifies a LIDMigrationMappingSyncPayload message.
|
|
13137
|
+
* @param message Plain object to verify
|
|
13138
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13139
|
+
*/
|
|
13140
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13141
|
+
|
|
13142
|
+
/**
|
|
13143
|
+
* Creates a LIDMigrationMappingSyncPayload message from a plain object. Also converts values to their respective internal types.
|
|
13144
|
+
* @param object Plain object
|
|
13145
|
+
* @returns LIDMigrationMappingSyncPayload
|
|
13146
|
+
*/
|
|
13147
|
+
public static fromObject(object: { [k: string]: any }): waproto.LIDMigrationMappingSyncPayload;
|
|
13148
|
+
|
|
13149
|
+
/**
|
|
13150
|
+
* Creates a plain object from a LIDMigrationMappingSyncPayload message. Also converts values to other types if specified.
|
|
13151
|
+
* @param message LIDMigrationMappingSyncPayload
|
|
13152
|
+
* @param [options] Conversion options
|
|
13153
|
+
* @returns Plain object
|
|
13154
|
+
*/
|
|
13155
|
+
public static toObject(message: waproto.LIDMigrationMappingSyncPayload, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13156
|
+
|
|
13157
|
+
/**
|
|
13158
|
+
* Converts this LIDMigrationMappingSyncPayload to JSON.
|
|
13159
|
+
* @returns JSON object
|
|
13160
|
+
*/
|
|
13161
|
+
public toJSON(): { [k: string]: any };
|
|
13162
|
+
|
|
13163
|
+
/**
|
|
13164
|
+
* Gets the default type url for LIDMigrationMappingSyncPayload
|
|
13165
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13166
|
+
* @returns The default type url
|
|
13167
|
+
*/
|
|
13168
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13169
|
+
}
|
|
13170
|
+
|
|
12953
13171
|
/** Properties of a LegacyMessage. */
|
|
12954
13172
|
interface ILegacyMessage {
|
|
12955
13173
|
|
|
@@ -13849,6 +14067,9 @@ export namespace waproto {
|
|
|
13849
14067
|
|
|
13850
14068
|
/** Message statusAddYours */
|
|
13851
14069
|
statusAddYours?: (waproto.Message.IFutureProofMessage|null);
|
|
14070
|
+
|
|
14071
|
+
/** Message groupStatusMessage */
|
|
14072
|
+
groupStatusMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
13852
14073
|
}
|
|
13853
14074
|
|
|
13854
14075
|
/** Represents a Message. */
|
|
@@ -14097,6 +14318,9 @@ export namespace waproto {
|
|
|
14097
14318
|
/** Message statusAddYours. */
|
|
14098
14319
|
public statusAddYours?: (waproto.Message.IFutureProofMessage|null);
|
|
14099
14320
|
|
|
14321
|
+
/** Message groupStatusMessage. */
|
|
14322
|
+
public groupStatusMessage?: (waproto.Message.IFutureProofMessage|null);
|
|
14323
|
+
|
|
14100
14324
|
/**
|
|
14101
14325
|
* Creates a new Message instance using the specified properties.
|
|
14102
14326
|
* @param [properties] Properties to set
|
|
@@ -20064,6 +20288,9 @@ export namespace waproto {
|
|
|
20064
20288
|
/** InteractiveMessage contextInfo */
|
|
20065
20289
|
contextInfo?: (waproto.IContextInfo|null);
|
|
20066
20290
|
|
|
20291
|
+
/** InteractiveMessage urlTrackingMap */
|
|
20292
|
+
urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
20293
|
+
|
|
20067
20294
|
/** InteractiveMessage shopStorefrontMessage */
|
|
20068
20295
|
shopStorefrontMessage?: (waproto.Message.InteractiveMessage.IShopMessage|null);
|
|
20069
20296
|
|
|
@@ -20098,6 +20325,9 @@ export namespace waproto {
|
|
|
20098
20325
|
/** InteractiveMessage contextInfo. */
|
|
20099
20326
|
public contextInfo?: (waproto.IContextInfo|null);
|
|
20100
20327
|
|
|
20328
|
+
/** InteractiveMessage urlTrackingMap. */
|
|
20329
|
+
public urlTrackingMap?: (waproto.IUrlTrackingMap|null);
|
|
20330
|
+
|
|
20101
20331
|
/** InteractiveMessage shopStorefrontMessage. */
|
|
20102
20332
|
public shopStorefrontMessage?: (waproto.Message.InteractiveMessage.IShopMessage|null);
|
|
20103
20333
|
|
|
@@ -25532,6 +25762,13 @@ export namespace waproto {
|
|
|
25532
25762
|
}
|
|
25533
25763
|
}
|
|
25534
25764
|
|
|
25765
|
+
/** PollContentType enum. */
|
|
25766
|
+
enum PollContentType {
|
|
25767
|
+
UNKNOWN = 0,
|
|
25768
|
+
TEXT = 1,
|
|
25769
|
+
IMAGE = 2
|
|
25770
|
+
}
|
|
25771
|
+
|
|
25535
25772
|
/** Properties of a PollCreationMessage. */
|
|
25536
25773
|
interface IPollCreationMessage {
|
|
25537
25774
|
|
|
@@ -25550,8 +25787,8 @@ export namespace waproto {
|
|
|
25550
25787
|
/** PollCreationMessage contextInfo */
|
|
25551
25788
|
contextInfo?: (waproto.IContextInfo|null);
|
|
25552
25789
|
|
|
25553
|
-
/** PollCreationMessage
|
|
25554
|
-
|
|
25790
|
+
/** PollCreationMessage pollContentType */
|
|
25791
|
+
pollContentType?: (waproto.Message.PollContentType|null);
|
|
25555
25792
|
|
|
25556
25793
|
/** PollCreationMessage pollType */
|
|
25557
25794
|
pollType?: (waproto.Message.PollCreationMessage.PollType|null);
|
|
@@ -25584,8 +25821,8 @@ export namespace waproto {
|
|
|
25584
25821
|
/** PollCreationMessage contextInfo. */
|
|
25585
25822
|
public contextInfo?: (waproto.IContextInfo|null);
|
|
25586
25823
|
|
|
25587
|
-
/** PollCreationMessage
|
|
25588
|
-
public
|
|
25824
|
+
/** PollCreationMessage pollContentType. */
|
|
25825
|
+
public pollContentType?: (waproto.Message.PollContentType|null);
|
|
25589
25826
|
|
|
25590
25827
|
/** PollCreationMessage pollType. */
|
|
25591
25828
|
public pollType?: (waproto.Message.PollCreationMessage.PollType|null);
|
|
@@ -25886,12 +26123,6 @@ export namespace waproto {
|
|
|
25886
26123
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25887
26124
|
}
|
|
25888
26125
|
|
|
25889
|
-
/** PollMediaType enum. */
|
|
25890
|
-
enum PollMediaType {
|
|
25891
|
-
TEXT = 1,
|
|
25892
|
-
IMAGE = 2
|
|
25893
|
-
}
|
|
25894
|
-
|
|
25895
26126
|
/** Properties of a PollResultSnapshotMessage. */
|
|
25896
26127
|
interface IPollResultSnapshotMessage {
|
|
25897
26128
|
|
|
@@ -30510,6 +30741,9 @@ export namespace waproto {
|
|
|
30510
30741
|
/** MsgOpaqueData isSentCagPollCreation */
|
|
30511
30742
|
isSentCagPollCreation?: (boolean|null);
|
|
30512
30743
|
|
|
30744
|
+
/** MsgOpaqueData pollContentType */
|
|
30745
|
+
pollContentType?: (waproto.MsgOpaqueData.PollContentType|null);
|
|
30746
|
+
|
|
30513
30747
|
/** MsgOpaqueData pollVotesSnapshot */
|
|
30514
30748
|
pollVotesSnapshot?: (waproto.MsgOpaqueData.IPollVotesSnapshot|null);
|
|
30515
30749
|
|
|
@@ -30631,6 +30865,9 @@ export namespace waproto {
|
|
|
30631
30865
|
/** MsgOpaqueData isSentCagPollCreation. */
|
|
30632
30866
|
public isSentCagPollCreation?: (boolean|null);
|
|
30633
30867
|
|
|
30868
|
+
/** MsgOpaqueData pollContentType. */
|
|
30869
|
+
public pollContentType?: (waproto.MsgOpaqueData.PollContentType|null);
|
|
30870
|
+
|
|
30634
30871
|
/** MsgOpaqueData pollVotesSnapshot. */
|
|
30635
30872
|
public pollVotesSnapshot?: (waproto.MsgOpaqueData.IPollVotesSnapshot|null);
|
|
30636
30873
|
|
|
@@ -30883,6 +31120,13 @@ export namespace waproto {
|
|
|
30883
31120
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30884
31121
|
}
|
|
30885
31122
|
|
|
31123
|
+
/** PollContentType enum. */
|
|
31124
|
+
enum PollContentType {
|
|
31125
|
+
UNKNOWN = 0,
|
|
31126
|
+
TEXT = 1,
|
|
31127
|
+
IMAGE = 2
|
|
31128
|
+
}
|
|
31129
|
+
|
|
30886
31130
|
/** Properties of a PollOption. */
|
|
30887
31131
|
interface IPollOption {
|
|
30888
31132
|
|
|
@@ -44849,6 +45093,221 @@ export namespace waproto {
|
|
|
44849
45093
|
}
|
|
44850
45094
|
}
|
|
44851
45095
|
|
|
45096
|
+
/** Properties of an UrlTrackingMap. */
|
|
45097
|
+
interface IUrlTrackingMap {
|
|
45098
|
+
|
|
45099
|
+
/** UrlTrackingMap urlTrackingMapElements */
|
|
45100
|
+
urlTrackingMapElements?: (waproto.UrlTrackingMap.IUrlTrackingMapElement[]|null);
|
|
45101
|
+
}
|
|
45102
|
+
|
|
45103
|
+
/** Represents an UrlTrackingMap. */
|
|
45104
|
+
class UrlTrackingMap implements IUrlTrackingMap {
|
|
45105
|
+
|
|
45106
|
+
/**
|
|
45107
|
+
* Constructs a new UrlTrackingMap.
|
|
45108
|
+
* @param [properties] Properties to set
|
|
45109
|
+
*/
|
|
45110
|
+
constructor(properties?: waproto.IUrlTrackingMap);
|
|
45111
|
+
|
|
45112
|
+
/** UrlTrackingMap urlTrackingMapElements. */
|
|
45113
|
+
public urlTrackingMapElements: waproto.UrlTrackingMap.IUrlTrackingMapElement[];
|
|
45114
|
+
|
|
45115
|
+
/**
|
|
45116
|
+
* Creates a new UrlTrackingMap instance using the specified properties.
|
|
45117
|
+
* @param [properties] Properties to set
|
|
45118
|
+
* @returns UrlTrackingMap instance
|
|
45119
|
+
*/
|
|
45120
|
+
public static create(properties?: waproto.IUrlTrackingMap): waproto.UrlTrackingMap;
|
|
45121
|
+
|
|
45122
|
+
/**
|
|
45123
|
+
* Encodes the specified UrlTrackingMap message. Does not implicitly {@link waproto.UrlTrackingMap.verify|verify} messages.
|
|
45124
|
+
* @param message UrlTrackingMap message or plain object to encode
|
|
45125
|
+
* @param [writer] Writer to encode to
|
|
45126
|
+
* @returns Writer
|
|
45127
|
+
*/
|
|
45128
|
+
public static encode(message: waproto.IUrlTrackingMap, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45129
|
+
|
|
45130
|
+
/**
|
|
45131
|
+
* Encodes the specified UrlTrackingMap message, length delimited. Does not implicitly {@link waproto.UrlTrackingMap.verify|verify} messages.
|
|
45132
|
+
* @param message UrlTrackingMap message or plain object to encode
|
|
45133
|
+
* @param [writer] Writer to encode to
|
|
45134
|
+
* @returns Writer
|
|
45135
|
+
*/
|
|
45136
|
+
public static encodeDelimited(message: waproto.IUrlTrackingMap, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45137
|
+
|
|
45138
|
+
/**
|
|
45139
|
+
* Decodes an UrlTrackingMap message from the specified reader or buffer.
|
|
45140
|
+
* @param reader Reader or buffer to decode from
|
|
45141
|
+
* @param [length] Message length if known beforehand
|
|
45142
|
+
* @returns UrlTrackingMap
|
|
45143
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45144
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45145
|
+
*/
|
|
45146
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.UrlTrackingMap;
|
|
45147
|
+
|
|
45148
|
+
/**
|
|
45149
|
+
* Decodes an UrlTrackingMap message from the specified reader or buffer, length delimited.
|
|
45150
|
+
* @param reader Reader or buffer to decode from
|
|
45151
|
+
* @returns UrlTrackingMap
|
|
45152
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45153
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45154
|
+
*/
|
|
45155
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.UrlTrackingMap;
|
|
45156
|
+
|
|
45157
|
+
/**
|
|
45158
|
+
* Verifies an UrlTrackingMap message.
|
|
45159
|
+
* @param message Plain object to verify
|
|
45160
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
45161
|
+
*/
|
|
45162
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
45163
|
+
|
|
45164
|
+
/**
|
|
45165
|
+
* Creates an UrlTrackingMap message from a plain object. Also converts values to their respective internal types.
|
|
45166
|
+
* @param object Plain object
|
|
45167
|
+
* @returns UrlTrackingMap
|
|
45168
|
+
*/
|
|
45169
|
+
public static fromObject(object: { [k: string]: any }): waproto.UrlTrackingMap;
|
|
45170
|
+
|
|
45171
|
+
/**
|
|
45172
|
+
* Creates a plain object from an UrlTrackingMap message. Also converts values to other types if specified.
|
|
45173
|
+
* @param message UrlTrackingMap
|
|
45174
|
+
* @param [options] Conversion options
|
|
45175
|
+
* @returns Plain object
|
|
45176
|
+
*/
|
|
45177
|
+
public static toObject(message: waproto.UrlTrackingMap, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
45178
|
+
|
|
45179
|
+
/**
|
|
45180
|
+
* Converts this UrlTrackingMap to JSON.
|
|
45181
|
+
* @returns JSON object
|
|
45182
|
+
*/
|
|
45183
|
+
public toJSON(): { [k: string]: any };
|
|
45184
|
+
|
|
45185
|
+
/**
|
|
45186
|
+
* Gets the default type url for UrlTrackingMap
|
|
45187
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
45188
|
+
* @returns The default type url
|
|
45189
|
+
*/
|
|
45190
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
45191
|
+
}
|
|
45192
|
+
|
|
45193
|
+
namespace UrlTrackingMap {
|
|
45194
|
+
|
|
45195
|
+
/** Properties of an UrlTrackingMapElement. */
|
|
45196
|
+
interface IUrlTrackingMapElement {
|
|
45197
|
+
|
|
45198
|
+
/** UrlTrackingMapElement originalUrl */
|
|
45199
|
+
originalUrl?: (string|null);
|
|
45200
|
+
|
|
45201
|
+
/** UrlTrackingMapElement unconsentedUsersUrl */
|
|
45202
|
+
unconsentedUsersUrl?: (string|null);
|
|
45203
|
+
|
|
45204
|
+
/** UrlTrackingMapElement consentedUsersUrl */
|
|
45205
|
+
consentedUsersUrl?: (string|null);
|
|
45206
|
+
|
|
45207
|
+
/** UrlTrackingMapElement cardIndex */
|
|
45208
|
+
cardIndex?: (number|null);
|
|
45209
|
+
}
|
|
45210
|
+
|
|
45211
|
+
/** Represents an UrlTrackingMapElement. */
|
|
45212
|
+
class UrlTrackingMapElement implements IUrlTrackingMapElement {
|
|
45213
|
+
|
|
45214
|
+
/**
|
|
45215
|
+
* Constructs a new UrlTrackingMapElement.
|
|
45216
|
+
* @param [properties] Properties to set
|
|
45217
|
+
*/
|
|
45218
|
+
constructor(properties?: waproto.UrlTrackingMap.IUrlTrackingMapElement);
|
|
45219
|
+
|
|
45220
|
+
/** UrlTrackingMapElement originalUrl. */
|
|
45221
|
+
public originalUrl?: (string|null);
|
|
45222
|
+
|
|
45223
|
+
/** UrlTrackingMapElement unconsentedUsersUrl. */
|
|
45224
|
+
public unconsentedUsersUrl?: (string|null);
|
|
45225
|
+
|
|
45226
|
+
/** UrlTrackingMapElement consentedUsersUrl. */
|
|
45227
|
+
public consentedUsersUrl?: (string|null);
|
|
45228
|
+
|
|
45229
|
+
/** UrlTrackingMapElement cardIndex. */
|
|
45230
|
+
public cardIndex?: (number|null);
|
|
45231
|
+
|
|
45232
|
+
/**
|
|
45233
|
+
* Creates a new UrlTrackingMapElement instance using the specified properties.
|
|
45234
|
+
* @param [properties] Properties to set
|
|
45235
|
+
* @returns UrlTrackingMapElement instance
|
|
45236
|
+
*/
|
|
45237
|
+
public static create(properties?: waproto.UrlTrackingMap.IUrlTrackingMapElement): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45238
|
+
|
|
45239
|
+
/**
|
|
45240
|
+
* Encodes the specified UrlTrackingMapElement message. Does not implicitly {@link waproto.UrlTrackingMap.UrlTrackingMapElement.verify|verify} messages.
|
|
45241
|
+
* @param message UrlTrackingMapElement message or plain object to encode
|
|
45242
|
+
* @param [writer] Writer to encode to
|
|
45243
|
+
* @returns Writer
|
|
45244
|
+
*/
|
|
45245
|
+
public static encode(message: waproto.UrlTrackingMap.IUrlTrackingMapElement, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45246
|
+
|
|
45247
|
+
/**
|
|
45248
|
+
* Encodes the specified UrlTrackingMapElement message, length delimited. Does not implicitly {@link waproto.UrlTrackingMap.UrlTrackingMapElement.verify|verify} messages.
|
|
45249
|
+
* @param message UrlTrackingMapElement message or plain object to encode
|
|
45250
|
+
* @param [writer] Writer to encode to
|
|
45251
|
+
* @returns Writer
|
|
45252
|
+
*/
|
|
45253
|
+
public static encodeDelimited(message: waproto.UrlTrackingMap.IUrlTrackingMapElement, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
45254
|
+
|
|
45255
|
+
/**
|
|
45256
|
+
* Decodes an UrlTrackingMapElement message from the specified reader or buffer.
|
|
45257
|
+
* @param reader Reader or buffer to decode from
|
|
45258
|
+
* @param [length] Message length if known beforehand
|
|
45259
|
+
* @returns UrlTrackingMapElement
|
|
45260
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45261
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45262
|
+
*/
|
|
45263
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45264
|
+
|
|
45265
|
+
/**
|
|
45266
|
+
* Decodes an UrlTrackingMapElement message from the specified reader or buffer, length delimited.
|
|
45267
|
+
* @param reader Reader or buffer to decode from
|
|
45268
|
+
* @returns UrlTrackingMapElement
|
|
45269
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
45270
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
45271
|
+
*/
|
|
45272
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45273
|
+
|
|
45274
|
+
/**
|
|
45275
|
+
* Verifies an UrlTrackingMapElement message.
|
|
45276
|
+
* @param message Plain object to verify
|
|
45277
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
45278
|
+
*/
|
|
45279
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
45280
|
+
|
|
45281
|
+
/**
|
|
45282
|
+
* Creates an UrlTrackingMapElement message from a plain object. Also converts values to their respective internal types.
|
|
45283
|
+
* @param object Plain object
|
|
45284
|
+
* @returns UrlTrackingMapElement
|
|
45285
|
+
*/
|
|
45286
|
+
public static fromObject(object: { [k: string]: any }): waproto.UrlTrackingMap.UrlTrackingMapElement;
|
|
45287
|
+
|
|
45288
|
+
/**
|
|
45289
|
+
* Creates a plain object from an UrlTrackingMapElement message. Also converts values to other types if specified.
|
|
45290
|
+
* @param message UrlTrackingMapElement
|
|
45291
|
+
* @param [options] Conversion options
|
|
45292
|
+
* @returns Plain object
|
|
45293
|
+
*/
|
|
45294
|
+
public static toObject(message: waproto.UrlTrackingMap.UrlTrackingMapElement, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
45295
|
+
|
|
45296
|
+
/**
|
|
45297
|
+
* Converts this UrlTrackingMapElement to JSON.
|
|
45298
|
+
* @returns JSON object
|
|
45299
|
+
*/
|
|
45300
|
+
public toJSON(): { [k: string]: any };
|
|
45301
|
+
|
|
45302
|
+
/**
|
|
45303
|
+
* Gets the default type url for UrlTrackingMapElement
|
|
45304
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
45305
|
+
* @returns The default type url
|
|
45306
|
+
*/
|
|
45307
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
45308
|
+
}
|
|
45309
|
+
}
|
|
45310
|
+
|
|
44852
45311
|
/** Properties of a UserPassword. */
|
|
44853
45312
|
interface IUserPassword {
|
|
44854
45313
|
|