@@ -911,7 +911,7 @@ body: ICreateDashboardRenderTask`)
911911 /**
912912 * The local state of each project in the workspace (read-only)
913913 */
914- projects?: IProject[]
914+ projects?: IProject[] | null
915915}` )
916916 } )
917917 it ( 'with refs, arrays and nullable' , ( ) => {
@@ -921,12 +921,12 @@ body: ICreateDashboardRenderTask`)
921921 /**
922922 * Current Looker release version number (read-only)
923923 */
924- looker_release_version?: string
924+ looker_release_version?: string | null
925925 current_version?: IApiVersionElement
926926 /**
927927 * Array of versions supported by this Looker instance (read-only)
928928 */
929- supported_versions?: IApiVersionElement[]
929+ supported_versions?: IApiVersionElement[] | null
930930}` )
931931 } )
932932 it ( 'required properties' , ( ) => {
@@ -941,27 +941,27 @@ body: ICreateDashboardRenderTask`)
941941 /**
942942 * Id of query to run
943943 */
944- query_id: number
944+ query_id: number | null
945945 /**
946946 * Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml".
947947 */
948- result_format: ${ name }
948+ result_format: ${ name } | null
949949 /**
950950 * Source of query task
951951 */
952- source?: string
952+ source?: string | null
953953 /**
954954 * Create the task but defer execution
955955 */
956956 deferred?: boolean
957957 /**
958958 * Id of look associated with query.
959959 */
960- look_id?: number
960+ look_id?: number | null
961961 /**
962962 * Id of dashboard associated with query.
963963 */
964- dashboard_id?: string
964+ dashboard_id?: string | null
965965}` )
966966 } )
967967
@@ -1072,11 +1072,11 @@ export enum Align {
10721072 /**
10731073 * Id of query to run
10741074 */
1075- query_id: number
1075+ query_id: number | null
10761076 /**
10771077 * Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml".
10781078 */
1079- result_format: ResultFormat
1079+ result_format: ResultFormat | null
10801080 /**
10811081 * An array of user attribute types that are allowed to be used in filters on this field. Valid values are: "advanced_filter_string", "advanced_filter_number", "advanced_filter_datetime", "string", "number", "datetime", "relative_url", "yesno", "zipcode". (read-only)
10821082 */
@@ -1085,7 +1085,7 @@ export enum Align {
10851085 /**
10861086 * Roles assigned to group (read-only)
10871087 */
1088- roles?: IRole[]
1088+ roles?: IRole[] | null
10891089}` )
10901090 } )
10911091
@@ -1116,15 +1116,15 @@ export enum Align {
11161116 /**
11171117 * Id of query to run
11181118 */
1119- query_id: number
1119+ query_id: number | null
11201120 /**
11211121 * Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml".
11221122 */
1123- result_format: SecondResponseWithEnumsResultFormat
1123+ result_format: SecondResponseWithEnumsResultFormat | null
11241124 /**
11251125 * Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "csv", "html", "md", "txt", "xlsx", "gsxml".
11261126 */
1127- another_format?: AnotherFormat
1127+ another_format?: AnotherFormat | null
11281128 /**
11291129 * An array of user attribute types that are allowed to be used in filters on this field. Valid values are: "advanced_filter_string", "advanced_filter_number", "advanced_filter_datetime", "string", "number", "datetime", "relative_url", "yesno", "zipcode". (read-only)
11301130 */
@@ -1133,7 +1133,7 @@ export enum Align {
11331133 /**
11341134 * Roles assigned to group (read-only)
11351135 */
1136- roles?: IRole[]
1136+ roles?: IRole[] | null
11371137}` )
11381138 } )
11391139 } )
0 commit comments