@pushwoosh/rpc-gateway-journey-data 0.27.113 → 0.27.115
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 +6 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -0
package/data.js
CHANGED
|
@@ -5312,6 +5312,9 @@ export const data = {
|
|
|
5312
5312
|
},
|
|
5313
5313
|
"status": {
|
|
5314
5314
|
"type": "string"
|
|
5315
|
+
},
|
|
5316
|
+
"translations": {
|
|
5317
|
+
"type": "string"
|
|
5315
5318
|
}
|
|
5316
5319
|
}
|
|
5317
5320
|
},
|
|
@@ -5413,6 +5416,9 @@ export const data = {
|
|
|
5413
5416
|
},
|
|
5414
5417
|
"publishedAt": {
|
|
5415
5418
|
"type": "string"
|
|
5419
|
+
},
|
|
5420
|
+
"translations": {
|
|
5421
|
+
"type": "string"
|
|
5416
5422
|
}
|
|
5417
5423
|
}
|
|
5418
5424
|
},
|
package/package.json
CHANGED
|
@@ -1903,6 +1903,7 @@ export type SavePointTemplateRequest = {
|
|
|
1903
1903
|
auth?: string;
|
|
1904
1904
|
allowedHosts?: string[];
|
|
1905
1905
|
status?: string;
|
|
1906
|
+
translations?: string;
|
|
1906
1907
|
};
|
|
1907
1908
|
export type SavePointTemplateResponse = {
|
|
1908
1909
|
template: PointTemplateVersion;
|
|
@@ -1938,6 +1939,7 @@ export type PointTemplateManifest = {
|
|
|
1938
1939
|
allowedHosts: string[];
|
|
1939
1940
|
status: string;
|
|
1940
1941
|
publishedAt: string;
|
|
1942
|
+
translations: string;
|
|
1941
1943
|
};
|
|
1942
1944
|
export type AnalyzePointTemplateRequest = {
|
|
1943
1945
|
manifest?: SavePointTemplateRequest;
|