@seamapi/http 1.81.0 → 1.83.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 (34) hide show
  1. package/dist/connect.cjs +146 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +49 -4
  4. package/dist/index.cjs +148 -0
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.d.cts +1 -1
  7. package/lib/seam/connect/routes/acs/systems/systems.d.ts +13 -0
  8. package/lib/seam/connect/routes/acs/systems/systems.js +9 -0
  9. package/lib/seam/connect/routes/acs/systems/systems.js.map +1 -1
  10. package/lib/seam/connect/routes/seam/customer/v1/index.d.ts +1 -0
  11. package/lib/seam/connect/routes/seam/customer/v1/index.js +1 -0
  12. package/lib/seam/connect/routes/seam/customer/v1/index.js.map +1 -1
  13. package/lib/seam/connect/routes/seam/customer/v1/staff-members/index.d.ts +1 -0
  14. package/lib/seam/connect/routes/seam/customer/v1/staff-members/index.js +6 -0
  15. package/lib/seam/connect/routes/seam/customer/v1/staff-members/index.js.map +1 -0
  16. package/lib/seam/connect/routes/seam/customer/v1/staff-members/staff-members.d.ts +34 -0
  17. package/lib/seam/connect/routes/seam/customer/v1/staff-members/staff-members.js +104 -0
  18. package/lib/seam/connect/routes/seam/customer/v1/staff-members/staff-members.js.map +1 -0
  19. package/lib/seam/connect/routes/seam/customer/v1/v1.d.ts +2 -0
  20. package/lib/seam/connect/routes/seam/customer/v1/v1.js +4 -0
  21. package/lib/seam/connect/routes/seam/customer/v1/v1.js.map +1 -1
  22. package/lib/seam/connect/routes/seam-http-endpoints.d.ts +7 -4
  23. package/lib/seam/connect/routes/seam-http-endpoints.js +18 -0
  24. package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
  25. package/lib/version.d.ts +1 -1
  26. package/lib/version.js +1 -1
  27. package/package.json +3 -3
  28. package/src/lib/seam/connect/routes/acs/systems/systems.ts +32 -0
  29. package/src/lib/seam/connect/routes/seam/customer/v1/index.ts +1 -0
  30. package/src/lib/seam/connect/routes/seam/customer/v1/staff-members/index.ts +6 -0
  31. package/src/lib/seam/connect/routes/seam/customer/v1/staff-members/staff-members.ts +214 -0
  32. package/src/lib/seam/connect/routes/seam/customer/v1/v1.ts +8 -0
  33. package/src/lib/seam/connect/routes/seam-http-endpoints.ts +46 -0
  34. package/src/lib/version.ts +1 -1
package/dist/connect.cjs CHANGED
@@ -3156,6 +3156,15 @@ var SeamHttpAcsSystems = class _SeamHttpAcsSystems {
3156
3156
  options
3157
3157
  });
3158
3158
  }
3159
+ reportDevices(parameters, options = {}) {
3160
+ return new SeamHttpRequest(this, {
3161
+ pathname: "/acs/systems/report_devices",
3162
+ method: "POST",
3163
+ body: parameters,
3164
+ responseKey: void 0,
3165
+ options
3166
+ });
3167
+ }
3159
3168
  };
3160
3169
 
3161
3170
  // src/lib/seam/connect/routes/acs/users/unmanaged/unmanaged.ts
@@ -6765,6 +6774,114 @@ var SeamHttpSeamCustomerV1Spaces = class _SeamHttpSeamCustomerV1Spaces {
6765
6774
  }
6766
6775
  };
6767
6776
 
6777
+ // src/lib/seam/connect/routes/seam/customer/v1/staff-members/staff-members.ts
6778
+ var SeamHttpSeamCustomerV1StaffMembers = class _SeamHttpSeamCustomerV1StaffMembers {
6779
+ client;
6780
+ defaults;
6781
+ ltsVersion = seamApiLtsVersion;
6782
+ static ltsVersion = seamApiLtsVersion;
6783
+ constructor(apiKeyOrOptions = {}) {
6784
+ const options = parseOptions(apiKeyOrOptions);
6785
+ if (!options.isUndocumentedApiEnabled) {
6786
+ throw new Error(
6787
+ "Cannot use undocumented API without isUndocumentedApiEnabled"
6788
+ );
6789
+ }
6790
+ this.client = "client" in options ? options.client : createClient(options);
6791
+ this.defaults = limitToSeamHttpRequestOptions(options);
6792
+ }
6793
+ static fromClient(client, options = {}) {
6794
+ const constructorOptions = { ...options, client };
6795
+ if (!isSeamHttpOptionsWithClient(constructorOptions)) {
6796
+ throw new SeamHttpInvalidOptionsError("Missing client");
6797
+ }
6798
+ return new _SeamHttpSeamCustomerV1StaffMembers(constructorOptions);
6799
+ }
6800
+ static fromApiKey(apiKey, options = {}) {
6801
+ const constructorOptions = { ...options, apiKey };
6802
+ if (!isSeamHttpOptionsWithApiKey(constructorOptions)) {
6803
+ throw new SeamHttpInvalidOptionsError("Missing apiKey");
6804
+ }
6805
+ return new _SeamHttpSeamCustomerV1StaffMembers(constructorOptions);
6806
+ }
6807
+ static fromClientSessionToken(clientSessionToken, options = {}) {
6808
+ const constructorOptions = { ...options, clientSessionToken };
6809
+ if (!isSeamHttpOptionsWithClientSessionToken(constructorOptions)) {
6810
+ throw new SeamHttpInvalidOptionsError("Missing clientSessionToken");
6811
+ }
6812
+ return new _SeamHttpSeamCustomerV1StaffMembers(constructorOptions);
6813
+ }
6814
+ static async fromPublishableKey(publishableKey, userIdentifierKey, options = {}) {
6815
+ warnOnInsecureuserIdentifierKey(userIdentifierKey);
6816
+ const clientOptions = parseOptions({ ...options, publishableKey });
6817
+ if (isSeamHttpOptionsWithClient(clientOptions)) {
6818
+ throw new SeamHttpInvalidOptionsError(
6819
+ "The client option cannot be used with SeamHttpSeamCustomerV1StaffMembers.fromPublishableKey"
6820
+ );
6821
+ }
6822
+ const client = createClient(clientOptions);
6823
+ const clientSessions = SeamHttpClientSessions.fromClient(client);
6824
+ const { token } = await clientSessions.getOrCreate({
6825
+ user_identifier_key: userIdentifierKey
6826
+ });
6827
+ return _SeamHttpSeamCustomerV1StaffMembers.fromClientSessionToken(
6828
+ token,
6829
+ options
6830
+ );
6831
+ }
6832
+ static fromConsoleSessionToken(consoleSessionToken, workspaceId, options = {}) {
6833
+ const constructorOptions = { ...options, consoleSessionToken, workspaceId };
6834
+ if (!isSeamHttpOptionsWithConsoleSessionToken(constructorOptions)) {
6835
+ throw new SeamHttpInvalidOptionsError(
6836
+ "Missing consoleSessionToken or workspaceId"
6837
+ );
6838
+ }
6839
+ return new _SeamHttpSeamCustomerV1StaffMembers(constructorOptions);
6840
+ }
6841
+ static fromPersonalAccessToken(personalAccessToken, workspaceId, options = {}) {
6842
+ const constructorOptions = { ...options, personalAccessToken, workspaceId };
6843
+ if (!isSeamHttpOptionsWithPersonalAccessToken(constructorOptions)) {
6844
+ throw new SeamHttpInvalidOptionsError(
6845
+ "Missing personalAccessToken or workspaceId"
6846
+ );
6847
+ }
6848
+ return new _SeamHttpSeamCustomerV1StaffMembers(constructorOptions);
6849
+ }
6850
+ createPaginator(request) {
6851
+ return new SeamPaginator(this, request);
6852
+ }
6853
+ async updateClientSessionToken(clientSessionToken) {
6854
+ const { headers } = this.client.defaults;
6855
+ const authHeaders = getAuthHeadersForClientSessionToken({
6856
+ clientSessionToken
6857
+ });
6858
+ for (const key of Object.keys(authHeaders)) {
6859
+ if (headers[key] == null) {
6860
+ throw new Error(
6861
+ "Cannot update a clientSessionToken on a client created without a clientSessionToken"
6862
+ );
6863
+ }
6864
+ }
6865
+ this.client.defaults.headers = { ...headers, ...authHeaders };
6866
+ const clientSessions = SeamHttpClientSessions.fromClient(this.client);
6867
+ await clientSessions.get();
6868
+ }
6869
+ list(parameters, options = {}) {
6870
+ if (!this.defaults.isUndocumentedApiEnabled) {
6871
+ throw new Error(
6872
+ "Cannot use undocumented API without isUndocumentedApiEnabled"
6873
+ );
6874
+ }
6875
+ return new SeamHttpRequest(this, {
6876
+ pathname: "/seam/customer/v1/staff_members/list",
6877
+ method: "POST",
6878
+ body: parameters,
6879
+ responseKey: "staff_members",
6880
+ options
6881
+ });
6882
+ }
6883
+ };
6884
+
6768
6885
  // src/lib/seam/connect/routes/seam/customer/v1/v1.ts
6769
6886
  var SeamHttpSeamCustomerV1 = class _SeamHttpSeamCustomerV1 {
6770
6887
  client;
@@ -6885,6 +7002,12 @@ var SeamHttpSeamCustomerV1 = class _SeamHttpSeamCustomerV1 {
6885
7002
  get spaces() {
6886
7003
  return SeamHttpSeamCustomerV1Spaces.fromClient(this.client, this.defaults);
6887
7004
  }
7005
+ get staffMembers() {
7006
+ return SeamHttpSeamCustomerV1StaffMembers.fromClient(
7007
+ this.client,
7008
+ this.defaults
7009
+ );
7010
+ }
6888
7011
  };
6889
7012
 
6890
7013
  // src/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/workspace-id.ts
@@ -9899,6 +10022,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
9899
10022
  return seam.listCompatibleCredentialManagerAcsSystems(...args);
9900
10023
  };
9901
10024
  }
10025
+ get "/acs/systems/report_devices"() {
10026
+ const { client, defaults } = this;
10027
+ return function acsSystemsReportDevices(...args) {
10028
+ const seam = SeamHttpAcsSystems.fromClient(client, defaults);
10029
+ return seam.reportDevices(...args);
10030
+ };
10031
+ }
9902
10032
  get "/acs/users/add_to_access_group"() {
9903
10033
  const { client, defaults } = this;
9904
10034
  return function acsUsersAddToAccessGroup(...args) {
@@ -10633,6 +10763,21 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
10633
10763
  return seam.list(...args);
10634
10764
  };
10635
10765
  }
10766
+ get "/seam/customer/v1/staff_members/list"() {
10767
+ const { client, defaults } = this;
10768
+ if (!this.defaults.isUndocumentedApiEnabled) {
10769
+ throw new Error(
10770
+ "Cannot use undocumented API without isUndocumentedApiEnabled"
10771
+ );
10772
+ }
10773
+ return function seamCustomerV1StaffMembersList(...args) {
10774
+ const seam = SeamHttpSeamCustomerV1StaffMembers.fromClient(
10775
+ client,
10776
+ defaults
10777
+ );
10778
+ return seam.list(...args);
10779
+ };
10780
+ }
10636
10781
  get "/seam/customer/v1/webhooks/connectors/[workspace_id]/[connector_id]"() {
10637
10782
  const { client, defaults } = this;
10638
10783
  return function seamCustomerV1WebhooksConnectorsWorkspaceIdConnectorId(...args) {
@@ -11463,6 +11608,7 @@ exports.SeamHttpSeamCustomerV1Portals = SeamHttpSeamCustomerV1Portals;
11463
11608
  exports.SeamHttpSeamCustomerV1Reservations = SeamHttpSeamCustomerV1Reservations;
11464
11609
  exports.SeamHttpSeamCustomerV1Settings = SeamHttpSeamCustomerV1Settings;
11465
11610
  exports.SeamHttpSeamCustomerV1Spaces = SeamHttpSeamCustomerV1Spaces;
11611
+ exports.SeamHttpSeamCustomerV1StaffMembers = SeamHttpSeamCustomerV1StaffMembers;
11466
11612
  exports.SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId = SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId;
11467
11613
  exports.SeamHttpSeamPartnerV1BuildingBlocks = SeamHttpSeamPartnerV1BuildingBlocks;
11468
11614
  exports.SeamHttpSeamPartnerV1BuildingBlocksSpaces = SeamHttpSeamPartnerV1BuildingBlocksSpaces;