@seamapi/types 1.405.0 → 1.406.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/dist/connect.cjs CHANGED
@@ -29705,6 +29705,56 @@ var openapi_default = {
29705
29705
  "x-title": "List Connected Accounts"
29706
29706
  }
29707
29707
  },
29708
+ "/connected_accounts/sync": {
29709
+ post: {
29710
+ description: "Request a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) sync attempt for the specified connected_account_id.",
29711
+ operationId: "connectedAccountsSyncPost",
29712
+ requestBody: {
29713
+ content: {
29714
+ "application/json": {
29715
+ schema: {
29716
+ properties: {
29717
+ connected_account_id: {
29718
+ description: "ID of the connected account that you want to sync.",
29719
+ format: "uuid",
29720
+ type: "string"
29721
+ }
29722
+ },
29723
+ required: ["connected_account_id"],
29724
+ type: "object"
29725
+ }
29726
+ }
29727
+ }
29728
+ },
29729
+ responses: {
29730
+ 200: {
29731
+ content: {
29732
+ "application/json": {
29733
+ schema: {
29734
+ properties: { ok: { type: "boolean" } },
29735
+ required: ["ok"],
29736
+ type: "object"
29737
+ }
29738
+ }
29739
+ },
29740
+ description: "OK"
29741
+ },
29742
+ 400: { description: "Bad Request" },
29743
+ 401: { description: "Unauthorized" }
29744
+ },
29745
+ security: [
29746
+ { api_key: [] },
29747
+ { pat_with_workspace: [] },
29748
+ { console_session_with_workspace: [] }
29749
+ ],
29750
+ summary: "/connected_accounts/sync",
29751
+ tags: ["/connected_accounts"],
29752
+ "x-fern-sdk-group-name": ["connected_accounts"],
29753
+ "x-fern-sdk-method-name": "sync",
29754
+ "x-response-key": null,
29755
+ "x-title": "Sync a Connected Account"
29756
+ }
29757
+ },
29708
29758
  "/connected_accounts/update": {
29709
29759
  post: {
29710
29760
  description: "Updates a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -36768,6 +36818,57 @@ var openapi_default = {
36768
36818
  "x-undocumented": "Unreleased."
36769
36819
  }
36770
36820
  },
36821
+ "/unstable_access_grants/delete": {
36822
+ post: {
36823
+ description: "Delete an access grant.",
36824
+ operationId: "unstableAccessGrantsDeletePost",
36825
+ requestBody: {
36826
+ content: {
36827
+ "application/json": {
36828
+ schema: {
36829
+ properties: {
36830
+ access_grant_id: {
36831
+ description: "ID of access grant to delete.",
36832
+ format: "uuid",
36833
+ type: "string"
36834
+ }
36835
+ },
36836
+ required: ["access_grant_id"],
36837
+ type: "object"
36838
+ }
36839
+ }
36840
+ }
36841
+ },
36842
+ responses: {
36843
+ 200: {
36844
+ content: {
36845
+ "application/json": {
36846
+ schema: {
36847
+ properties: { ok: { type: "boolean" } },
36848
+ required: ["ok"],
36849
+ type: "object"
36850
+ }
36851
+ }
36852
+ },
36853
+ description: "OK"
36854
+ },
36855
+ 400: { description: "Bad Request" },
36856
+ 401: { description: "Unauthorized" }
36857
+ },
36858
+ security: [
36859
+ { pat_with_workspace: [] },
36860
+ { console_session_with_workspace: [] },
36861
+ { api_key: [] }
36862
+ ],
36863
+ summary: "/unstable_access_grants/delete",
36864
+ tags: [],
36865
+ "x-fern-sdk-group-name": ["unstable_access_grants"],
36866
+ "x-fern-sdk-method-name": "delete",
36867
+ "x-response-key": null,
36868
+ "x-title": "Delete an Access Grant",
36869
+ "x-undocumented": "Unreleased."
36870
+ }
36871
+ },
36771
36872
  "/unstable_access_grants/get": {
36772
36873
  post: {
36773
36874
  description: "Get an access grant.",
@@ -37063,6 +37164,57 @@ var openapi_default = {
37063
37164
  "x-undocumented": "Unreleased."
37064
37165
  }
37065
37166
  },
37167
+ "/unstable_access_methods/delete": {
37168
+ post: {
37169
+ description: "Delete an access method.",
37170
+ operationId: "unstableAccessMethodsDeletePost",
37171
+ requestBody: {
37172
+ content: {
37173
+ "application/json": {
37174
+ schema: {
37175
+ properties: {
37176
+ access_method_id: {
37177
+ description: "ID of access method to get.",
37178
+ format: "uuid",
37179
+ type: "string"
37180
+ }
37181
+ },
37182
+ required: ["access_method_id"],
37183
+ type: "object"
37184
+ }
37185
+ }
37186
+ }
37187
+ },
37188
+ responses: {
37189
+ 200: {
37190
+ content: {
37191
+ "application/json": {
37192
+ schema: {
37193
+ properties: { ok: { type: "boolean" } },
37194
+ required: ["ok"],
37195
+ type: "object"
37196
+ }
37197
+ }
37198
+ },
37199
+ description: "OK"
37200
+ },
37201
+ 400: { description: "Bad Request" },
37202
+ 401: { description: "Unauthorized" }
37203
+ },
37204
+ security: [
37205
+ { pat_with_workspace: [] },
37206
+ { console_session_with_workspace: [] },
37207
+ { api_key: [] }
37208
+ ],
37209
+ summary: "/unstable_access_methods/delete",
37210
+ tags: [],
37211
+ "x-fern-sdk-group-name": ["unstable_access_methods"],
37212
+ "x-fern-sdk-method-name": "delete",
37213
+ "x-response-key": null,
37214
+ "x-title": "Delete an Access Method",
37215
+ "x-undocumented": "Unreleased."
37216
+ }
37217
+ },
37066
37218
  "/unstable_access_methods/get": {
37067
37219
  post: {
37068
37220
  description: "Get an access method.",