@seamapi/http 1.78.0 → 1.80.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 (54) hide show
  1. package/dist/connect.cjs +279 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +105 -2
  4. package/dist/index.cjs +283 -0
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.d.cts +1 -1
  7. package/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.d.ts +13 -0
  8. package/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.js +9 -0
  9. package/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.js.map +1 -1
  10. package/lib/seam/connect/routes/seam/customer/v1/connectors/connectors.d.ts +47 -0
  11. package/lib/seam/connect/routes/seam/customer/v1/connectors/connectors.js +107 -0
  12. package/lib/seam/connect/routes/seam/customer/v1/connectors/connectors.js.map +1 -0
  13. package/lib/seam/connect/routes/seam/customer/v1/connectors/index.d.ts +1 -0
  14. package/lib/seam/connect/routes/seam/customer/v1/connectors/index.js +6 -0
  15. package/lib/seam/connect/routes/seam/customer/v1/connectors/index.js.map +1 -0
  16. package/lib/seam/connect/routes/seam/customer/v1/index.d.ts +2 -0
  17. package/lib/seam/connect/routes/seam/customer/v1/index.js +2 -0
  18. package/lib/seam/connect/routes/seam/customer/v1/index.js.map +1 -1
  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/customer/v1/webhooks/connectors/index.d.ts +1 -0
  23. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/index.js +6 -0
  24. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/index.js.map +1 -0
  25. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/index.d.ts +1 -0
  26. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/index.js +6 -0
  27. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/index.js.map +1 -0
  28. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/workspace-id.d.ts +34 -0
  29. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/workspace-id.js +98 -0
  30. package/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/workspace-id.js.map +1 -0
  31. package/lib/seam/connect/routes/seam/customer/v1/webhooks/index.d.ts +1 -0
  32. package/lib/seam/connect/routes/seam/customer/v1/webhooks/index.js +6 -0
  33. package/lib/seam/connect/routes/seam/customer/v1/webhooks/index.js.map +1 -0
  34. package/lib/seam/connect/routes/seam-http-endpoints.d.ts +10 -3
  35. package/lib/seam/connect/routes/seam-http-endpoints.js +37 -0
  36. package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -1
  37. package/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.d.ts +13 -0
  38. package/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.js +9 -0
  39. package/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.js.map +1 -1
  40. package/lib/version.d.ts +1 -1
  41. package/lib/version.js +1 -1
  42. package/package.json +3 -3
  43. package/src/lib/seam/connect/routes/access-grants/unmanaged/unmanaged.ts +36 -0
  44. package/src/lib/seam/connect/routes/seam/customer/v1/connectors/connectors.ts +240 -0
  45. package/src/lib/seam/connect/routes/seam/customer/v1/connectors/index.ts +6 -0
  46. package/src/lib/seam/connect/routes/seam/customer/v1/index.ts +2 -0
  47. package/src/lib/seam/connect/routes/seam/customer/v1/v1.ts +8 -0
  48. package/src/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/index.ts +6 -0
  49. package/src/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/index.ts +6 -0
  50. package/src/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/workspace-id.ts +216 -0
  51. package/src/lib/seam/connect/routes/seam/customer/v1/webhooks/index.ts +6 -0
  52. package/src/lib/seam/connect/routes/seam-http-endpoints.ts +99 -0
  53. package/src/lib/seam/connect/routes/user-identities/unmanaged/unmanaged.ts +36 -0
  54. package/src/lib/version.ts +1 -1
package/dist/connect.cjs CHANGED
@@ -1494,6 +1494,15 @@ var SeamHttpAccessGrantsUnmanaged = class _SeamHttpAccessGrantsUnmanaged {
1494
1494
  options
1495
1495
  });
1496
1496
  }
1497
+ update(parameters, options = {}) {
1498
+ return new SeamHttpRequest(this, {
1499
+ pathname: "/access_grants/unmanaged/update",
1500
+ method: "PATCH",
1501
+ body: parameters,
1502
+ responseKey: void 0,
1503
+ options
1504
+ });
1505
+ }
1497
1506
  };
1498
1507
 
1499
1508
  // src/lib/seam/connect/routes/access-grants/access-grants.ts
@@ -6094,6 +6103,113 @@ var SeamHttpSeamCustomerV1Automations = class _SeamHttpSeamCustomerV1Automations
6094
6103
  }
6095
6104
  };
6096
6105
 
6106
+ // src/lib/seam/connect/routes/seam/customer/v1/connectors/connectors.ts
6107
+ var SeamHttpSeamCustomerV1Connectors = class _SeamHttpSeamCustomerV1Connectors {
6108
+ client;
6109
+ defaults;
6110
+ ltsVersion = seamApiLtsVersion;
6111
+ static ltsVersion = seamApiLtsVersion;
6112
+ constructor(apiKeyOrOptions = {}) {
6113
+ const options = parseOptions(apiKeyOrOptions);
6114
+ this.client = "client" in options ? options.client : createClient(options);
6115
+ this.defaults = limitToSeamHttpRequestOptions(options);
6116
+ }
6117
+ static fromClient(client, options = {}) {
6118
+ const constructorOptions = { ...options, client };
6119
+ if (!isSeamHttpOptionsWithClient(constructorOptions)) {
6120
+ throw new SeamHttpInvalidOptionsError("Missing client");
6121
+ }
6122
+ return new _SeamHttpSeamCustomerV1Connectors(constructorOptions);
6123
+ }
6124
+ static fromApiKey(apiKey, options = {}) {
6125
+ const constructorOptions = { ...options, apiKey };
6126
+ if (!isSeamHttpOptionsWithApiKey(constructorOptions)) {
6127
+ throw new SeamHttpInvalidOptionsError("Missing apiKey");
6128
+ }
6129
+ return new _SeamHttpSeamCustomerV1Connectors(constructorOptions);
6130
+ }
6131
+ static fromClientSessionToken(clientSessionToken, options = {}) {
6132
+ const constructorOptions = { ...options, clientSessionToken };
6133
+ if (!isSeamHttpOptionsWithClientSessionToken(constructorOptions)) {
6134
+ throw new SeamHttpInvalidOptionsError("Missing clientSessionToken");
6135
+ }
6136
+ return new _SeamHttpSeamCustomerV1Connectors(constructorOptions);
6137
+ }
6138
+ static async fromPublishableKey(publishableKey, userIdentifierKey, options = {}) {
6139
+ warnOnInsecureuserIdentifierKey(userIdentifierKey);
6140
+ const clientOptions = parseOptions({ ...options, publishableKey });
6141
+ if (isSeamHttpOptionsWithClient(clientOptions)) {
6142
+ throw new SeamHttpInvalidOptionsError(
6143
+ "The client option cannot be used with SeamHttpSeamCustomerV1Connectors.fromPublishableKey"
6144
+ );
6145
+ }
6146
+ const client = createClient(clientOptions);
6147
+ const clientSessions = SeamHttpClientSessions.fromClient(client);
6148
+ const { token } = await clientSessions.getOrCreate({
6149
+ user_identifier_key: userIdentifierKey
6150
+ });
6151
+ return _SeamHttpSeamCustomerV1Connectors.fromClientSessionToken(
6152
+ token,
6153
+ options
6154
+ );
6155
+ }
6156
+ static fromConsoleSessionToken(consoleSessionToken, workspaceId, options = {}) {
6157
+ const constructorOptions = { ...options, consoleSessionToken, workspaceId };
6158
+ if (!isSeamHttpOptionsWithConsoleSessionToken(constructorOptions)) {
6159
+ throw new SeamHttpInvalidOptionsError(
6160
+ "Missing consoleSessionToken or workspaceId"
6161
+ );
6162
+ }
6163
+ return new _SeamHttpSeamCustomerV1Connectors(constructorOptions);
6164
+ }
6165
+ static fromPersonalAccessToken(personalAccessToken, workspaceId, options = {}) {
6166
+ const constructorOptions = { ...options, personalAccessToken, workspaceId };
6167
+ if (!isSeamHttpOptionsWithPersonalAccessToken(constructorOptions)) {
6168
+ throw new SeamHttpInvalidOptionsError(
6169
+ "Missing personalAccessToken or workspaceId"
6170
+ );
6171
+ }
6172
+ return new _SeamHttpSeamCustomerV1Connectors(constructorOptions);
6173
+ }
6174
+ createPaginator(request) {
6175
+ return new SeamPaginator(this, request);
6176
+ }
6177
+ async updateClientSessionToken(clientSessionToken) {
6178
+ const { headers } = this.client.defaults;
6179
+ const authHeaders = getAuthHeadersForClientSessionToken({
6180
+ clientSessionToken
6181
+ });
6182
+ for (const key of Object.keys(authHeaders)) {
6183
+ if (headers[key] == null) {
6184
+ throw new Error(
6185
+ "Cannot update a clientSessionToken on a client created without a clientSessionToken"
6186
+ );
6187
+ }
6188
+ }
6189
+ this.client.defaults.headers = { ...headers, ...authHeaders };
6190
+ const clientSessions = SeamHttpClientSessions.fromClient(this.client);
6191
+ await clientSessions.get();
6192
+ }
6193
+ create(parameters, options = {}) {
6194
+ return new SeamHttpRequest(this, {
6195
+ pathname: "/seam/customer/v1/connectors/create",
6196
+ method: "POST",
6197
+ body: parameters,
6198
+ responseKey: "connector",
6199
+ options
6200
+ });
6201
+ }
6202
+ sync(parameters, options = {}) {
6203
+ return new SeamHttpRequest(this, {
6204
+ pathname: "/seam/customer/v1/connectors/sync",
6205
+ method: "POST",
6206
+ body: parameters,
6207
+ responseKey: "connector_sync",
6208
+ options
6209
+ });
6210
+ }
6211
+ };
6212
+
6097
6213
  // src/lib/seam/connect/routes/seam/customer/v1/events/events.ts
6098
6214
  var SeamHttpSeamCustomerV1Events = class _SeamHttpSeamCustomerV1Events {
6099
6215
  client;
@@ -6745,6 +6861,12 @@ var SeamHttpSeamCustomerV1 = class _SeamHttpSeamCustomerV1 {
6745
6861
  this.defaults
6746
6862
  );
6747
6863
  }
6864
+ get connectors() {
6865
+ return SeamHttpSeamCustomerV1Connectors.fromClient(
6866
+ this.client,
6867
+ this.defaults
6868
+ );
6869
+ }
6748
6870
  get events() {
6749
6871
  return SeamHttpSeamCustomerV1Events.fromClient(this.client, this.defaults);
6750
6872
  }
@@ -6765,6 +6887,114 @@ var SeamHttpSeamCustomerV1 = class _SeamHttpSeamCustomerV1 {
6765
6887
  }
6766
6888
  };
6767
6889
 
6890
+ // src/lib/seam/connect/routes/seam/customer/v1/webhooks/connectors/workspace-id/workspace-id.ts
6891
+ var SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId = class _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId {
6892
+ client;
6893
+ defaults;
6894
+ ltsVersion = seamApiLtsVersion;
6895
+ static ltsVersion = seamApiLtsVersion;
6896
+ constructor(apiKeyOrOptions = {}) {
6897
+ const options = parseOptions(apiKeyOrOptions);
6898
+ this.client = "client" in options ? options.client : createClient(options);
6899
+ this.defaults = limitToSeamHttpRequestOptions(options);
6900
+ }
6901
+ static fromClient(client, options = {}) {
6902
+ const constructorOptions = { ...options, client };
6903
+ if (!isSeamHttpOptionsWithClient(constructorOptions)) {
6904
+ throw new SeamHttpInvalidOptionsError("Missing client");
6905
+ }
6906
+ return new _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId(
6907
+ constructorOptions
6908
+ );
6909
+ }
6910
+ static fromApiKey(apiKey, options = {}) {
6911
+ const constructorOptions = { ...options, apiKey };
6912
+ if (!isSeamHttpOptionsWithApiKey(constructorOptions)) {
6913
+ throw new SeamHttpInvalidOptionsError("Missing apiKey");
6914
+ }
6915
+ return new _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId(
6916
+ constructorOptions
6917
+ );
6918
+ }
6919
+ static fromClientSessionToken(clientSessionToken, options = {}) {
6920
+ const constructorOptions = { ...options, clientSessionToken };
6921
+ if (!isSeamHttpOptionsWithClientSessionToken(constructorOptions)) {
6922
+ throw new SeamHttpInvalidOptionsError("Missing clientSessionToken");
6923
+ }
6924
+ return new _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId(
6925
+ constructorOptions
6926
+ );
6927
+ }
6928
+ static async fromPublishableKey(publishableKey, userIdentifierKey, options = {}) {
6929
+ warnOnInsecureuserIdentifierKey(userIdentifierKey);
6930
+ const clientOptions = parseOptions({ ...options, publishableKey });
6931
+ if (isSeamHttpOptionsWithClient(clientOptions)) {
6932
+ throw new SeamHttpInvalidOptionsError(
6933
+ "The client option cannot be used with SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId.fromPublishableKey"
6934
+ );
6935
+ }
6936
+ const client = createClient(clientOptions);
6937
+ const clientSessions = SeamHttpClientSessions.fromClient(client);
6938
+ const { token } = await clientSessions.getOrCreate({
6939
+ user_identifier_key: userIdentifierKey
6940
+ });
6941
+ return _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId.fromClientSessionToken(
6942
+ token,
6943
+ options
6944
+ );
6945
+ }
6946
+ static fromConsoleSessionToken(consoleSessionToken, workspaceId, options = {}) {
6947
+ const constructorOptions = { ...options, consoleSessionToken, workspaceId };
6948
+ if (!isSeamHttpOptionsWithConsoleSessionToken(constructorOptions)) {
6949
+ throw new SeamHttpInvalidOptionsError(
6950
+ "Missing consoleSessionToken or workspaceId"
6951
+ );
6952
+ }
6953
+ return new _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId(
6954
+ constructorOptions
6955
+ );
6956
+ }
6957
+ static fromPersonalAccessToken(personalAccessToken, workspaceId, options = {}) {
6958
+ const constructorOptions = { ...options, personalAccessToken, workspaceId };
6959
+ if (!isSeamHttpOptionsWithPersonalAccessToken(constructorOptions)) {
6960
+ throw new SeamHttpInvalidOptionsError(
6961
+ "Missing personalAccessToken or workspaceId"
6962
+ );
6963
+ }
6964
+ return new _SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId(
6965
+ constructorOptions
6966
+ );
6967
+ }
6968
+ createPaginator(request) {
6969
+ return new SeamPaginator(this, request);
6970
+ }
6971
+ async updateClientSessionToken(clientSessionToken) {
6972
+ const { headers } = this.client.defaults;
6973
+ const authHeaders = getAuthHeadersForClientSessionToken({
6974
+ clientSessionToken
6975
+ });
6976
+ for (const key of Object.keys(authHeaders)) {
6977
+ if (headers[key] == null) {
6978
+ throw new Error(
6979
+ "Cannot update a clientSessionToken on a client created without a clientSessionToken"
6980
+ );
6981
+ }
6982
+ }
6983
+ this.client.defaults.headers = { ...headers, ...authHeaders };
6984
+ const clientSessions = SeamHttpClientSessions.fromClient(this.client);
6985
+ await clientSessions.get();
6986
+ }
6987
+ connectorId(parameters, options = {}) {
6988
+ return new SeamHttpRequest(this, {
6989
+ pathname: "/seam/customer/v1/webhooks/connectors/[workspace_id]/[connector_id]",
6990
+ method: "POST",
6991
+ body: parameters,
6992
+ responseKey: void 0,
6993
+ options
6994
+ });
6995
+ }
6996
+ };
6997
+
6768
6998
  // src/lib/seam/connect/routes/seam/partner/v1/building-blocks/spaces/spaces.ts
6769
6999
  var SeamHttpSeamPartnerV1BuildingBlocksSpaces = class _SeamHttpSeamPartnerV1BuildingBlocksSpaces {
6770
7000
  client;
@@ -8240,6 +8470,15 @@ var SeamHttpUserIdentitiesUnmanaged = class _SeamHttpUserIdentitiesUnmanaged {
8240
8470
  options
8241
8471
  });
8242
8472
  }
8473
+ update(parameters, options = {}) {
8474
+ return new SeamHttpRequest(this, {
8475
+ pathname: "/user_identities/unmanaged/update",
8476
+ method: "PATCH",
8477
+ body: parameters,
8478
+ responseKey: void 0,
8479
+ options
8480
+ });
8481
+ }
8243
8482
  };
8244
8483
 
8245
8484
  // src/lib/seam/connect/routes/user-identities/user-identities.ts
@@ -9314,6 +9553,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
9314
9553
  return seam.list(...args);
9315
9554
  };
9316
9555
  }
9556
+ get "/access_grants/unmanaged/update"() {
9557
+ const { client, defaults } = this;
9558
+ return function accessGrantsUnmanagedUpdate(...args) {
9559
+ const seam = SeamHttpAccessGrantsUnmanaged.fromClient(client, defaults);
9560
+ return seam.update(...args);
9561
+ };
9562
+ }
9317
9563
  get "/access_methods/delete"() {
9318
9564
  const { client, defaults } = this;
9319
9565
  return function accessMethodsDelete(...args) {
@@ -10281,6 +10527,20 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
10281
10527
  return seam.update(...args);
10282
10528
  };
10283
10529
  }
10530
+ get "/seam/customer/v1/connectors/create"() {
10531
+ const { client, defaults } = this;
10532
+ return function seamCustomerV1ConnectorsCreate(...args) {
10533
+ const seam = SeamHttpSeamCustomerV1Connectors.fromClient(client, defaults);
10534
+ return seam.create(...args);
10535
+ };
10536
+ }
10537
+ get "/seam/customer/v1/connectors/sync"() {
10538
+ const { client, defaults } = this;
10539
+ return function seamCustomerV1ConnectorsSync(...args) {
10540
+ const seam = SeamHttpSeamCustomerV1Connectors.fromClient(client, defaults);
10541
+ return seam.sync(...args);
10542
+ };
10543
+ }
10284
10544
  get "/seam/customer/v1/events/list"() {
10285
10545
  const { client, defaults } = this;
10286
10546
  if (!this.defaults.isUndocumentedApiEnabled) {
@@ -10373,6 +10633,16 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
10373
10633
  return seam.list(...args);
10374
10634
  };
10375
10635
  }
10636
+ get "/seam/customer/v1/webhooks/connectors/[workspace_id]/[connector_id]"() {
10637
+ const { client, defaults } = this;
10638
+ return function seamCustomerV1WebhooksConnectorsWorkspaceIdConnectorId(...args) {
10639
+ const seam = SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId.fromClient(
10640
+ client,
10641
+ defaults
10642
+ );
10643
+ return seam.connectorId(...args);
10644
+ };
10645
+ }
10376
10646
  get "/seam/partner/v1/building_blocks/spaces/auto_map"() {
10377
10647
  const { client, defaults } = this;
10378
10648
  if (!this.defaults.isUndocumentedApiEnabled) {
@@ -10863,6 +11133,13 @@ var SeamHttpEndpoints = class _SeamHttpEndpoints {
10863
11133
  return seam.list(...args);
10864
11134
  };
10865
11135
  }
11136
+ get "/user_identities/unmanaged/update"() {
11137
+ const { client, defaults } = this;
11138
+ return function userIdentitiesUnmanagedUpdate(...args) {
11139
+ const seam = SeamHttpUserIdentitiesUnmanaged.fromClient(client, defaults);
11140
+ return seam.update(...args);
11141
+ };
11142
+ }
10866
11143
  get "/webhooks/create"() {
10867
11144
  const { client, defaults } = this;
10868
11145
  return function webhooksCreate(...args) {
@@ -11180,11 +11457,13 @@ exports.SeamHttpSeamConsoleV1Timelines = SeamHttpSeamConsoleV1Timelines;
11180
11457
  exports.SeamHttpSeamCustomerV1 = SeamHttpSeamCustomerV1;
11181
11458
  exports.SeamHttpSeamCustomerV1AutomationRuns = SeamHttpSeamCustomerV1AutomationRuns;
11182
11459
  exports.SeamHttpSeamCustomerV1Automations = SeamHttpSeamCustomerV1Automations;
11460
+ exports.SeamHttpSeamCustomerV1Connectors = SeamHttpSeamCustomerV1Connectors;
11183
11461
  exports.SeamHttpSeamCustomerV1Events = SeamHttpSeamCustomerV1Events;
11184
11462
  exports.SeamHttpSeamCustomerV1Portals = SeamHttpSeamCustomerV1Portals;
11185
11463
  exports.SeamHttpSeamCustomerV1Reservations = SeamHttpSeamCustomerV1Reservations;
11186
11464
  exports.SeamHttpSeamCustomerV1Settings = SeamHttpSeamCustomerV1Settings;
11187
11465
  exports.SeamHttpSeamCustomerV1Spaces = SeamHttpSeamCustomerV1Spaces;
11466
+ exports.SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId = SeamHttpSeamCustomerV1WebhooksConnectorsWorkspaceId;
11188
11467
  exports.SeamHttpSeamPartnerV1BuildingBlocks = SeamHttpSeamPartnerV1BuildingBlocks;
11189
11468
  exports.SeamHttpSeamPartnerV1BuildingBlocksSpaces = SeamHttpSeamPartnerV1BuildingBlocksSpaces;
11190
11469
  exports.SeamHttpSpaces = SeamHttpSpaces;