@looker/sdk 25.10.0 → 25.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.
@@ -1,2 +1,2 @@
1
- export declare const sdkVersion = "25.10";
1
+ export declare const sdkVersion = "25.16";
2
2
  export declare const environmentPrefix = "LOOKERSDK";
package/lib/constants.js CHANGED
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.sdkVersion = exports.environmentPrefix = void 0;
7
- var sdkVersion = exports.sdkVersion = '25.10';
7
+ var sdkVersion = exports.sdkVersion = '25.16';
8
8
  var environmentPrefix = exports.environmentPrefix = 'LOOKERSDK';
9
9
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","names":["sdkVersion","exports","environmentPrefix"],"sources":["../src/constants.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\nexport const sdkVersion = '25.10';\nexport const environmentPrefix = 'LOOKERSDK';\n"],"mappings":";;;;;;AA0BO,IAAMA,UAAU,GAAAC,OAAA,CAAAD,UAAA,GAAG,OAAO;AAC1B,IAAME,iBAAiB,GAAAD,OAAA,CAAAC,iBAAA,GAAG,WAAW"}
1
+ {"version":3,"file":"constants.js","names":["sdkVersion","exports","environmentPrefix"],"sources":["../src/constants.ts"],"sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\n\nexport const sdkVersion = '25.16';\nexport const environmentPrefix = 'LOOKERSDK';\n"],"mappings":";;;;;;AA0BO,IAAMA,UAAU,GAAAC,OAAA,CAAAD,UAAA,GAAG,OAAO;AAC1B,IAAME,iBAAiB,GAAAD,OAAA,CAAAC,iBAAA,GAAG,WAAW"}
@@ -1446,6 +1446,7 @@ export var search_content_favorites = function () {
1446
1446
  dashboard_id: request.dashboard_id,
1447
1447
  look_id: request.look_id,
1448
1448
  board_id: request.board_id,
1449
+ include_board_items: request.include_board_items,
1449
1450
  limit: request.limit,
1450
1451
  offset: request.offset,
1451
1452
  sorts: request.sorts,
@@ -4154,7 +4155,8 @@ export var search_users = function () {
4154
4155
  is_disabled: request.is_disabled,
4155
4156
  filter_or: request.filter_or,
4156
4157
  content_metadata_id: request.content_metadata_id,
4157
- group_id: request.group_id
4158
+ group_id: request.group_id,
4159
+ can_manage_api3_creds: request.can_manage_api3_creds
4158
4160
  }, null, options);
4159
4161
  });
4160
4162
  return function search_users(_x1318, _x1319, _x1320) {
@@ -4391,161 +4393,173 @@ export var user_credentials_api3 = function () {
4391
4393
  return _ref410.apply(this, arguments);
4392
4394
  };
4393
4395
  }();
4396
+ export var update_user_credentials_api3 = function () {
4397
+ var _ref411 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, body, fields, options) {
4398
+ user_id = encodeParam(user_id);
4399
+ credentials_api3_id = encodeParam(credentials_api3_id);
4400
+ return sdk.patch("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
4401
+ fields
4402
+ }, body, options);
4403
+ });
4404
+ return function update_user_credentials_api3(_x1403, _x1404, _x1405, _x1406, _x1407, _x1408) {
4405
+ return _ref411.apply(this, arguments);
4406
+ };
4407
+ }();
4394
4408
  export var delete_user_credentials_api3 = function () {
4395
- var _ref411 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
4409
+ var _ref412 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
4396
4410
  user_id = encodeParam(user_id);
4397
4411
  credentials_api3_id = encodeParam(credentials_api3_id);
4398
4412
  return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
4399
4413
  });
4400
- return function delete_user_credentials_api3(_x1403, _x1404, _x1405, _x1406) {
4401
- return _ref411.apply(this, arguments);
4414
+ return function delete_user_credentials_api3(_x1409, _x1410, _x1411, _x1412) {
4415
+ return _ref412.apply(this, arguments);
4402
4416
  };
4403
4417
  }();
4404
4418
  export var all_user_credentials_api3s = function () {
4405
- var _ref412 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4419
+ var _ref413 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4406
4420
  user_id = encodeParam(user_id);
4407
4421
  return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
4408
4422
  fields
4409
4423
  }, null, options);
4410
4424
  });
4411
- return function all_user_credentials_api3s(_x1407, _x1408, _x1409, _x1410) {
4412
- return _ref412.apply(this, arguments);
4425
+ return function all_user_credentials_api3s(_x1413, _x1414, _x1415, _x1416) {
4426
+ return _ref413.apply(this, arguments);
4413
4427
  };
4414
4428
  }();
4415
4429
  export var create_user_credentials_api3 = function () {
4416
- var _ref413 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4430
+ var _ref414 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4417
4431
  user_id = encodeParam(user_id);
4418
4432
  return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
4419
4433
  fields
4420
4434
  }, null, options);
4421
4435
  });
4422
- return function create_user_credentials_api3(_x1411, _x1412, _x1413, _x1414) {
4423
- return _ref413.apply(this, arguments);
4436
+ return function create_user_credentials_api3(_x1417, _x1418, _x1419, _x1420) {
4437
+ return _ref414.apply(this, arguments);
4424
4438
  };
4425
4439
  }();
4426
4440
  export var user_credentials_embed = function () {
4427
- var _ref414 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
4441
+ var _ref415 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
4428
4442
  user_id = encodeParam(user_id);
4429
4443
  credentials_embed_id = encodeParam(credentials_embed_id);
4430
4444
  return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
4431
4445
  fields
4432
4446
  }, null, options);
4433
4447
  });
4434
- return function user_credentials_embed(_x1415, _x1416, _x1417, _x1418, _x1419) {
4435
- return _ref414.apply(this, arguments);
4448
+ return function user_credentials_embed(_x1421, _x1422, _x1423, _x1424, _x1425) {
4449
+ return _ref415.apply(this, arguments);
4436
4450
  };
4437
4451
  }();
4438
4452
  export var delete_user_credentials_embed = function () {
4439
- var _ref415 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
4453
+ var _ref416 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
4440
4454
  user_id = encodeParam(user_id);
4441
4455
  credentials_embed_id = encodeParam(credentials_embed_id);
4442
4456
  return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
4443
4457
  });
4444
- return function delete_user_credentials_embed(_x1420, _x1421, _x1422, _x1423) {
4445
- return _ref415.apply(this, arguments);
4458
+ return function delete_user_credentials_embed(_x1426, _x1427, _x1428, _x1429) {
4459
+ return _ref416.apply(this, arguments);
4446
4460
  };
4447
4461
  }();
4448
4462
  export var all_user_credentials_embeds = function () {
4449
- var _ref416 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4463
+ var _ref417 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4450
4464
  user_id = encodeParam(user_id);
4451
4465
  return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
4452
4466
  fields
4453
4467
  }, null, options);
4454
4468
  });
4455
- return function all_user_credentials_embeds(_x1424, _x1425, _x1426, _x1427) {
4456
- return _ref416.apply(this, arguments);
4469
+ return function all_user_credentials_embeds(_x1430, _x1431, _x1432, _x1433) {
4470
+ return _ref417.apply(this, arguments);
4457
4471
  };
4458
4472
  }();
4459
4473
  export var user_credentials_looker_openid = function () {
4460
- var _ref417 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4474
+ var _ref418 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4461
4475
  user_id = encodeParam(user_id);
4462
4476
  return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
4463
4477
  fields
4464
4478
  }, null, options);
4465
4479
  });
4466
- return function user_credentials_looker_openid(_x1428, _x1429, _x1430, _x1431) {
4467
- return _ref417.apply(this, arguments);
4480
+ return function user_credentials_looker_openid(_x1434, _x1435, _x1436, _x1437) {
4481
+ return _ref418.apply(this, arguments);
4468
4482
  };
4469
4483
  }();
4470
4484
  export var delete_user_credentials_looker_openid = function () {
4471
- var _ref418 = _asyncToGenerator(function* (sdk, user_id, options) {
4485
+ var _ref419 = _asyncToGenerator(function* (sdk, user_id, options) {
4472
4486
  user_id = encodeParam(user_id);
4473
4487
  return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
4474
4488
  });
4475
- return function delete_user_credentials_looker_openid(_x1432, _x1433, _x1434) {
4476
- return _ref418.apply(this, arguments);
4489
+ return function delete_user_credentials_looker_openid(_x1438, _x1439, _x1440) {
4490
+ return _ref419.apply(this, arguments);
4477
4491
  };
4478
4492
  }();
4479
4493
  export var user_session = function () {
4480
- var _ref419 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
4494
+ var _ref420 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
4481
4495
  user_id = encodeParam(user_id);
4482
4496
  session_id = encodeParam(session_id);
4483
4497
  return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
4484
4498
  fields
4485
4499
  }, null, options);
4486
4500
  });
4487
- return function user_session(_x1435, _x1436, _x1437, _x1438, _x1439) {
4488
- return _ref419.apply(this, arguments);
4501
+ return function user_session(_x1441, _x1442, _x1443, _x1444, _x1445) {
4502
+ return _ref420.apply(this, arguments);
4489
4503
  };
4490
4504
  }();
4491
4505
  export var delete_user_session = function () {
4492
- var _ref420 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
4506
+ var _ref421 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
4493
4507
  user_id = encodeParam(user_id);
4494
4508
  session_id = encodeParam(session_id);
4495
4509
  return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
4496
4510
  });
4497
- return function delete_user_session(_x1440, _x1441, _x1442, _x1443) {
4498
- return _ref420.apply(this, arguments);
4511
+ return function delete_user_session(_x1446, _x1447, _x1448, _x1449) {
4512
+ return _ref421.apply(this, arguments);
4499
4513
  };
4500
4514
  }();
4501
4515
  export var all_user_sessions = function () {
4502
- var _ref421 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4516
+ var _ref422 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4503
4517
  user_id = encodeParam(user_id);
4504
4518
  return sdk.get("/users/".concat(user_id, "/sessions"), {
4505
4519
  fields
4506
4520
  }, null, options);
4507
4521
  });
4508
- return function all_user_sessions(_x1444, _x1445, _x1446, _x1447) {
4509
- return _ref421.apply(this, arguments);
4522
+ return function all_user_sessions(_x1450, _x1451, _x1452, _x1453) {
4523
+ return _ref422.apply(this, arguments);
4510
4524
  };
4511
4525
  }();
4512
4526
  export var create_user_credentials_email_password_reset = function () {
4513
- var _ref422 = _asyncToGenerator(function* (sdk, request, options) {
4527
+ var _ref423 = _asyncToGenerator(function* (sdk, request, options) {
4514
4528
  request.user_id = encodeParam(request.user_id);
4515
4529
  return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
4516
4530
  expires: request.expires,
4517
4531
  fields: request.fields
4518
4532
  }, null, options);
4519
4533
  });
4520
- return function create_user_credentials_email_password_reset(_x1448, _x1449, _x1450) {
4521
- return _ref422.apply(this, arguments);
4534
+ return function create_user_credentials_email_password_reset(_x1454, _x1455, _x1456) {
4535
+ return _ref423.apply(this, arguments);
4522
4536
  };
4523
4537
  }();
4524
4538
  export var user_roles = function () {
4525
- var _ref423 = _asyncToGenerator(function* (sdk, request, options) {
4539
+ var _ref424 = _asyncToGenerator(function* (sdk, request, options) {
4526
4540
  request.user_id = encodeParam(request.user_id);
4527
4541
  return sdk.get("/users/".concat(request.user_id, "/roles"), {
4528
4542
  fields: request.fields,
4529
4543
  direct_association_only: request.direct_association_only
4530
4544
  }, null, options);
4531
4545
  });
4532
- return function user_roles(_x1451, _x1452, _x1453) {
4533
- return _ref423.apply(this, arguments);
4546
+ return function user_roles(_x1457, _x1458, _x1459) {
4547
+ return _ref424.apply(this, arguments);
4534
4548
  };
4535
4549
  }();
4536
4550
  export var set_user_roles = function () {
4537
- var _ref424 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
4551
+ var _ref425 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
4538
4552
  user_id = encodeParam(user_id);
4539
4553
  return sdk.put("/users/".concat(user_id, "/roles"), {
4540
4554
  fields
4541
4555
  }, body, options);
4542
4556
  });
4543
- return function set_user_roles(_x1454, _x1455, _x1456, _x1457, _x1458) {
4544
- return _ref424.apply(this, arguments);
4557
+ return function set_user_roles(_x1460, _x1461, _x1462, _x1463, _x1464) {
4558
+ return _ref425.apply(this, arguments);
4545
4559
  };
4546
4560
  }();
4547
4561
  export var user_attribute_user_values = function () {
4548
- var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
4562
+ var _ref426 = _asyncToGenerator(function* (sdk, request, options) {
4549
4563
  request.user_id = encodeParam(request.user_id);
4550
4564
  return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
4551
4565
  fields: request.fields,
@@ -4554,147 +4568,147 @@ export var user_attribute_user_values = function () {
4554
4568
  include_unset: request.include_unset
4555
4569
  }, null, options);
4556
4570
  });
4557
- return function user_attribute_user_values(_x1459, _x1460, _x1461) {
4558
- return _ref425.apply(this, arguments);
4571
+ return function user_attribute_user_values(_x1465, _x1466, _x1467) {
4572
+ return _ref426.apply(this, arguments);
4559
4573
  };
4560
4574
  }();
4561
4575
  export var set_user_attribute_user_value = function () {
4562
- var _ref426 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
4576
+ var _ref427 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
4563
4577
  user_id = encodeParam(user_id);
4564
4578
  user_attribute_id = encodeParam(user_attribute_id);
4565
4579
  return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
4566
4580
  });
4567
- return function set_user_attribute_user_value(_x1462, _x1463, _x1464, _x1465, _x1466) {
4568
- return _ref426.apply(this, arguments);
4581
+ return function set_user_attribute_user_value(_x1468, _x1469, _x1470, _x1471, _x1472) {
4582
+ return _ref427.apply(this, arguments);
4569
4583
  };
4570
4584
  }();
4571
4585
  export var delete_user_attribute_user_value = function () {
4572
- var _ref427 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
4586
+ var _ref428 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
4573
4587
  user_id = encodeParam(user_id);
4574
4588
  user_attribute_id = encodeParam(user_attribute_id);
4575
4589
  return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
4576
4590
  });
4577
- return function delete_user_attribute_user_value(_x1467, _x1468, _x1469, _x1470) {
4578
- return _ref427.apply(this, arguments);
4591
+ return function delete_user_attribute_user_value(_x1473, _x1474, _x1475, _x1476) {
4592
+ return _ref428.apply(this, arguments);
4579
4593
  };
4580
4594
  }();
4581
4595
  export var send_user_credentials_email_password_reset = function () {
4582
- var _ref428 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4596
+ var _ref429 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
4583
4597
  user_id = encodeParam(user_id);
4584
4598
  return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
4585
4599
  fields
4586
4600
  }, null, options);
4587
4601
  });
4588
- return function send_user_credentials_email_password_reset(_x1471, _x1472, _x1473, _x1474) {
4589
- return _ref428.apply(this, arguments);
4602
+ return function send_user_credentials_email_password_reset(_x1477, _x1478, _x1479, _x1480) {
4603
+ return _ref429.apply(this, arguments);
4590
4604
  };
4591
4605
  }();
4592
4606
  export var wipeout_user_emails = function () {
4593
- var _ref429 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
4607
+ var _ref430 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
4594
4608
  user_id = encodeParam(user_id);
4595
4609
  return sdk.post("/users/".concat(user_id, "/update_emails"), {
4596
4610
  fields
4597
4611
  }, body, options);
4598
4612
  });
4599
- return function wipeout_user_emails(_x1475, _x1476, _x1477, _x1478, _x1479) {
4600
- return _ref429.apply(this, arguments);
4613
+ return function wipeout_user_emails(_x1481, _x1482, _x1483, _x1484, _x1485) {
4614
+ return _ref430.apply(this, arguments);
4601
4615
  };
4602
4616
  }();
4603
4617
  export var create_embed_user = function () {
4604
- var _ref430 = _asyncToGenerator(function* (sdk, body, options) {
4618
+ var _ref431 = _asyncToGenerator(function* (sdk, body, options) {
4605
4619
  return sdk.post('/users/embed_user', null, body, options);
4606
4620
  });
4607
- return function create_embed_user(_x1480, _x1481, _x1482) {
4608
- return _ref430.apply(this, arguments);
4621
+ return function create_embed_user(_x1486, _x1487, _x1488) {
4622
+ return _ref431.apply(this, arguments);
4609
4623
  };
4610
4624
  }();
4611
4625
  export var all_user_attributes = function () {
4612
- var _ref431 = _asyncToGenerator(function* (sdk, request, options) {
4626
+ var _ref432 = _asyncToGenerator(function* (sdk, request, options) {
4613
4627
  return sdk.get('/user_attributes', {
4614
4628
  fields: request.fields,
4615
4629
  sorts: request.sorts
4616
4630
  }, null, options);
4617
4631
  });
4618
- return function all_user_attributes(_x1483, _x1484, _x1485) {
4619
- return _ref431.apply(this, arguments);
4632
+ return function all_user_attributes(_x1489, _x1490, _x1491) {
4633
+ return _ref432.apply(this, arguments);
4620
4634
  };
4621
4635
  }();
4622
4636
  export var create_user_attribute = function () {
4623
- var _ref432 = _asyncToGenerator(function* (sdk, body, fields, options) {
4637
+ var _ref433 = _asyncToGenerator(function* (sdk, body, fields, options) {
4624
4638
  return sdk.post('/user_attributes', {
4625
4639
  fields
4626
4640
  }, body, options);
4627
4641
  });
4628
- return function create_user_attribute(_x1486, _x1487, _x1488, _x1489) {
4629
- return _ref432.apply(this, arguments);
4642
+ return function create_user_attribute(_x1492, _x1493, _x1494, _x1495) {
4643
+ return _ref433.apply(this, arguments);
4630
4644
  };
4631
4645
  }();
4632
4646
  export var user_attribute = function () {
4633
- var _ref433 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
4647
+ var _ref434 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
4634
4648
  user_attribute_id = encodeParam(user_attribute_id);
4635
4649
  return sdk.get("/user_attributes/".concat(user_attribute_id), {
4636
4650
  fields
4637
4651
  }, null, options);
4638
4652
  });
4639
- return function user_attribute(_x1490, _x1491, _x1492, _x1493) {
4640
- return _ref433.apply(this, arguments);
4653
+ return function user_attribute(_x1496, _x1497, _x1498, _x1499) {
4654
+ return _ref434.apply(this, arguments);
4641
4655
  };
4642
4656
  }();
4643
4657
  export var update_user_attribute = function () {
4644
- var _ref434 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
4658
+ var _ref435 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
4645
4659
  user_attribute_id = encodeParam(user_attribute_id);
4646
4660
  return sdk.patch("/user_attributes/".concat(user_attribute_id), {
4647
4661
  fields
4648
4662
  }, body, options);
4649
4663
  });
4650
- return function update_user_attribute(_x1494, _x1495, _x1496, _x1497, _x1498) {
4651
- return _ref434.apply(this, arguments);
4664
+ return function update_user_attribute(_x1500, _x1501, _x1502, _x1503, _x1504) {
4665
+ return _ref435.apply(this, arguments);
4652
4666
  };
4653
4667
  }();
4654
4668
  export var delete_user_attribute = function () {
4655
- var _ref435 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
4669
+ var _ref436 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
4656
4670
  user_attribute_id = encodeParam(user_attribute_id);
4657
4671
  return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
4658
4672
  });
4659
- return function delete_user_attribute(_x1499, _x1500, _x1501) {
4660
- return _ref435.apply(this, arguments);
4673
+ return function delete_user_attribute(_x1505, _x1506, _x1507) {
4674
+ return _ref436.apply(this, arguments);
4661
4675
  };
4662
4676
  }();
4663
4677
  export var all_user_attribute_group_values = function () {
4664
- var _ref436 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
4678
+ var _ref437 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
4665
4679
  user_attribute_id = encodeParam(user_attribute_id);
4666
4680
  return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
4667
4681
  fields
4668
4682
  }, null, options);
4669
4683
  });
4670
- return function all_user_attribute_group_values(_x1502, _x1503, _x1504, _x1505) {
4671
- return _ref436.apply(this, arguments);
4684
+ return function all_user_attribute_group_values(_x1508, _x1509, _x1510, _x1511) {
4685
+ return _ref437.apply(this, arguments);
4672
4686
  };
4673
4687
  }();
4674
4688
  export var set_user_attribute_group_values = function () {
4675
- var _ref437 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
4689
+ var _ref438 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
4676
4690
  user_attribute_id = encodeParam(user_attribute_id);
4677
4691
  return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
4678
4692
  });
4679
- return function set_user_attribute_group_values(_x1506, _x1507, _x1508, _x1509) {
4680
- return _ref437.apply(this, arguments);
4693
+ return function set_user_attribute_group_values(_x1512, _x1513, _x1514, _x1515) {
4694
+ return _ref438.apply(this, arguments);
4681
4695
  };
4682
4696
  }();
4683
4697
  export var all_workspaces = function () {
4684
- var _ref438 = _asyncToGenerator(function* (sdk, options) {
4698
+ var _ref439 = _asyncToGenerator(function* (sdk, options) {
4685
4699
  return sdk.get('/workspaces', null, null, options);
4686
4700
  });
4687
- return function all_workspaces(_x1510, _x1511) {
4688
- return _ref438.apply(this, arguments);
4701
+ return function all_workspaces(_x1516, _x1517) {
4702
+ return _ref439.apply(this, arguments);
4689
4703
  };
4690
4704
  }();
4691
4705
  export var workspace = function () {
4692
- var _ref439 = _asyncToGenerator(function* (sdk, workspace_id, options) {
4706
+ var _ref440 = _asyncToGenerator(function* (sdk, workspace_id, options) {
4693
4707
  workspace_id = encodeParam(workspace_id);
4694
4708
  return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
4695
4709
  });
4696
- return function workspace(_x1512, _x1513, _x1514) {
4697
- return _ref439.apply(this, arguments);
4710
+ return function workspace(_x1518, _x1519, _x1520) {
4711
+ return _ref440.apply(this, arguments);
4698
4712
  };
4699
4713
  }();
4700
4714
  //# sourceMappingURL=funcs.js.map