@jayesol/jayeson.lib.sports 2.2.5-beta.1205 → 2.2.5-beta.1205v3
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/lib/basketball_codec.d.ts +2 -2
- package/lib/basketball_codec.js +209 -1
- package/lib/client.d.ts +2 -2
- package/lib/client.js +686 -1
- package/lib/codec.d.ts +4 -4
- package/lib/codec.js +129 -1
- package/lib/core.d.ts +1 -1
- package/lib/core.js +497 -1
- package/lib/data_structure.d.ts +1 -1
- package/lib/data_structure.js +208 -1
- package/lib/dispatch.js +324 -1
- package/lib/index.js +27 -1
- package/lib/merge.d.ts +1 -1
- package/lib/merge.js +569 -1
- package/lib/message_class.d.ts +1 -1
- package/lib/message_class.js +466 -1
- package/lib/module.d.ts +9 -0
- package/lib/module.js +87 -1
- package/lib/mutable.d.ts +1 -1
- package/lib/mutable.js +1061 -1
- package/lib/protobuf_bundle.d.ts +218 -0
- package/lib/protobuf_bundle.js +9683 -1
- package/lib/receive.d.ts +1 -1
- package/lib/receive.js +484 -1
- package/lib/soccer_codec.d.ts +2 -2
- package/lib/soccer_codec.js +168 -1
- package/lib/tennis_codec.d.ts +2 -2
- package/lib/tennis_codec.js +177 -1
- package/package.json +1 -1
package/lib/protobuf_bundle.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as $protobuf from "protobufjs";
|
|
2
|
+
import Long = require("long");
|
|
2
3
|
/** SportType enum. */
|
|
3
4
|
export enum SportType {
|
|
4
5
|
SOCCER = 0,
|
|
@@ -120,6 +121,13 @@ export class BaseMatch implements IBaseMatch {
|
|
|
120
121
|
* @returns JSON object
|
|
121
122
|
*/
|
|
122
123
|
public toJSON(): { [k: string]: any };
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Gets the default type url for BaseMatch
|
|
127
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
128
|
+
* @returns The default type url
|
|
129
|
+
*/
|
|
130
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
123
131
|
}
|
|
124
132
|
|
|
125
133
|
/** Represents a BaseEvent. */
|
|
@@ -227,6 +235,13 @@ export class BaseEvent implements IBaseEvent {
|
|
|
227
235
|
* @returns JSON object
|
|
228
236
|
*/
|
|
229
237
|
public toJSON(): { [k: string]: any };
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* Gets the default type url for BaseEvent
|
|
241
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
242
|
+
* @returns The default type url
|
|
243
|
+
*/
|
|
244
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
230
245
|
}
|
|
231
246
|
|
|
232
247
|
/** Represents a BaseRecord. */
|
|
@@ -361,6 +376,13 @@ export class BaseRecord implements IBaseRecord {
|
|
|
361
376
|
* @returns JSON object
|
|
362
377
|
*/
|
|
363
378
|
public toJSON(): { [k: string]: any };
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Gets the default type url for BaseRecord
|
|
382
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
383
|
+
* @returns The default type url
|
|
384
|
+
*/
|
|
385
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
364
386
|
}
|
|
365
387
|
|
|
366
388
|
/** PivotBias enum. */
|
|
@@ -465,6 +487,13 @@ export class Stats implements IStats {
|
|
|
465
487
|
* @returns JSON object
|
|
466
488
|
*/
|
|
467
489
|
public toJSON(): { [k: string]: any };
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* Gets the default type url for Stats
|
|
493
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
494
|
+
* @returns The default type url
|
|
495
|
+
*/
|
|
496
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
468
497
|
}
|
|
469
498
|
|
|
470
499
|
/** Represents a BaseEventState. */
|
|
@@ -563,6 +592,13 @@ export class BaseEventState implements IBaseEventState {
|
|
|
563
592
|
* @returns JSON object
|
|
564
593
|
*/
|
|
565
594
|
public toJSON(): { [k: string]: any };
|
|
595
|
+
|
|
596
|
+
/**
|
|
597
|
+
* Gets the default type url for BaseEventState
|
|
598
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
599
|
+
* @returns The default type url
|
|
600
|
+
*/
|
|
601
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
566
602
|
}
|
|
567
603
|
|
|
568
604
|
/** OddType enum. */
|
|
@@ -659,6 +695,13 @@ export class PartitionKey implements IPartitionKey {
|
|
|
659
695
|
* @returns JSON object
|
|
660
696
|
*/
|
|
661
697
|
public toJSON(): { [k: string]: any };
|
|
698
|
+
|
|
699
|
+
/**
|
|
700
|
+
* Gets the default type url for PartitionKey
|
|
701
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
702
|
+
* @returns The default type url
|
|
703
|
+
*/
|
|
704
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
662
705
|
}
|
|
663
706
|
|
|
664
707
|
/** Represents an EventType. */
|
|
@@ -751,6 +794,13 @@ export class EventType implements IEventType {
|
|
|
751
794
|
* @returns JSON object
|
|
752
795
|
*/
|
|
753
796
|
public toJSON(): { [k: string]: any };
|
|
797
|
+
|
|
798
|
+
/**
|
|
799
|
+
* Gets the default type url for EventType
|
|
800
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
801
|
+
* @returns The default type url
|
|
802
|
+
*/
|
|
803
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
754
804
|
}
|
|
755
805
|
|
|
756
806
|
/** OddFormat enum. */
|
|
@@ -852,6 +902,13 @@ export class TimeType implements ITimeType {
|
|
|
852
902
|
* @returns JSON object
|
|
853
903
|
*/
|
|
854
904
|
public toJSON(): { [k: string]: any };
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* Gets the default type url for TimeType
|
|
908
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
909
|
+
* @returns The default type url
|
|
910
|
+
*/
|
|
911
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
855
912
|
}
|
|
856
913
|
|
|
857
914
|
/** Represents a Matches. */
|
|
@@ -935,6 +992,13 @@ export class Matches implements IMatches {
|
|
|
935
992
|
* @returns JSON object
|
|
936
993
|
*/
|
|
937
994
|
public toJSON(): { [k: string]: any };
|
|
995
|
+
|
|
996
|
+
/**
|
|
997
|
+
* Gets the default type url for Matches
|
|
998
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
999
|
+
* @returns The default type url
|
|
1000
|
+
*/
|
|
1001
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
938
1002
|
}
|
|
939
1003
|
|
|
940
1004
|
/** Represents an Events. */
|
|
@@ -1018,6 +1082,13 @@ export class Events implements IEvents {
|
|
|
1018
1082
|
* @returns JSON object
|
|
1019
1083
|
*/
|
|
1020
1084
|
public toJSON(): { [k: string]: any };
|
|
1085
|
+
|
|
1086
|
+
/**
|
|
1087
|
+
* Gets the default type url for Events
|
|
1088
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1089
|
+
* @returns The default type url
|
|
1090
|
+
*/
|
|
1091
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1021
1092
|
}
|
|
1022
1093
|
|
|
1023
1094
|
/** Represents an Odds. */
|
|
@@ -1101,6 +1172,13 @@ export class Odds implements IOdds {
|
|
|
1101
1172
|
* @returns JSON object
|
|
1102
1173
|
*/
|
|
1103
1174
|
public toJSON(): { [k: string]: any };
|
|
1175
|
+
|
|
1176
|
+
/**
|
|
1177
|
+
* Gets the default type url for Odds
|
|
1178
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1179
|
+
* @returns The default type url
|
|
1180
|
+
*/
|
|
1181
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1104
1182
|
}
|
|
1105
1183
|
|
|
1106
1184
|
/** Represents a DataMessage. */
|
|
@@ -1199,6 +1277,13 @@ export class DataMessage implements IDataMessage {
|
|
|
1199
1277
|
* @returns JSON object
|
|
1200
1278
|
*/
|
|
1201
1279
|
public toJSON(): { [k: string]: any };
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Gets the default type url for DataMessage
|
|
1283
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1284
|
+
* @returns The default type url
|
|
1285
|
+
*/
|
|
1286
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1202
1287
|
}
|
|
1203
1288
|
|
|
1204
1289
|
/** Represents a SoccerEvent. */
|
|
@@ -1279,6 +1364,13 @@ export class SoccerEvent implements ISoccerEvent {
|
|
|
1279
1364
|
* @returns JSON object
|
|
1280
1365
|
*/
|
|
1281
1366
|
public toJSON(): { [k: string]: any };
|
|
1367
|
+
|
|
1368
|
+
/**
|
|
1369
|
+
* Gets the default type url for SoccerEvent
|
|
1370
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1371
|
+
* @returns The default type url
|
|
1372
|
+
*/
|
|
1373
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1282
1374
|
}
|
|
1283
1375
|
|
|
1284
1376
|
export namespace SoccerEvent {
|
|
@@ -1377,6 +1469,13 @@ export class SoccerEventState implements ISoccerEventState {
|
|
|
1377
1469
|
* @returns JSON object
|
|
1378
1470
|
*/
|
|
1379
1471
|
public toJSON(): { [k: string]: any };
|
|
1472
|
+
|
|
1473
|
+
/**
|
|
1474
|
+
* Gets the default type url for SoccerEventState
|
|
1475
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1476
|
+
* @returns The default type url
|
|
1477
|
+
*/
|
|
1478
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1380
1479
|
}
|
|
1381
1480
|
|
|
1382
1481
|
export namespace SoccerEventState {
|
|
@@ -1480,6 +1579,13 @@ export class SoccerMatch implements ISoccerMatch {
|
|
|
1480
1579
|
* @returns JSON object
|
|
1481
1580
|
*/
|
|
1482
1581
|
public toJSON(): { [k: string]: any };
|
|
1582
|
+
|
|
1583
|
+
/**
|
|
1584
|
+
* Gets the default type url for SoccerMatch
|
|
1585
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1586
|
+
* @returns The default type url
|
|
1587
|
+
*/
|
|
1588
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1483
1589
|
}
|
|
1484
1590
|
|
|
1485
1591
|
export namespace SoccerMatch {
|
|
@@ -1579,6 +1685,13 @@ export class SoccerRecord implements ISoccerRecord {
|
|
|
1579
1685
|
* @returns JSON object
|
|
1580
1686
|
*/
|
|
1581
1687
|
public toJSON(): { [k: string]: any };
|
|
1688
|
+
|
|
1689
|
+
/**
|
|
1690
|
+
* Gets the default type url for SoccerRecord
|
|
1691
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1692
|
+
* @returns The default type url
|
|
1693
|
+
*/
|
|
1694
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1582
1695
|
}
|
|
1583
1696
|
|
|
1584
1697
|
/** Represents a SoccerTimeType. */
|
|
@@ -1662,6 +1775,13 @@ export class SoccerTimeType implements ISoccerTimeType {
|
|
|
1662
1775
|
* @returns JSON object
|
|
1663
1776
|
*/
|
|
1664
1777
|
public toJSON(): { [k: string]: any };
|
|
1778
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* Gets the default type url for SoccerTimeType
|
|
1781
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1782
|
+
* @returns The default type url
|
|
1783
|
+
*/
|
|
1784
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1665
1785
|
}
|
|
1666
1786
|
|
|
1667
1787
|
export namespace SoccerTimeType {
|
|
@@ -1751,6 +1871,13 @@ export class BasketballEvent implements IBasketballEvent {
|
|
|
1751
1871
|
* @returns JSON object
|
|
1752
1872
|
*/
|
|
1753
1873
|
public toJSON(): { [k: string]: any };
|
|
1874
|
+
|
|
1875
|
+
/**
|
|
1876
|
+
* Gets the default type url for BasketballEvent
|
|
1877
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1878
|
+
* @returns The default type url
|
|
1879
|
+
*/
|
|
1880
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1754
1881
|
}
|
|
1755
1882
|
|
|
1756
1883
|
export namespace BasketballEvent {
|
|
@@ -1854,6 +1981,13 @@ export class BasketballEventState implements IBasketballEventState {
|
|
|
1854
1981
|
* @returns JSON object
|
|
1855
1982
|
*/
|
|
1856
1983
|
public toJSON(): { [k: string]: any };
|
|
1984
|
+
|
|
1985
|
+
/**
|
|
1986
|
+
* Gets the default type url for BasketballEventState
|
|
1987
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1988
|
+
* @returns The default type url
|
|
1989
|
+
*/
|
|
1990
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1857
1991
|
}
|
|
1858
1992
|
|
|
1859
1993
|
export namespace BasketballEventState {
|
|
@@ -1955,6 +2089,13 @@ export class BasketballMatch implements IBasketballMatch {
|
|
|
1955
2089
|
* @returns JSON object
|
|
1956
2090
|
*/
|
|
1957
2091
|
public toJSON(): { [k: string]: any };
|
|
2092
|
+
|
|
2093
|
+
/**
|
|
2094
|
+
* Gets the default type url for BasketballMatch
|
|
2095
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2096
|
+
* @returns The default type url
|
|
2097
|
+
*/
|
|
2098
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1958
2099
|
}
|
|
1959
2100
|
|
|
1960
2101
|
export namespace BasketballMatch {
|
|
@@ -2047,6 +2188,13 @@ export class BasketballRecord implements IBasketballRecord {
|
|
|
2047
2188
|
* @returns JSON object
|
|
2048
2189
|
*/
|
|
2049
2190
|
public toJSON(): { [k: string]: any };
|
|
2191
|
+
|
|
2192
|
+
/**
|
|
2193
|
+
* Gets the default type url for BasketballRecord
|
|
2194
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2195
|
+
* @returns The default type url
|
|
2196
|
+
*/
|
|
2197
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2050
2198
|
}
|
|
2051
2199
|
|
|
2052
2200
|
/** Represents a BasketballTimeType. */
|
|
@@ -2130,6 +2278,13 @@ export class BasketballTimeType implements IBasketballTimeType {
|
|
|
2130
2278
|
* @returns JSON object
|
|
2131
2279
|
*/
|
|
2132
2280
|
public toJSON(): { [k: string]: any };
|
|
2281
|
+
|
|
2282
|
+
/**
|
|
2283
|
+
* Gets the default type url for BasketballTimeType
|
|
2284
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2285
|
+
* @returns The default type url
|
|
2286
|
+
*/
|
|
2287
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2133
2288
|
}
|
|
2134
2289
|
|
|
2135
2290
|
export namespace BasketballTimeType {
|
|
@@ -2225,6 +2380,13 @@ export class TennisEvent implements ITennisEvent {
|
|
|
2225
2380
|
* @returns JSON object
|
|
2226
2381
|
*/
|
|
2227
2382
|
public toJSON(): { [k: string]: any };
|
|
2383
|
+
|
|
2384
|
+
/**
|
|
2385
|
+
* Gets the default type url for TennisEvent
|
|
2386
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2387
|
+
* @returns The default type url
|
|
2388
|
+
*/
|
|
2389
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2228
2390
|
}
|
|
2229
2391
|
|
|
2230
2392
|
export namespace TennisEvent {
|
|
@@ -2330,6 +2492,13 @@ export class TennisEventState implements ITennisEventState {
|
|
|
2330
2492
|
* @returns JSON object
|
|
2331
2493
|
*/
|
|
2332
2494
|
public toJSON(): { [k: string]: any };
|
|
2495
|
+
|
|
2496
|
+
/**
|
|
2497
|
+
* Gets the default type url for TennisEventState
|
|
2498
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2499
|
+
* @returns The default type url
|
|
2500
|
+
*/
|
|
2501
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2333
2502
|
}
|
|
2334
2503
|
|
|
2335
2504
|
export namespace TennisEventState {
|
|
@@ -2422,6 +2591,13 @@ export class TennisMatch implements ITennisMatch {
|
|
|
2422
2591
|
* @returns JSON object
|
|
2423
2592
|
*/
|
|
2424
2593
|
public toJSON(): { [k: string]: any };
|
|
2594
|
+
|
|
2595
|
+
/**
|
|
2596
|
+
* Gets the default type url for TennisMatch
|
|
2597
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2598
|
+
* @returns The default type url
|
|
2599
|
+
*/
|
|
2600
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2425
2601
|
}
|
|
2426
2602
|
|
|
2427
2603
|
export namespace TennisMatch {
|
|
@@ -2518,6 +2694,13 @@ export class TennisRecord implements ITennisRecord {
|
|
|
2518
2694
|
* @returns JSON object
|
|
2519
2695
|
*/
|
|
2520
2696
|
public toJSON(): { [k: string]: any };
|
|
2697
|
+
|
|
2698
|
+
/**
|
|
2699
|
+
* Gets the default type url for TennisRecord
|
|
2700
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2701
|
+
* @returns The default type url
|
|
2702
|
+
*/
|
|
2703
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2521
2704
|
}
|
|
2522
2705
|
|
|
2523
2706
|
/** Represents a TennisTimeType. */
|
|
@@ -2607,6 +2790,13 @@ export class TennisTimeType implements ITennisTimeType {
|
|
|
2607
2790
|
* @returns JSON object
|
|
2608
2791
|
*/
|
|
2609
2792
|
public toJSON(): { [k: string]: any };
|
|
2793
|
+
|
|
2794
|
+
/**
|
|
2795
|
+
* Gets the default type url for TennisTimeType
|
|
2796
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2797
|
+
* @returns The default type url
|
|
2798
|
+
*/
|
|
2799
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2610
2800
|
}
|
|
2611
2801
|
|
|
2612
2802
|
/** NameFeedOddType enum. */
|
|
@@ -2728,6 +2918,13 @@ export class EventName implements IEventName {
|
|
|
2728
2918
|
* @returns JSON object
|
|
2729
2919
|
*/
|
|
2730
2920
|
public toJSON(): { [k: string]: any };
|
|
2921
|
+
|
|
2922
|
+
/**
|
|
2923
|
+
* Gets the default type url for EventName
|
|
2924
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2925
|
+
* @returns The default type url
|
|
2926
|
+
*/
|
|
2927
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2731
2928
|
}
|
|
2732
2929
|
|
|
2733
2930
|
/** Represents a Reset. */
|
|
@@ -2811,6 +3008,13 @@ export class Reset implements IReset {
|
|
|
2811
3008
|
* @returns JSON object
|
|
2812
3009
|
*/
|
|
2813
3010
|
public toJSON(): { [k: string]: any };
|
|
3011
|
+
|
|
3012
|
+
/**
|
|
3013
|
+
* Gets the default type url for Reset
|
|
3014
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3015
|
+
* @returns The default type url
|
|
3016
|
+
*/
|
|
3017
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2814
3018
|
}
|
|
2815
3019
|
|
|
2816
3020
|
/** Represents a Refresh. */
|
|
@@ -2894,6 +3098,13 @@ export class Refresh implements IRefresh {
|
|
|
2894
3098
|
* @returns JSON object
|
|
2895
3099
|
*/
|
|
2896
3100
|
public toJSON(): { [k: string]: any };
|
|
3101
|
+
|
|
3102
|
+
/**
|
|
3103
|
+
* Gets the default type url for Refresh
|
|
3104
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3105
|
+
* @returns The default type url
|
|
3106
|
+
*/
|
|
3107
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2897
3108
|
}
|
|
2898
3109
|
|
|
2899
3110
|
/** Represents a NameFeedCol. */
|
|
@@ -2989,4 +3200,11 @@ export class NameFeedCol implements INameFeedCol {
|
|
|
2989
3200
|
* @returns JSON object
|
|
2990
3201
|
*/
|
|
2991
3202
|
public toJSON(): { [k: string]: any };
|
|
3203
|
+
|
|
3204
|
+
/**
|
|
3205
|
+
* Gets the default type url for NameFeedCol
|
|
3206
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3207
|
+
* @returns The default type url
|
|
3208
|
+
*/
|
|
3209
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2992
3210
|
}
|