@pushwoosh/rpc-v2-http-api-data 0.1.837 → 0.1.838
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/data.js +61 -0
- package/emails_configurations.d.ts +18 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -6755,6 +6755,24 @@ export const data = {
|
|
|
6755
6755
|
"response": "pushwoosh.rpc_v2.emails_configurations.DeleteDomainResponse",
|
|
6756
6756
|
"method": "delete",
|
|
6757
6757
|
"path": "/api/emails_configurations/domains"
|
|
6758
|
+
},
|
|
6759
|
+
"GetCustomTrackingDomain": {
|
|
6760
|
+
"request": "pushwoosh.rpc_v2.emails_configurations.GetCustomTrackingDomainRequest",
|
|
6761
|
+
"response": "pushwoosh.rpc_v2.emails_configurations.GetCustomTrackingDomainResponse",
|
|
6762
|
+
"method": "get",
|
|
6763
|
+
"path": "/api/emails_configurations/custom_tracking_domain"
|
|
6764
|
+
},
|
|
6765
|
+
"UpsertCustomTrackingDomain": {
|
|
6766
|
+
"request": "pushwoosh.rpc_v2.emails_configurations.UpsertCustomTrackingDomainRequest",
|
|
6767
|
+
"response": "pushwoosh.rpc_v2.emails_configurations.UpsertCustomTrackingDomainResponse",
|
|
6768
|
+
"method": "post",
|
|
6769
|
+
"path": "/api/emails_configurations/custom_tracking_domain"
|
|
6770
|
+
},
|
|
6771
|
+
"DeleteCustomTrackingDomain": {
|
|
6772
|
+
"request": "pushwoosh.rpc_v2.emails_configurations.DeleteCustomTrackingDomainRequest",
|
|
6773
|
+
"response": "pushwoosh.rpc_v2.emails_configurations.DeleteCustomTrackingDomainResponse",
|
|
6774
|
+
"method": "delete",
|
|
6775
|
+
"path": "/api/emails_configurations/custom_tracking_domain"
|
|
6758
6776
|
}
|
|
6759
6777
|
}
|
|
6760
6778
|
},
|
|
@@ -6856,6 +6874,49 @@ export const data = {
|
|
|
6856
6874
|
"type": "I",
|
|
6857
6875
|
"fields": {}
|
|
6858
6876
|
},
|
|
6877
|
+
"pushwoosh.rpc_v2.emails_configurations.GetCustomTrackingDomainRequest": {
|
|
6878
|
+
"type": "I",
|
|
6879
|
+
"fields": {
|
|
6880
|
+
"application": {
|
|
6881
|
+
"type": "string"
|
|
6882
|
+
}
|
|
6883
|
+
}
|
|
6884
|
+
},
|
|
6885
|
+
"pushwoosh.rpc_v2.emails_configurations.GetCustomTrackingDomainResponse": {
|
|
6886
|
+
"type": "I",
|
|
6887
|
+
"fields": {
|
|
6888
|
+
"customTrackingDomain": {
|
|
6889
|
+
"type": "string"
|
|
6890
|
+
}
|
|
6891
|
+
}
|
|
6892
|
+
},
|
|
6893
|
+
"pushwoosh.rpc_v2.emails_configurations.UpsertCustomTrackingDomainRequest": {
|
|
6894
|
+
"type": "I",
|
|
6895
|
+
"fields": {
|
|
6896
|
+
"customTrackingDomain": {
|
|
6897
|
+
"type": "string"
|
|
6898
|
+
},
|
|
6899
|
+
"application": {
|
|
6900
|
+
"type": "string"
|
|
6901
|
+
}
|
|
6902
|
+
}
|
|
6903
|
+
},
|
|
6904
|
+
"pushwoosh.rpc_v2.emails_configurations.UpsertCustomTrackingDomainResponse": {
|
|
6905
|
+
"type": "I",
|
|
6906
|
+
"fields": {}
|
|
6907
|
+
},
|
|
6908
|
+
"pushwoosh.rpc_v2.emails_configurations.DeleteCustomTrackingDomainRequest": {
|
|
6909
|
+
"type": "I",
|
|
6910
|
+
"fields": {
|
|
6911
|
+
"application": {
|
|
6912
|
+
"type": "string"
|
|
6913
|
+
}
|
|
6914
|
+
}
|
|
6915
|
+
},
|
|
6916
|
+
"pushwoosh.rpc_v2.emails_configurations.DeleteCustomTrackingDomainResponse": {
|
|
6917
|
+
"type": "I",
|
|
6918
|
+
"fields": {}
|
|
6919
|
+
},
|
|
6859
6920
|
"pushwoosh.rpc.errors.v3.I18NOptions": {
|
|
6860
6921
|
"type": "I",
|
|
6861
6922
|
"fields": {
|
|
@@ -3,6 +3,9 @@ export interface EmailsConfigurationsService {
|
|
|
3
3
|
UpdateDomainStatuses(request: UpdateDomainStatusesRequest): Promise<UpdateDomainStatusesResponse>;
|
|
4
4
|
AddDomain(request: AddDomainRequest): Promise<AddDomainResponse>;
|
|
5
5
|
DeleteDomain(request: DeleteDomainRequest): Promise<DeleteDomainResponse>;
|
|
6
|
+
GetCustomTrackingDomain(request: GetCustomTrackingDomainRequest): Promise<GetCustomTrackingDomainResponse>;
|
|
7
|
+
UpsertCustomTrackingDomain(request: UpsertCustomTrackingDomainRequest): Promise<UpsertCustomTrackingDomainResponse>;
|
|
8
|
+
DeleteCustomTrackingDomain(request: DeleteCustomTrackingDomainRequest): Promise<DeleteCustomTrackingDomainResponse>;
|
|
6
9
|
}
|
|
7
10
|
export type Domain_CName = {
|
|
8
11
|
name: string;
|
|
@@ -37,3 +40,18 @@ export type DeleteDomainRequest = {
|
|
|
37
40
|
domain?: string;
|
|
38
41
|
};
|
|
39
42
|
export type DeleteDomainResponse = {};
|
|
43
|
+
export type GetCustomTrackingDomainRequest = {
|
|
44
|
+
application?: string;
|
|
45
|
+
};
|
|
46
|
+
export type GetCustomTrackingDomainResponse = {
|
|
47
|
+
customTrackingDomain: string;
|
|
48
|
+
};
|
|
49
|
+
export type UpsertCustomTrackingDomainRequest = {
|
|
50
|
+
customTrackingDomain?: string;
|
|
51
|
+
application?: string;
|
|
52
|
+
};
|
|
53
|
+
export type UpsertCustomTrackingDomainResponse = {};
|
|
54
|
+
export type DeleteCustomTrackingDomainRequest = {
|
|
55
|
+
application?: string;
|
|
56
|
+
};
|
|
57
|
+
export type DeleteCustomTrackingDomainResponse = {};
|