@@ -22,6 +22,12 @@ public class ClientConfig extends HashMap<String, Object> {
2222 public static final String PUSH_PATH = "push.path" ;
2323 public static final Object PUSH_PATH_SCHEMA = String .class ;
2424
25+ public static final String BATCH_REGID_PUSH_PATH = "batch.regid.path" ;
26+ public static final Object BATCH_REGID_PUSH_PATH_SCHEMA = String .class ;
27+
28+ public static final String BATCH_ALIAS_PUSH_PATH = "batch.alias.path" ;
29+ public static final Object BATCH_ALIAS_PUSH_PATH_SCHEMA = String .class ;
30+
2531 public static final String PUSH_VALIDATE_PATH = "push.validate.path" ;
2632 public static final Object PUSH_VALIDATE_PATH_SCHMEA = String .class ;
2733
@@ -31,6 +37,12 @@ public class ClientConfig extends HashMap<String, Object> {
3137 public static final String REPORT_RECEIVE_PATH = "report.receive.path" ;
3238 public static final Object REPORT_RECEIVE_PATH_SCHEMA = String .class ;
3339
40+ public static final String REPORT_RECEIVE_DETAIL_PATH = "report.receive.detail.path" ;
41+ public static final Object REPORT_RECEIVE_DETAIL_PATH_SCHEMA = String .class ;
42+
43+ public static final String REPORT_MESSAGE_DETAIL_PATH = "report.message.detail.path" ;
44+ public static final Object REPORT_MESSAGE_DETAIL_PATH_SCHEMA = String .class ;
45+
3446 public static final String REPORT_USER_PATH = "report.user.path" ;
3547 public static final Object REPORT_USER_PATH_SCHEMA = String .class ;
3648
@@ -115,11 +127,16 @@ private ClientConfig() {
115127
116128 this .put (PUSH_HOST_NAME , "https://api.jpush.cn" );
117129 this .put (PUSH_PATH , "/v3/push" );
130+ this .put (BATCH_REGID_PUSH_PATH , "/v3/push/batch/regid/single" );
131+ this .put (BATCH_ALIAS_PUSH_PATH , "/v3/push/batch/alias/single" );
118132 this .put (PUSH_VALIDATE_PATH , "/v3/push/validate" );
119133 this .put (GROUP_PUSH_PATH , "/v3/grouppush" );
120134
121135 this .put (REPORT_HOST_NAME , "https://report.jpush.cn" );
122136 this .put (REPORT_RECEIVE_PATH , "/v3/received" );
137+ this .put (REPORT_RECEIVE_DETAIL_PATH , "/v3/received/detail" );
138+ this .put (REPORT_MESSAGE_DETAIL_PATH , "/v3/messages/detail" );
139+
123140 this .put (REPORT_USER_PATH , "/v3/users" );
124141 this .put (REPORT_MESSAGE_PATH , "/v3/messages" );
125142 this .put (REPORT_STATUS_PATH , "/v3/status" );
0 commit comments