@pushwoosh/rpc-v2-http-api-data 0.1.454 → 0.1.456
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/accounts.d.ts +6 -0
- package/data.js +21 -0
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export interface AccountsService {
|
|
|
4
4
|
GetSubscribersCount(request: GetSubscribersCountRequest): Promise<GetSubscribersCountResponse>;
|
|
5
5
|
GetActiveUsersCount(request: GetActiveUsersCountRequest): Promise<GetActiveUsersCountResponse>;
|
|
6
6
|
SetDebugMode(request: SetDebugModeRequest): Promise<SetDebugModeResponse>;
|
|
7
|
+
GetDebugMode(request: GetDebugModeRequest): Promise<GetDebugModeResponse>;
|
|
7
8
|
GetOnboardingInfo(request: GetOnboardingInfoRequest): Promise<GetOnboardingInfoResponse>;
|
|
8
9
|
UpdateOnboardingInfo(request: UpdateOnboardingInfoRequest): Promise<UpdateOnboardingInfoResponse>;
|
|
9
10
|
GetTotalEmailSubscribersCount(request: GetTotalEmailSubscribersCountRequest): Promise<GetTotalEmailSubscribersCountResponse>;
|
|
@@ -60,6 +61,11 @@ export type SetDebugModeResponse = {
|
|
|
60
61
|
enabled: boolean;
|
|
61
62
|
expireAt: Date;
|
|
62
63
|
};
|
|
64
|
+
export type GetDebugModeRequest = {};
|
|
65
|
+
export type GetDebugModeResponse = {
|
|
66
|
+
enabled: boolean;
|
|
67
|
+
expireAt: Date;
|
|
68
|
+
};
|
|
63
69
|
export type GetOnboardingInfoRequest = {};
|
|
64
70
|
export type GetOnboardingInfoResponse = {
|
|
65
71
|
isActive: boolean;
|
package/data.js
CHANGED
|
@@ -331,6 +331,12 @@ export const data = {
|
|
|
331
331
|
"method": "post",
|
|
332
332
|
"path": "/api/accounts/debug_mode"
|
|
333
333
|
},
|
|
334
|
+
"GetDebugMode": {
|
|
335
|
+
"request": "pushwoosh.rpc_v2.accounts.GetDebugModeRequest",
|
|
336
|
+
"response": "pushwoosh.rpc_v2.accounts.GetDebugModeResponse",
|
|
337
|
+
"method": "get",
|
|
338
|
+
"path": "/api/accounts/debug_mode"
|
|
339
|
+
},
|
|
334
340
|
"GetOnboardingInfo": {
|
|
335
341
|
"request": "pushwoosh.rpc_v2.accounts.GetOnboardingInfoRequest",
|
|
336
342
|
"response": "pushwoosh.rpc_v2.accounts.GetOnboardingInfoResponse",
|
|
@@ -510,6 +516,21 @@ export const data = {
|
|
|
510
516
|
}
|
|
511
517
|
}
|
|
512
518
|
},
|
|
519
|
+
"pushwoosh.rpc_v2.accounts.GetDebugModeRequest": {
|
|
520
|
+
"type": "I",
|
|
521
|
+
"fields": {}
|
|
522
|
+
},
|
|
523
|
+
"pushwoosh.rpc_v2.accounts.GetDebugModeResponse": {
|
|
524
|
+
"type": "I",
|
|
525
|
+
"fields": {
|
|
526
|
+
"enabled": {
|
|
527
|
+
"type": "boolean"
|
|
528
|
+
},
|
|
529
|
+
"expireAt": {
|
|
530
|
+
"type": "Date"
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
},
|
|
513
534
|
"pushwoosh.rpc_v2.accounts.GetOnboardingInfoRequest": {
|
|
514
535
|
"type": "I",
|
|
515
536
|
"fields": {}
|