@zapier/zapier-sdk 0.84.2 → 0.84.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @zapier/zapier-sdk
2
2
 
3
+ ## 0.84.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 840aca3: Added a `slug` field (e.g. `"google-sheets"`) to connection items returned by `getConnection`, `listConnections`, `findFirstConnection`, and `findUniqueConnection` (and their deprecated `listAuthentications` / `getAuthentication` / `findFirstAuthentication` / `findUniqueAuthentication` aliases).
8
+
9
+ ## 0.84.3
10
+
11
+ ### Patch Changes
12
+
13
+ - e6b22fb: Dynamic parameter pickers now resume from the pagination cursor on "Load more..." instead of re-fetching the first page. This fixes duplicate items and never-ending lists in the table picker and other paginated pickers. The table picker also notes when shared tables are hidden for the account (the connections picker already did), instead of silently showing fewer tables.
14
+
3
15
  ## 0.84.2
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -1863,36 +1863,37 @@ Find the first connection matching the criteria
1863
1863
 
1864
1864
  **Returns:** `Promise<ConnectionItem>`
1865
1865
 
1866
- | Name | Type | Required | Possible Values | Description |
1867
- | ------------------------------ | --------- | -------- | --------------- | ---------------------------------------------------------- |
1868
- | `data` | `object` | ✅ | — | |
1869
- | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
1870
- | ​ ↳ `date` | `string` | ✅ | — | Date created |
1871
- | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
1872
- | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
1873
- | ​ ↳ `destination_selected_api` | `string` | ❌ | — | Destination API key (if applicable) |
1874
- | ​ ↳ `is_invite_only` | `boolean` | | — | Whether the connection is invite-only |
1875
- | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
1876
- | ​ ↳ `shared_with_all` | `boolean` | ✅ | — | Whether the connection is shared with all users |
1877
- | ​ ↳ `is_stale` | `string` | | — | Stale status string |
1878
- | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
1879
- | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
1880
- | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
1881
- | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
1882
- | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
1883
- | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
1884
- | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
1885
- | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
1886
- | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
1887
- | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
1888
- | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
1889
- | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
1890
- | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
1891
- | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
1892
- | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
1893
- | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
1894
- | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
1895
- | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
1866
+ | Name | Type | Required | Possible Values | Description |
1867
+ | ------------------------------ | --------- | -------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------ |
1868
+ | `data` | `object` | ✅ | — | |
1869
+ | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
1870
+ | ​ ↳ `date` | `string` | ✅ | — | Date created |
1871
+ | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
1872
+ | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
1873
+ | ​ ↳ `slug` | `string` | ❌ | — | Human-readable app slug for this connection's integration (e.g. 'google-sheets'). Null when no slug is registered for the app. |
1874
+ | ​ ↳ `destination_selected_api` | `string` | | — | Destination API key (if applicable) |
1875
+ | ​ ↳ `is_invite_only` | `boolean` | ✅ | — | Whether the connection is invite-only |
1876
+ | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
1877
+ | ​ ↳ `shared_with_all` | `boolean` | | — | Whether the connection is shared with all users |
1878
+ | ​ ↳ `is_stale` | `string` | ❌ | — | Stale status string |
1879
+ | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
1880
+ | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
1881
+ | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
1882
+ | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
1883
+ | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
1884
+ | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
1885
+ | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
1886
+ | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
1887
+ | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
1888
+ | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
1889
+ | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
1890
+ | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
1891
+ | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
1892
+ | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
1893
+ | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
1894
+ | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
1895
+ | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
1896
+ | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
1896
1897
 
1897
1898
  **Example:**
1898
1899
 
@@ -1919,36 +1920,37 @@ Find a unique connection matching the criteria
1919
1920
 
1920
1921
  **Returns:** `Promise<ConnectionItem>`
1921
1922
 
1922
- | Name | Type | Required | Possible Values | Description |
1923
- | ------------------------------ | --------- | -------- | --------------- | ---------------------------------------------------------- |
1924
- | `data` | `object` | ✅ | — | |
1925
- | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
1926
- | ​ ↳ `date` | `string` | ✅ | — | Date created |
1927
- | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
1928
- | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
1929
- | ​ ↳ `destination_selected_api` | `string` | ❌ | — | Destination API key (if applicable) |
1930
- | ​ ↳ `is_invite_only` | `boolean` | | — | Whether the connection is invite-only |
1931
- | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
1932
- | ​ ↳ `shared_with_all` | `boolean` | ✅ | — | Whether the connection is shared with all users |
1933
- | ​ ↳ `is_stale` | `string` | | — | Stale status string |
1934
- | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
1935
- | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
1936
- | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
1937
- | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
1938
- | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
1939
- | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
1940
- | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
1941
- | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
1942
- | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
1943
- | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
1944
- | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
1945
- | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
1946
- | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
1947
- | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
1948
- | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
1949
- | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
1950
- | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
1951
- | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
1923
+ | Name | Type | Required | Possible Values | Description |
1924
+ | ------------------------------ | --------- | -------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------ |
1925
+ | `data` | `object` | ✅ | — | |
1926
+ | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
1927
+ | ​ ↳ `date` | `string` | ✅ | — | Date created |
1928
+ | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
1929
+ | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
1930
+ | ​ ↳ `slug` | `string` | ❌ | — | Human-readable app slug for this connection's integration (e.g. 'google-sheets'). Null when no slug is registered for the app. |
1931
+ | ​ ↳ `destination_selected_api` | `string` | | — | Destination API key (if applicable) |
1932
+ | ​ ↳ `is_invite_only` | `boolean` | ✅ | — | Whether the connection is invite-only |
1933
+ | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
1934
+ | ​ ↳ `shared_with_all` | `boolean` | | — | Whether the connection is shared with all users |
1935
+ | ​ ↳ `is_stale` | `string` | ❌ | — | Stale status string |
1936
+ | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
1937
+ | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
1938
+ | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
1939
+ | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
1940
+ | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
1941
+ | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
1942
+ | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
1943
+ | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
1944
+ | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
1945
+ | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
1946
+ | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
1947
+ | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
1948
+ | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
1949
+ | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
1950
+ | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
1951
+ | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
1952
+ | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
1953
+ | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
1952
1954
 
1953
1955
  **Example:**
1954
1956
 
@@ -1969,36 +1971,37 @@ Get details for a specific connection
1969
1971
 
1970
1972
  **Returns:** `Promise<ConnectionItem>`
1971
1973
 
1972
- | Name | Type | Required | Possible Values | Description |
1973
- | ------------------------------ | --------- | -------- | --------------- | ---------------------------------------------------------- |
1974
- | `data` | `object` | ✅ | — | |
1975
- | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
1976
- | ​ ↳ `date` | `string` | ✅ | — | Date created |
1977
- | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
1978
- | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
1979
- | ​ ↳ `destination_selected_api` | `string` | ❌ | — | Destination API key (if applicable) |
1980
- | ​ ↳ `is_invite_only` | `boolean` | | — | Whether the connection is invite-only |
1981
- | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
1982
- | ​ ↳ `shared_with_all` | `boolean` | ✅ | — | Whether the connection is shared with all users |
1983
- | ​ ↳ `is_stale` | `string` | | — | Stale status string |
1984
- | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
1985
- | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
1986
- | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
1987
- | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
1988
- | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
1989
- | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
1990
- | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
1991
- | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
1992
- | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
1993
- | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
1994
- | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
1995
- | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
1996
- | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
1997
- | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
1998
- | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
1999
- | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
2000
- | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
2001
- | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
1974
+ | Name | Type | Required | Possible Values | Description |
1975
+ | ------------------------------ | --------- | -------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------ |
1976
+ | `data` | `object` | ✅ | — | |
1977
+ | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
1978
+ | ​ ↳ `date` | `string` | ✅ | — | Date created |
1979
+ | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
1980
+ | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
1981
+ | ​ ↳ `slug` | `string` | ❌ | — | Human-readable app slug for this connection's integration (e.g. 'google-sheets'). Null when no slug is registered for the app. |
1982
+ | ​ ↳ `destination_selected_api` | `string` | | — | Destination API key (if applicable) |
1983
+ | ​ ↳ `is_invite_only` | `boolean` | ✅ | — | Whether the connection is invite-only |
1984
+ | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
1985
+ | ​ ↳ `shared_with_all` | `boolean` | | — | Whether the connection is shared with all users |
1986
+ | ​ ↳ `is_stale` | `string` | ❌ | — | Stale status string |
1987
+ | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
1988
+ | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
1989
+ | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
1990
+ | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
1991
+ | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
1992
+ | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
1993
+ | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
1994
+ | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
1995
+ | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
1996
+ | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
1997
+ | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
1998
+ | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
1999
+ | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
2000
+ | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
2001
+ | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
2002
+ | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
2003
+ | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
2004
+ | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
2002
2005
 
2003
2006
  **Example:**
2004
2007
 
@@ -2072,37 +2075,38 @@ List available connections with optional filtering
2072
2075
 
2073
2076
  **Returns:** `Promise<PaginatedResult<ConnectionItem>>`
2074
2077
 
2075
- | Name | Type | Required | Possible Values | Description |
2076
- | ------------------------------ | ---------- | -------- | --------------- | -------------------------------------------------------------- |
2077
- | `data[]` | `object[]` | ✅ | — | |
2078
- | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
2079
- | ​ ↳ `date` | `string` | ✅ | — | Date created |
2080
- | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
2081
- | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
2082
- | ​ ↳ `destination_selected_api` | `string` | ❌ | — | Destination API key (if applicable) |
2083
- | ​ ↳ `is_invite_only` | `boolean` | | — | Whether the connection is invite-only |
2084
- | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
2085
- | ​ ↳ `shared_with_all` | `boolean` | ✅ | — | Whether the connection is shared with all users |
2086
- | ​ ↳ `is_stale` | `string` | | — | Stale status string |
2087
- | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
2088
- | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
2089
- | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
2090
- | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
2091
- | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
2092
- | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
2093
- | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
2094
- | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
2095
- | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
2096
- | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
2097
- | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
2098
- | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
2099
- | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
2100
- | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
2101
- | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
2102
- | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
2103
- | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
2104
- | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
2105
- | `nextCursor` | `string` | ❌ | — | Cursor for the next page; omitted when there are no more pages |
2078
+ | Name | Type | Required | Possible Values | Description |
2079
+ | ------------------------------ | ---------- | -------- | --------------- | ------------------------------------------------------------------------------------------------------------------------------ |
2080
+ | `data[]` | `object[]` | ✅ | — | |
2081
+ | ​ ↳ `id` | `string` | ✅ | — | Unique identifier for the connection |
2082
+ | ​ ↳ `date` | `string` | ✅ | — | Date created |
2083
+ | ​ ↳ `lastchanged` | `string` | ❌ | — | Date last changed |
2084
+ | ​ ↳ `account_id` | `string` | ✅ | — | Account ID associated with this connection |
2085
+ | ​ ↳ `slug` | `string` | ❌ | — | Human-readable app slug for this connection's integration (e.g. 'google-sheets'). Null when no slug is registered for the app. |
2086
+ | ​ ↳ `destination_selected_api` | `string` | | — | Destination API key (if applicable) |
2087
+ | ​ ↳ `is_invite_only` | `boolean` | ✅ | — | Whether the connection is invite-only |
2088
+ | ​ ↳ `is_private` | `boolean` | ✅ | — | Whether the connection is private |
2089
+ | ​ ↳ `shared_with_all` | `boolean` | | — | Whether the connection is shared with all users |
2090
+ | ​ ↳ `is_stale` | `string` | ❌ | — | Stale status string |
2091
+ | ​ ↳ `is_shared` | `string` | ❌ | — | Shared status string |
2092
+ | ​ ↳ `marked_stale_at` | `string` | ❌ | — | Date when marked stale |
2093
+ | ​ ↳ `label` | `string` | ❌ | — | User label for the connection |
2094
+ | ​ ↳ `identifier` | `string` | ❌ | — | Identifier |
2095
+ | ​ ↳ `title` | `string` | ❌ | — | Title of the connection |
2096
+ | ​ ↳ `url` | `string` | ❌ | — | URL to the connection resource |
2097
+ | ​ ↳ `groups` | `array` | ❌ | — | Array of groups associated with the connection |
2098
+ | ​ ↳ `members` | `string` | ❌ | — | Members associated with the connection |
2099
+ | ​ ↳ `permissions` | `object` | ❌ | — | Permissions for the connection |
2100
+ | ​ ↳ `public_id` | `string` | ❌ | — | Public UUID for the connection |
2101
+ | ​ ↳ `account_public_id` | `string` | ❌ | — | Public UUID for the associated account |
2102
+ | ​ ↳ `customuser_public_id` | `string` | ❌ | — | Public UUID for the associated custom user |
2103
+ | ​ ↳ `implementation_id` | `string` | ❌ | — | Implementation ID (was selected_api) |
2104
+ | ​ ↳ `profile_id` | `string` | ❌ | — | Profile ID (was customuser_id) |
2105
+ | ​ ↳ `is_expired` | `string` | ❌ | — | Whether the connection is expired (mapped from is_stale) |
2106
+ | ​ ↳ `expired_at` | `string` | ❌ | — | Date when connection expired (mapped from marked_stale_at) |
2107
+ | ​ ↳ `app_key` | `string` | ❌ | — | App Key extracted from implementation_id |
2108
+ | ​ ↳ `app_version` | `string` | ❌ | — | App Version extracted from implementation_id |
2109
+ | `nextCursor` | `string` | ❌ | — | Cursor for the next page; omitted when there are no more pages |
2106
2110
 
2107
2111
  **Example:**
2108
2112