Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"content": "Webhook credential variant"
}
],
"type": "'Bearer JWT' | 'Bearer static' | 'Basic'",
"type": "'Bearer JWT' | 'Bearer static' | 'Basic' | undefined | null",
"linkedDataTypeIdentifiers": [],
"rules": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"genericKeys": ["T"],
"type": "T extends 'Basic' ? { username: string, password: string } : T extends undefined ? undefined : string",
"type": "T extends 'Basic' ? { username: string, password: string } : T extends undefined ? undefined : T extends null ? null : string",
"linkedDataTypeIdentifiers": [],
"rules": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"genericKeys": ["T"],
"type": "T extends 'Bearer' ? 'Header' : T extends 'Basic' ? 'Header' : T extends undefined ? undefined : 'Header' | 'Url'",
"type": "T extends 'Bearer' ? 'Header' : T extends 'Basic' ? 'Header' : T extends undefined ? undefined : T extends null ? null : 'Header' | 'Url'",
"linkedDataTypeIdentifiers": [],
"rules": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"content": "HTTP credential variant"
}
],
"type": "'Bearer' | 'Basic' | 'X-API-Key' | string | undefined",
"type": "'Bearer' | 'Basic' | 'X-API-Key' | string | undefined | null",
"linkedDataTypeIdentifiers": [],
"rules": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"genericKeys": ["T"],
"type": "T extends 'Basic' ? { username: string, password: string } : T extends undefined ? undefined : string",
"type": "T extends 'Basic' ? { username: string, password: string } : T extends undefined ? undefined : T extends null ? null : string",
"linkedDataTypeIdentifiers": [],
"rules": []
}
2 changes: 1 addition & 1 deletion definitions/taurus/http/data_types/http_payload.proto.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"genericKeys": ["T"],
"type": "T extends 'application/json' ? OBJECT<{}> : T extends undefined ? undefined : string",
"type": "T extends 'application/json' ? OBJECT<{}> : T extends undefined ? undefined : T extends null ? null : string",
"linkedDataTypeIdentifiers": ["OBJECT"],
"rules": []
}
2 changes: 1 addition & 1 deletion definitions/taurus/http/data_types/http_schema.proto.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"content": "HTTP schema"
}
],
"type": "'application/json' | 'application/xml' | 'text/plain' | 'text/csv' | string | undefined",
"type": "'application/json' | 'application/xml' | 'text/plain' | 'text/csv' | string | undefined | null",
"linkedDataTypeIdentifiers": [],
"rules": []
}