@looker/sdk 25.8.0 → 25.10.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 CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [25.10.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.8.0...sdk-v25.10.0) (2025-06-20)
9
+
10
+
11
+ ### Features
12
+
13
+ * generate SDKs for Looker 25.10 ([#1592](https://github.com/looker-open-source/sdk-codegen/issues/1592)) ([9beffa3](https://github.com/looker-open-source/sdk-codegen/commit/9beffa3e9e4639777ce0d4b43909405efae9d467))
14
+
8
15
  ## [25.8.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.6.0...sdk-v25.8.0) (2025-05-19)
9
16
 
10
17
 
@@ -276,6 +276,8 @@ export declare const connection_tables: (sdk: IAPIMethods, request: IRequestConn
276
276
  export declare const connection_columns: (sdk: IAPIMethods, request: IRequestConnectionColumns, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ISchemaColumns[], IError | IValidationError>>;
277
277
  export declare const connection_search_columns: (sdk: IAPIMethods, request: IRequestConnectionSearchColumns, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IColumnSearch[], IError | IValidationError>>;
278
278
  export declare const connection_cost_estimate: (sdk: IAPIMethods, connection_name: string, body: Partial<ICreateCostEstimate>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICostEstimate, IError | IValidationError>>;
279
+ export declare const get_ci_run: (sdk: IAPIMethods, project_id: string, run_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IProjectCIRun, IError>>;
280
+ export declare const create_ci_run: (sdk: IAPIMethods, project_id: string, body: Partial<ICreateCIRunRequest>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICreateCIRunResponse, IError | IValidationError>>;
279
281
  export declare const lock_all: (sdk: IAPIMethods, project_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<string, IError | IValidationError>>;
280
282
  export declare const all_git_branches: (sdk: IAPIMethods, project_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IGitBranch[], IError>>;
281
283
  export declare const git_branch: (sdk: IAPIMethods, project_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IGitBranch, IError>>;
@@ -304,8 +306,6 @@ export declare const run_git_connection_test: (sdk: IAPIMethods, request: IReque
304
306
  export declare const all_lookml_tests: (sdk: IAPIMethods, project_id: string, file_id?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ILookmlTest[], IError>>;
305
307
  export declare const run_lookml_test: (sdk: IAPIMethods, request: IRequestRunLookmlTest, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ILookmlTestResult[], IError | IValidationError>>;
306
308
  export declare const tag_ref: (sdk: IAPIMethods, request: IRequestTagRef, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IProject, IError | IValidationError>>;
307
- export declare const get_ci_run: (sdk: IAPIMethods, project_id: string, run_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IProjectCIRun, IError>>;
308
- export declare const create_ci_run: (sdk: IAPIMethods, project_id: string, body: Partial<ICreateCIRunRequest>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICreateCIRunResponse, IError | IValidationError>>;
309
309
  export declare const update_repository_credential: (sdk: IAPIMethods, root_project_id: string, credential_id: string, body: Partial<IWriteRepositoryCredential>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IRepositoryCredential, IError | IValidationError>>;
310
310
  export declare const delete_repository_credential: (sdk: IAPIMethods, root_project_id: string, credential_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<string, IError>>;
311
311
  export declare const get_all_repository_credentials: (sdk: IAPIMethods, root_project_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IRepositoryCredential[], IError>>;
package/lib/4.0/funcs.js CHANGED
@@ -2886,248 +2886,271 @@ var connection_cost_estimate = exports.connection_cost_estimate = function () {
2886
2886
  return _ref275.apply(this, arguments);
2887
2887
  };
2888
2888
  }();
2889
+ var get_ci_run = exports.get_ci_run = function () {
2890
+ var _ref276 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
2891
+ project_id = (0, _sdkRtl.encodeParam)(project_id);
2892
+ run_id = (0, _sdkRtl.encodeParam)(run_id);
2893
+ return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
2894
+ fields
2895
+ }, null, options);
2896
+ });
2897
+ return function get_ci_run(_x919, _x920, _x921, _x922, _x923) {
2898
+ return _ref276.apply(this, arguments);
2899
+ };
2900
+ }();
2901
+ var create_ci_run = exports.create_ci_run = function () {
2902
+ var _ref277 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
2903
+ project_id = (0, _sdkRtl.encodeParam)(project_id);
2904
+ return sdk.post("/projects/".concat(project_id, "/ci/run"), {
2905
+ fields
2906
+ }, body, options);
2907
+ });
2908
+ return function create_ci_run(_x924, _x925, _x926, _x927, _x928) {
2909
+ return _ref277.apply(this, arguments);
2910
+ };
2911
+ }();
2889
2912
  var lock_all = exports.lock_all = function () {
2890
- var _ref276 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
2913
+ var _ref278 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
2891
2914
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2892
2915
  return sdk.post("/projects/".concat(project_id, "/manifest/lock_all"), {
2893
2916
  fields
2894
2917
  }, null, options);
2895
2918
  });
2896
- return function lock_all(_x919, _x920, _x921, _x922) {
2897
- return _ref276.apply(this, arguments);
2919
+ return function lock_all(_x929, _x930, _x931, _x932) {
2920
+ return _ref278.apply(this, arguments);
2898
2921
  };
2899
2922
  }();
2900
2923
  var all_git_branches = exports.all_git_branches = function () {
2901
- var _ref277 = _asyncToGenerator(function* (sdk, project_id, options) {
2924
+ var _ref279 = _asyncToGenerator(function* (sdk, project_id, options) {
2902
2925
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2903
2926
  return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
2904
2927
  });
2905
- return function all_git_branches(_x923, _x924, _x925) {
2906
- return _ref277.apply(this, arguments);
2928
+ return function all_git_branches(_x933, _x934, _x935) {
2929
+ return _ref279.apply(this, arguments);
2907
2930
  };
2908
2931
  }();
2909
2932
  var git_branch = exports.git_branch = function () {
2910
- var _ref278 = _asyncToGenerator(function* (sdk, project_id, options) {
2933
+ var _ref280 = _asyncToGenerator(function* (sdk, project_id, options) {
2911
2934
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2912
2935
  return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
2913
2936
  });
2914
- return function git_branch(_x926, _x927, _x928) {
2915
- return _ref278.apply(this, arguments);
2937
+ return function git_branch(_x936, _x937, _x938) {
2938
+ return _ref280.apply(this, arguments);
2916
2939
  };
2917
2940
  }();
2918
2941
  var update_git_branch = exports.update_git_branch = function () {
2919
- var _ref279 = _asyncToGenerator(function* (sdk, project_id, body, options) {
2942
+ var _ref281 = _asyncToGenerator(function* (sdk, project_id, body, options) {
2920
2943
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2921
2944
  return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
2922
2945
  });
2923
- return function update_git_branch(_x929, _x930, _x931, _x932) {
2924
- return _ref279.apply(this, arguments);
2946
+ return function update_git_branch(_x939, _x940, _x941, _x942) {
2947
+ return _ref281.apply(this, arguments);
2925
2948
  };
2926
2949
  }();
2927
2950
  var create_git_branch = exports.create_git_branch = function () {
2928
- var _ref280 = _asyncToGenerator(function* (sdk, project_id, body, options) {
2951
+ var _ref282 = _asyncToGenerator(function* (sdk, project_id, body, options) {
2929
2952
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2930
2953
  return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
2931
2954
  });
2932
- return function create_git_branch(_x933, _x934, _x935, _x936) {
2933
- return _ref280.apply(this, arguments);
2955
+ return function create_git_branch(_x943, _x944, _x945, _x946) {
2956
+ return _ref282.apply(this, arguments);
2934
2957
  };
2935
2958
  }();
2936
2959
  var find_git_branch = exports.find_git_branch = function () {
2937
- var _ref281 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
2960
+ var _ref283 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
2938
2961
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2939
2962
  branch_name = (0, _sdkRtl.encodeParam)(branch_name);
2940
2963
  return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
2941
2964
  });
2942
- return function find_git_branch(_x937, _x938, _x939, _x940) {
2943
- return _ref281.apply(this, arguments);
2965
+ return function find_git_branch(_x947, _x948, _x949, _x950) {
2966
+ return _ref283.apply(this, arguments);
2944
2967
  };
2945
2968
  }();
2946
2969
  var delete_git_branch = exports.delete_git_branch = function () {
2947
- var _ref282 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
2970
+ var _ref284 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
2948
2971
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2949
2972
  branch_name = (0, _sdkRtl.encodeParam)(branch_name);
2950
2973
  return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
2951
2974
  });
2952
- return function delete_git_branch(_x941, _x942, _x943, _x944) {
2953
- return _ref282.apply(this, arguments);
2975
+ return function delete_git_branch(_x951, _x952, _x953, _x954) {
2976
+ return _ref284.apply(this, arguments);
2954
2977
  };
2955
2978
  }();
2956
2979
  var deploy_ref_to_production = exports.deploy_ref_to_production = function () {
2957
- var _ref283 = _asyncToGenerator(function* (sdk, request, options) {
2980
+ var _ref285 = _asyncToGenerator(function* (sdk, request, options) {
2958
2981
  request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
2959
2982
  return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
2960
2983
  branch: request.branch,
2961
2984
  ref: request.ref
2962
2985
  }, null, options);
2963
2986
  });
2964
- return function deploy_ref_to_production(_x945, _x946, _x947) {
2965
- return _ref283.apply(this, arguments);
2987
+ return function deploy_ref_to_production(_x955, _x956, _x957) {
2988
+ return _ref285.apply(this, arguments);
2966
2989
  };
2967
2990
  }();
2968
2991
  var deploy_to_production = exports.deploy_to_production = function () {
2969
- var _ref284 = _asyncToGenerator(function* (sdk, project_id, options) {
2992
+ var _ref286 = _asyncToGenerator(function* (sdk, project_id, options) {
2970
2993
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2971
2994
  return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
2972
2995
  });
2973
- return function deploy_to_production(_x948, _x949, _x950) {
2974
- return _ref284.apply(this, arguments);
2996
+ return function deploy_to_production(_x958, _x959, _x960) {
2997
+ return _ref286.apply(this, arguments);
2975
2998
  };
2976
2999
  }();
2977
3000
  var reset_project_to_production = exports.reset_project_to_production = function () {
2978
- var _ref285 = _asyncToGenerator(function* (sdk, project_id, options) {
3001
+ var _ref287 = _asyncToGenerator(function* (sdk, project_id, options) {
2979
3002
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2980
3003
  return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
2981
3004
  });
2982
- return function reset_project_to_production(_x951, _x952, _x953) {
2983
- return _ref285.apply(this, arguments);
3005
+ return function reset_project_to_production(_x961, _x962, _x963) {
3006
+ return _ref287.apply(this, arguments);
2984
3007
  };
2985
3008
  }();
2986
3009
  var reset_project_to_remote = exports.reset_project_to_remote = function () {
2987
- var _ref286 = _asyncToGenerator(function* (sdk, project_id, options) {
3010
+ var _ref288 = _asyncToGenerator(function* (sdk, project_id, options) {
2988
3011
  project_id = (0, _sdkRtl.encodeParam)(project_id);
2989
3012
  return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
2990
3013
  });
2991
- return function reset_project_to_remote(_x954, _x955, _x956) {
2992
- return _ref286.apply(this, arguments);
3014
+ return function reset_project_to_remote(_x964, _x965, _x966) {
3015
+ return _ref288.apply(this, arguments);
2993
3016
  };
2994
3017
  }();
2995
3018
  var all_projects = exports.all_projects = function () {
2996
- var _ref287 = _asyncToGenerator(function* (sdk, fields, options) {
3019
+ var _ref289 = _asyncToGenerator(function* (sdk, fields, options) {
2997
3020
  return sdk.get('/projects', {
2998
3021
  fields
2999
3022
  }, null, options);
3000
3023
  });
3001
- return function all_projects(_x957, _x958, _x959) {
3002
- return _ref287.apply(this, arguments);
3024
+ return function all_projects(_x967, _x968, _x969) {
3025
+ return _ref289.apply(this, arguments);
3003
3026
  };
3004
3027
  }();
3005
3028
  var create_project = exports.create_project = function () {
3006
- var _ref288 = _asyncToGenerator(function* (sdk, body, options) {
3029
+ var _ref290 = _asyncToGenerator(function* (sdk, body, options) {
3007
3030
  return sdk.post('/projects', null, body, options);
3008
3031
  });
3009
- return function create_project(_x960, _x961, _x962) {
3010
- return _ref288.apply(this, arguments);
3032
+ return function create_project(_x970, _x971, _x972) {
3033
+ return _ref290.apply(this, arguments);
3011
3034
  };
3012
3035
  }();
3013
3036
  var project = exports.project = function () {
3014
- var _ref289 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3037
+ var _ref291 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3015
3038
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3016
3039
  return sdk.get("/projects/".concat(project_id), {
3017
3040
  fields
3018
3041
  }, null, options);
3019
3042
  });
3020
- return function project(_x963, _x964, _x965, _x966) {
3021
- return _ref289.apply(this, arguments);
3043
+ return function project(_x973, _x974, _x975, _x976) {
3044
+ return _ref291.apply(this, arguments);
3022
3045
  };
3023
3046
  }();
3024
3047
  var update_project = exports.update_project = function () {
3025
- var _ref290 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
3048
+ var _ref292 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
3026
3049
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3027
3050
  return sdk.patch("/projects/".concat(project_id), {
3028
3051
  fields
3029
3052
  }, body, options);
3030
3053
  });
3031
- return function update_project(_x967, _x968, _x969, _x970, _x971) {
3032
- return _ref290.apply(this, arguments);
3054
+ return function update_project(_x977, _x978, _x979, _x980, _x981) {
3055
+ return _ref292.apply(this, arguments);
3033
3056
  };
3034
3057
  }();
3035
3058
  var manifest = exports.manifest = function () {
3036
- var _ref291 = _asyncToGenerator(function* (sdk, project_id, options) {
3059
+ var _ref293 = _asyncToGenerator(function* (sdk, project_id, options) {
3037
3060
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3038
3061
  return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
3039
3062
  });
3040
- return function manifest(_x972, _x973, _x974) {
3041
- return _ref291.apply(this, arguments);
3063
+ return function manifest(_x982, _x983, _x984) {
3064
+ return _ref293.apply(this, arguments);
3042
3065
  };
3043
3066
  }();
3044
3067
  var git_deploy_key = exports.git_deploy_key = function () {
3045
- var _ref292 = _asyncToGenerator(function* (sdk, project_id, options) {
3068
+ var _ref294 = _asyncToGenerator(function* (sdk, project_id, options) {
3046
3069
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3047
3070
  return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
3048
3071
  });
3049
- return function git_deploy_key(_x975, _x976, _x977) {
3050
- return _ref292.apply(this, arguments);
3072
+ return function git_deploy_key(_x985, _x986, _x987) {
3073
+ return _ref294.apply(this, arguments);
3051
3074
  };
3052
3075
  }();
3053
3076
  var create_git_deploy_key = exports.create_git_deploy_key = function () {
3054
- var _ref293 = _asyncToGenerator(function* (sdk, project_id, options) {
3077
+ var _ref295 = _asyncToGenerator(function* (sdk, project_id, options) {
3055
3078
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3056
3079
  return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
3057
3080
  });
3058
- return function create_git_deploy_key(_x978, _x979, _x980) {
3059
- return _ref293.apply(this, arguments);
3081
+ return function create_git_deploy_key(_x988, _x989, _x990) {
3082
+ return _ref295.apply(this, arguments);
3060
3083
  };
3061
3084
  }();
3062
3085
  var project_validation_results = exports.project_validation_results = function () {
3063
- var _ref294 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3086
+ var _ref296 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3064
3087
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3065
3088
  return sdk.get("/projects/".concat(project_id, "/validate"), {
3066
3089
  fields
3067
3090
  }, null, options);
3068
3091
  });
3069
- return function project_validation_results(_x981, _x982, _x983, _x984) {
3070
- return _ref294.apply(this, arguments);
3092
+ return function project_validation_results(_x991, _x992, _x993, _x994) {
3093
+ return _ref296.apply(this, arguments);
3071
3094
  };
3072
3095
  }();
3073
3096
  var validate_project = exports.validate_project = function () {
3074
- var _ref295 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3097
+ var _ref297 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3075
3098
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3076
3099
  return sdk.post("/projects/".concat(project_id, "/validate"), {
3077
3100
  fields
3078
3101
  }, null, options);
3079
3102
  });
3080
- return function validate_project(_x985, _x986, _x987, _x988) {
3081
- return _ref295.apply(this, arguments);
3103
+ return function validate_project(_x995, _x996, _x997, _x998) {
3104
+ return _ref297.apply(this, arguments);
3082
3105
  };
3083
3106
  }();
3084
3107
  var project_workspace = exports.project_workspace = function () {
3085
- var _ref296 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3108
+ var _ref298 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3086
3109
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3087
3110
  return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
3088
3111
  fields
3089
3112
  }, null, options);
3090
3113
  });
3091
- return function project_workspace(_x989, _x990, _x991, _x992) {
3092
- return _ref296.apply(this, arguments);
3114
+ return function project_workspace(_x999, _x1000, _x1001, _x1002) {
3115
+ return _ref298.apply(this, arguments);
3093
3116
  };
3094
3117
  }();
3095
3118
  var all_project_files = exports.all_project_files = function () {
3096
- var _ref297 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3119
+ var _ref299 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
3097
3120
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3098
3121
  return sdk.get("/projects/".concat(project_id, "/files"), {
3099
3122
  fields
3100
3123
  }, null, options);
3101
3124
  });
3102
- return function all_project_files(_x993, _x994, _x995, _x996) {
3103
- return _ref297.apply(this, arguments);
3125
+ return function all_project_files(_x1003, _x1004, _x1005, _x1006) {
3126
+ return _ref299.apply(this, arguments);
3104
3127
  };
3105
3128
  }();
3106
3129
  var project_file = exports.project_file = function () {
3107
- var _ref298 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
3130
+ var _ref300 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
3108
3131
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3109
3132
  return sdk.get("/projects/".concat(project_id, "/files/file"), {
3110
3133
  file_id,
3111
3134
  fields
3112
3135
  }, null, options);
3113
3136
  });
3114
- return function project_file(_x997, _x998, _x999, _x1000, _x1001) {
3115
- return _ref298.apply(this, arguments);
3137
+ return function project_file(_x1007, _x1008, _x1009, _x1010, _x1011) {
3138
+ return _ref300.apply(this, arguments);
3116
3139
  };
3117
3140
  }();
3118
3141
  var all_git_connection_tests = exports.all_git_connection_tests = function () {
3119
- var _ref299 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
3142
+ var _ref301 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
3120
3143
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3121
3144
  return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
3122
3145
  remote_url
3123
3146
  }, null, options);
3124
3147
  });
3125
- return function all_git_connection_tests(_x1002, _x1003, _x1004, _x1005) {
3126
- return _ref299.apply(this, arguments);
3148
+ return function all_git_connection_tests(_x1012, _x1013, _x1014, _x1015) {
3149
+ return _ref301.apply(this, arguments);
3127
3150
  };
3128
3151
  }();
3129
3152
  var run_git_connection_test = exports.run_git_connection_test = function () {
3130
- var _ref300 = _asyncToGenerator(function* (sdk, request, options) {
3153
+ var _ref302 = _asyncToGenerator(function* (sdk, request, options) {
3131
3154
  request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
3132
3155
  request.test_id = (0, _sdkRtl.encodeParam)(request.test_id);
3133
3156
  return sdk.get("/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
@@ -3135,23 +3158,23 @@ var run_git_connection_test = exports.run_git_connection_test = function () {
3135
3158
  use_production: request.use_production
3136
3159
  }, null, options);
3137
3160
  });
3138
- return function run_git_connection_test(_x1006, _x1007, _x1008) {
3139
- return _ref300.apply(this, arguments);
3161
+ return function run_git_connection_test(_x1016, _x1017, _x1018) {
3162
+ return _ref302.apply(this, arguments);
3140
3163
  };
3141
3164
  }();
3142
3165
  var all_lookml_tests = exports.all_lookml_tests = function () {
3143
- var _ref301 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
3166
+ var _ref303 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
3144
3167
  project_id = (0, _sdkRtl.encodeParam)(project_id);
3145
3168
  return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
3146
3169
  file_id
3147
3170
  }, null, options);
3148
3171
  });
3149
- return function all_lookml_tests(_x1009, _x1010, _x1011, _x1012) {
3150
- return _ref301.apply(this, arguments);
3172
+ return function all_lookml_tests(_x1019, _x1020, _x1021, _x1022) {
3173
+ return _ref303.apply(this, arguments);
3151
3174
  };
3152
3175
  }();
3153
3176
  var run_lookml_test = exports.run_lookml_test = function () {
3154
- var _ref302 = _asyncToGenerator(function* (sdk, request, options) {
3177
+ var _ref304 = _asyncToGenerator(function* (sdk, request, options) {
3155
3178
  request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
3156
3179
  return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
3157
3180
  file_id: request.file_id,
@@ -3159,12 +3182,12 @@ var run_lookml_test = exports.run_lookml_test = function () {
3159
3182
  model: request.model
3160
3183
  }, null, options);
3161
3184
  });
3162
- return function run_lookml_test(_x1013, _x1014, _x1015) {
3163
- return _ref302.apply(this, arguments);
3185
+ return function run_lookml_test(_x1023, _x1024, _x1025) {
3186
+ return _ref304.apply(this, arguments);
3164
3187
  };
3165
3188
  }();
3166
3189
  var tag_ref = exports.tag_ref = function () {
3167
- var _ref303 = _asyncToGenerator(function* (sdk, request, options) {
3190
+ var _ref305 = _asyncToGenerator(function* (sdk, request, options) {
3168
3191
  request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
3169
3192
  return sdk.post("/projects/".concat(request.project_id, "/tag"), {
3170
3193
  commit_sha: request.commit_sha,
@@ -3172,30 +3195,7 @@ var tag_ref = exports.tag_ref = function () {
3172
3195
  tag_message: request.tag_message
3173
3196
  }, request.body, options);
3174
3197
  });
3175
- return function tag_ref(_x1016, _x1017, _x1018) {
3176
- return _ref303.apply(this, arguments);
3177
- };
3178
- }();
3179
- var get_ci_run = exports.get_ci_run = function () {
3180
- var _ref304 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
3181
- project_id = (0, _sdkRtl.encodeParam)(project_id);
3182
- run_id = (0, _sdkRtl.encodeParam)(run_id);
3183
- return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
3184
- fields
3185
- }, null, options);
3186
- });
3187
- return function get_ci_run(_x1019, _x1020, _x1021, _x1022, _x1023) {
3188
- return _ref304.apply(this, arguments);
3189
- };
3190
- }();
3191
- var create_ci_run = exports.create_ci_run = function () {
3192
- var _ref305 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
3193
- project_id = (0, _sdkRtl.encodeParam)(project_id);
3194
- return sdk.post("/projects/".concat(project_id, "/ci/run"), {
3195
- fields
3196
- }, body, options);
3197
- });
3198
- return function create_ci_run(_x1024, _x1025, _x1026, _x1027, _x1028) {
3198
+ return function tag_ref(_x1026, _x1027, _x1028) {
3199
3199
  return _ref305.apply(this, arguments);
3200
3200
  };
3201
3201
  }();