Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion clients/journey-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/journey-client",
"version": "0.5.0",
"version": "0.5.1",
"description": "API Client for epilot Journey API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -51,6 +51,7 @@
"copy-webpack-plugin": "^7.0.0",
"json-loader": "^0.5.7",
"openapi-client-axios-typegen": "^7.5.1",
"openapicmd": "^2.7.0",
"ts-loader": "^8.3.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
Expand Down
2 changes: 2 additions & 0 deletions clients/journey-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,7 @@ declare namespace Components {
*/
ValidationRuleRef;
createdBy?: string;
updatedBy?: string | null;
/**
* If passed with value of null, the API won't modify the lastModifiedAt field on updating the journey
*/
Expand Down Expand Up @@ -573,6 +574,7 @@ declare namespace Components {
*/
ValidationRuleRef;
createdBy?: string;
updatedBy?: string | null;
/**
* If passed with value of null, the API won't modify the lastModifiedAt field on updating the journey
*/
Expand Down
4 changes: 4 additions & 0 deletions clients/journey-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1405,6 +1405,10 @@
"createdBy": {
"type": "string"
},
"updatedBy": {
"type": "string",
"nullable": true
},
"__lastModifiedAt": {
"type": "string",
"description": "If passed with value of null, the API won't modify the lastModifiedAt field on updating the journey",
Expand Down
Loading