@looker/sdk 21.10.1 → 21.16.0

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +61 -1
  2. package/README.md +19 -5
  3. package/lib/3.1/funcs.d.ts +2 -2
  4. package/lib/3.1/funcs.js.map +1 -1
  5. package/lib/3.1/methods.d.ts +2 -2
  6. package/lib/3.1/methods.js.map +1 -1
  7. package/lib/3.1/methodsInterface.d.ts +4 -4
  8. package/lib/3.1/models.d.ts +3 -1
  9. package/lib/3.1/models.js.map +1 -1
  10. package/lib/3.1/streams.d.ts +3 -3
  11. package/lib/3.1/streams.js.map +1 -1
  12. package/lib/4.0/funcs.d.ts +18 -7
  13. package/lib/4.0/funcs.js +1334 -1166
  14. package/lib/4.0/funcs.js.map +1 -1
  15. package/lib/4.0/methods.d.ts +18 -7
  16. package/lib/4.0/methods.js +898 -774
  17. package/lib/4.0/methods.js.map +1 -1
  18. package/lib/4.0/methodsInterface.d.ts +20 -9
  19. package/lib/4.0/models.d.ts +160 -8
  20. package/lib/4.0/models.js +30 -1
  21. package/lib/4.0/models.js.map +1 -1
  22. package/lib/4.0/streams.d.ts +19 -8
  23. package/lib/4.0/streams.js +898 -774
  24. package/lib/4.0/streams.js.map +1 -1
  25. package/lib/constants.d.ts +1 -1
  26. package/lib/constants.js +1 -1
  27. package/lib/constants.js.map +1 -1
  28. package/lib/esm/3.1/funcs.js.map +1 -1
  29. package/lib/esm/3.1/methods.js.map +1 -1
  30. package/lib/esm/3.1/models.js.map +1 -1
  31. package/lib/esm/3.1/streams.js.map +1 -1
  32. package/lib/esm/4.0/funcs.js +1295 -1160
  33. package/lib/esm/4.0/funcs.js.map +1 -1
  34. package/lib/esm/4.0/methods.js +898 -774
  35. package/lib/esm/4.0/methods.js.map +1 -1
  36. package/lib/esm/4.0/models.js +26 -0
  37. package/lib/esm/4.0/models.js.map +1 -1
  38. package/lib/esm/4.0/streams.js +898 -774
  39. package/lib/esm/4.0/streams.js.map +1 -1
  40. package/lib/esm/constants.js +1 -1
  41. package/lib/esm/constants.js.map +1 -1
  42. package/package.json +3 -3
@@ -28,8 +28,8 @@ export declare class Looker31SDK extends APIMethods implements ILooker31SDK {
28
28
  saml_test_config(test_slug: string, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISamlConfig, IError>>;
29
29
  delete_saml_test_config(test_slug: string, options?: Partial<ITransportSettings>): Promise<SDKResponse<string, IError>>;
30
30
  create_saml_test_config(body: Partial<IWriteSamlConfig>, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISamlConfig, IError | IValidationError>>;
31
- parse_saml_idp_metadata(body: Partial<string>, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISamlMetadataParseResult, IError>>;
32
- fetch_and_parse_saml_idp_metadata(body: Partial<string>, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISamlMetadataParseResult, IError>>;
31
+ parse_saml_idp_metadata(body: string, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISamlMetadataParseResult, IError>>;
32
+ fetch_and_parse_saml_idp_metadata(body: string, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISamlMetadataParseResult, IError>>;
33
33
  session_config(options?: Partial<ITransportSettings>): Promise<SDKResponse<ISessionConfig, IError>>;
34
34
  update_session_config(body: Partial<IWriteSessionConfig>, options?: Partial<ITransportSettings>): Promise<SDKResponse<ISessionConfig, IError | IValidationError>>;
35
35
  all_user_login_lockouts(fields?: string, options?: Partial<ITransportSettings>): Promise<SDKResponse<IUserLoginLockout[], IError>>;