@pushwoosh/rpc-v2-http-api-data 0.1.840 → 0.1.841

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 CHANGED
@@ -6817,6 +6817,12 @@ export const data = {
6817
6817
  "response": "pushwoosh.rpc_v2.emails_configurations.DeleteCustomTrackingDomainResponse",
6818
6818
  "method": "delete",
6819
6819
  "path": "/api/emails_configurations/custom_tracking_domain"
6820
+ },
6821
+ "VerifyCustomTrackingDomain": {
6822
+ "request": "pushwoosh.rpc_v2.emails_configurations.VerifyCustomTrackingDomainRequest",
6823
+ "response": "pushwoosh.rpc_v2.emails_configurations.VerifyCustomTrackingDomainResponse",
6824
+ "method": "post",
6825
+ "path": "/api/emails_configurations/custom_tracking_domain:verify"
6820
6826
  }
6821
6827
  }
6822
6828
  },
@@ -6961,6 +6967,25 @@ export const data = {
6961
6967
  "type": "I",
6962
6968
  "fields": {}
6963
6969
  },
6970
+ "pushwoosh.rpc_v2.emails_configurations.VerifyCustomTrackingDomainRequest": {
6971
+ "type": "I",
6972
+ "fields": {
6973
+ "customTrackingDomain": {
6974
+ "type": "string"
6975
+ },
6976
+ "application": {
6977
+ "type": "string"
6978
+ }
6979
+ }
6980
+ },
6981
+ "pushwoosh.rpc_v2.emails_configurations.VerifyCustomTrackingDomainResponse": {
6982
+ "type": "I",
6983
+ "fields": {
6984
+ "verified": {
6985
+ "type": "boolean"
6986
+ }
6987
+ }
6988
+ },
6964
6989
  "pushwoosh.rpc.errors.v3.I18NOptions": {
6965
6990
  "type": "I",
6966
6991
  "fields": {
@@ -6,6 +6,7 @@ export interface EmailsConfigurationsService {
6
6
  GetCustomTrackingDomain(request: GetCustomTrackingDomainRequest): Promise<GetCustomTrackingDomainResponse>;
7
7
  UpsertCustomTrackingDomain(request: UpsertCustomTrackingDomainRequest): Promise<UpsertCustomTrackingDomainResponse>;
8
8
  DeleteCustomTrackingDomain(request: DeleteCustomTrackingDomainRequest): Promise<DeleteCustomTrackingDomainResponse>;
9
+ VerifyCustomTrackingDomain(request: VerifyCustomTrackingDomainRequest): Promise<VerifyCustomTrackingDomainResponse>;
9
10
  }
10
11
  export type Domain_CName = {
11
12
  name: string;
@@ -55,3 +56,10 @@ export type DeleteCustomTrackingDomainRequest = {
55
56
  application?: string;
56
57
  };
57
58
  export type DeleteCustomTrackingDomainResponse = {};
59
+ export type VerifyCustomTrackingDomainRequest = {
60
+ customTrackingDomain?: string;
61
+ application?: string;
62
+ };
63
+ export type VerifyCustomTrackingDomainResponse = {
64
+ verified: boolean;
65
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.840",
3
+ "version": "0.1.841",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",