@looker/sdk 25.18.0 → 26.0.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.
- package/CHANGELOG.md +14 -0
- package/lib/4.0/funcs.d.ts +3 -1
- package/lib/4.0/funcs.js +954 -934
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +3 -1
- package/lib/4.0/methods.js +638 -622
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +3 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +78 -12
- package/lib/4.0/models.js +6 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +3 -1
- package/lib/4.0/streams.js +638 -622
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +950 -930
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +638 -622
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +5 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +638 -622
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +2 -2
package/lib/4.0/streams.d.ts
CHANGED
|
@@ -141,6 +141,7 @@ export declare class Looker40SDKStream extends APIMethods {
|
|
|
141
141
|
all_external_oauth_applications(callback: (response: Response) => Promise<IExternalOauthApplication[]>, request: IRequestAllExternalOauthApplications, options?: Partial<ITransportSettings>): Promise<IExternalOauthApplication[]>;
|
|
142
142
|
create_external_oauth_application(callback: (response: Response) => Promise<IExternalOauthApplication>, body: Partial<IWriteExternalOauthApplication>, options?: Partial<ITransportSettings>): Promise<IExternalOauthApplication>;
|
|
143
143
|
update_external_oauth_application(callback: (response: Response) => Promise<IExternalOauthApplication>, client_id: string, body: Partial<IWriteExternalOauthApplication>, options?: Partial<ITransportSettings>): Promise<IExternalOauthApplication>;
|
|
144
|
+
delete_external_oauth_application(callback: (response: Response) => Promise<string>, client_id: string, options?: Partial<ITransportSettings>): Promise<string>;
|
|
144
145
|
create_oauth_application_user_state(callback: (response: Response) => Promise<ICreateOAuthApplicationUserStateResponse>, body: Partial<ICreateOAuthApplicationUserStateRequest>, options?: Partial<ITransportSettings>): Promise<ICreateOAuthApplicationUserStateResponse>;
|
|
145
146
|
all_ssh_servers(callback: (response: Response) => Promise<ISshServer[]>, fields?: string, options?: Partial<ITransportSettings>): Promise<ISshServer[]>;
|
|
146
147
|
create_ssh_server(callback: (response: Response) => Promise<ISshServer>, body: Partial<IWriteSshServer>, options?: Partial<ITransportSettings>): Promise<ISshServer>;
|
|
@@ -400,6 +401,8 @@ export declare class Looker40SDKStream extends APIMethods {
|
|
|
400
401
|
update_user(callback: (response: Response) => Promise<IUser>, user_id: string, body: Partial<IWriteUser>, fields?: string, options?: Partial<ITransportSettings>): Promise<IUser>;
|
|
401
402
|
delete_user(callback: (response: Response) => Promise<string>, user_id: string, options?: Partial<ITransportSettings>): Promise<string>;
|
|
402
403
|
user_for_credential(callback: (response: Response) => Promise<IUser>, credential_type: string, credential_id: string, fields?: string, options?: Partial<ITransportSettings>): Promise<IUser>;
|
|
404
|
+
update_service_account(callback: (response: Response) => Promise<IServiceAccount>, user_id: string, body: Partial<IWriteServiceAccount>, fields?: string, options?: Partial<ITransportSettings>): Promise<IServiceAccount>;
|
|
405
|
+
delete_service_account(callback: (response: Response) => Promise<string>, user_id: string, options?: Partial<ITransportSettings>): Promise<string>;
|
|
403
406
|
user_credentials_email(callback: (response: Response) => Promise<ICredentialsEmail>, user_id: string, fields?: string, options?: Partial<ITransportSettings>): Promise<ICredentialsEmail>;
|
|
404
407
|
create_user_credentials_email(callback: (response: Response) => Promise<ICredentialsEmail>, user_id: string, body: Partial<IWriteCredentialsEmail>, fields?: string, options?: Partial<ITransportSettings>): Promise<ICredentialsEmail>;
|
|
405
408
|
update_user_credentials_email(callback: (response: Response) => Promise<ICredentialsEmail>, user_id: string, body: Partial<IWriteCredentialsEmail>, fields?: string, options?: Partial<ITransportSettings>): Promise<ICredentialsEmail>;
|
|
@@ -438,7 +441,6 @@ export declare class Looker40SDKStream extends APIMethods {
|
|
|
438
441
|
wipeout_user_emails(callback: (response: Response) => Promise<IUser>, user_id: string, body: Partial<IUserEmailOnly>, fields?: string, options?: Partial<ITransportSettings>): Promise<IUser>;
|
|
439
442
|
create_embed_user(callback: (response: Response) => Promise<IUserPublic>, body: Partial<ICreateEmbedUserRequest>, options?: Partial<ITransportSettings>): Promise<IUserPublic>;
|
|
440
443
|
create_service_account(callback: (response: Response) => Promise<IServiceAccount>, body: Partial<IWriteServiceAccount>, fields?: string, options?: Partial<ITransportSettings>): Promise<IServiceAccount>;
|
|
441
|
-
update_service_account(callback: (response: Response) => Promise<IServiceAccount>, user_id: string, body: Partial<IWriteServiceAccount>, fields?: string, options?: Partial<ITransportSettings>): Promise<IServiceAccount>;
|
|
442
444
|
all_user_attributes(callback: (response: Response) => Promise<IUserAttribute[]>, request: IRequestAllUserAttributes, options?: Partial<ITransportSettings>): Promise<IUserAttribute[]>;
|
|
443
445
|
create_user_attribute(callback: (response: Response) => Promise<IUserAttribute>, body: Partial<IWriteUserAttribute>, fields?: string, options?: Partial<ITransportSettings>): Promise<IUserAttribute>;
|
|
444
446
|
user_attribute(callback: (response: Response) => Promise<IUserAttribute>, user_attribute_id: string, fields?: string, options?: Partial<ITransportSettings>): Promise<IUserAttribute>;
|