diff --git a/lib/seam/routes/clients/connect_webviews.rb b/lib/seam/routes/clients/connect_webviews.rb index 4fcab50e..475bd7b4 100644 --- a/lib/seam/routes/clients/connect_webviews.rb +++ b/lib/seam/routes/clients/connect_webviews.rb @@ -26,8 +26,8 @@ def get(connect_webview_id:) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webview"]) end - def list(custom_metadata_has: nil, customer_ids: nil, limit: nil, user_identifier_key: nil) - res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, customer_ids: customer_ids, limit: limit, user_identifier_key: user_identifier_key}.compact) + def list(custom_metadata_has: nil, customer_ids: nil, limit: nil, page_cursor: nil, user_identifier_key: nil) + res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, customer_ids: customer_ids, limit: limit, page_cursor: page_cursor, user_identifier_key: user_identifier_key}.compact) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webviews"]) end diff --git a/lib/seam/routes/resources/connected_account.rb b/lib/seam/routes/resources/connected_account.rb index 2593f37f..1530098c 100644 --- a/lib/seam/routes/resources/connected_account.rb +++ b/lib/seam/routes/resources/connected_account.rb @@ -3,7 +3,7 @@ module Seam module Resources class ConnectedAccount < BaseResource - attr_accessor :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :user_identifier + attr_accessor :account_type, :account_type_display_name, :automatically_manage_new_devices, :connected_account_id, :custom_metadata, :customer_key, :user_identifier date_accessor :created_at diff --git a/package-lock.json b/package-lock.json index ede2681a..b7766271 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.83.1", "@seamapi/nextlove-sdk-generator": "^1.18.1", - "@seamapi/types": "1.414.2", + "@seamapi/types": "1.416.1", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5" @@ -476,9 +476,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.414.2", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.414.2.tgz", - "integrity": "sha512-QWTHKz+I3JePDpia2mDeWMI9ATEVjWD8lXZwSp1rqDbOrS4CWWrYDEU4TxWP4wdmI2XpffyDE/Xnaqn/gFvdeQ==", + "version": "1.416.1", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.416.1.tgz", + "integrity": "sha512-hRAzL2H7U+Op8bxkx4qx0d5HvvbZAvH2/ZuqHNJQfAplhPCazHm3T6JtNqTAC69R2KT8f1wwhtB8GHS98nUP3Q==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 7f2018de..b1be7262 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@seamapi/fake-seam-connect": "1.83.1", "@seamapi/nextlove-sdk-generator": "^1.18.1", - "@seamapi/types": "1.414.2", + "@seamapi/types": "1.416.1", "del": "^7.1.0", "markdown-toc": "^1.2.0", "prettier": "^3.2.5"