@looker/sdk 24.20.0 → 25.0.1

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.
@@ -1277,11 +1277,13 @@ export class Looker40SDK extends APIMethods {
1277
1277
  }, null, options);
1278
1278
  })();
1279
1279
  }
1280
- content_validation(fields, options) {
1280
+ content_validation(request, options) {
1281
1281
  var _this166 = this;
1282
1282
  return _asyncToGenerator(function* () {
1283
1283
  return _this166.get('/content_validation', {
1284
- fields
1284
+ fields: request.fields,
1285
+ project_names: request.project_names,
1286
+ space_ids: request.space_ids
1285
1287
  }, null, options);
1286
1288
  })();
1287
1289
  }
@@ -2186,7 +2188,10 @@ export class Looker40SDK extends APIMethods {
2186
2188
  return _this261.get('/lookml_models', {
2187
2189
  fields: request.fields,
2188
2190
  limit: request.limit,
2189
- offset: request.offset
2191
+ offset: request.offset,
2192
+ exclude_empty: request.exclude_empty,
2193
+ exclude_hidden: request.exclude_hidden,
2194
+ include_internal: request.include_internal
2190
2195
  }, null, options);
2191
2196
  })();
2192
2197
  }