@seamapi/types 1.31.0 → 1.33.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 (33) hide show
  1. package/dist/connect.cjs +497 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +3602 -2340
  4. package/dist/devicedb.cjs +1 -1
  5. package/dist/devicedb.cjs.map +1 -1
  6. package/dist/devicedb.d.cts +19 -19
  7. package/lib/seam/connect/openapi.d.ts +750 -0
  8. package/lib/seam/connect/openapi.js +497 -0
  9. package/lib/seam/connect/openapi.js.map +1 -1
  10. package/lib/seam/connect/route-types.d.ts +512 -0
  11. package/lib/seam/connect/unstable/models/index.d.ts +1 -0
  12. package/lib/seam/connect/unstable/models/index.js +1 -0
  13. package/lib/seam/connect/unstable/models/index.js.map +1 -1
  14. package/lib/seam/connect/unstable/models/user-identity.d.ts +21 -0
  15. package/lib/seam/connect/unstable/models/user-identity.js +9 -0
  16. package/lib/seam/connect/unstable/models/user-identity.js.map +1 -0
  17. package/lib/seam/connect/unstable/schemas.d.ts +1 -1
  18. package/lib/seam/connect/unstable/schemas.js +1 -1
  19. package/lib/seam/connect/unstable/schemas.js.map +1 -1
  20. package/lib/seam/devicedb/public-models/device-model-v1.d.ts +2 -2
  21. package/lib/seam/devicedb/public-models/manufacturer.d.ts +3 -3
  22. package/lib/seam/devicedb/public-models/manufacturer.js +1 -1
  23. package/lib/seam/devicedb/public-models/manufacturer.js.map +1 -1
  24. package/lib/seam/devicedb/route-specs.d.ts +12 -12
  25. package/lib/seam/devicedb/route-types.d.ts +2 -2
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/openapi.ts +497 -0
  28. package/src/lib/seam/connect/route-types.ts +703 -0
  29. package/src/lib/seam/connect/unstable/models/index.ts +1 -0
  30. package/src/lib/seam/connect/unstable/models/user-identity.ts +11 -0
  31. package/src/lib/seam/connect/unstable/schemas.ts +1 -0
  32. package/src/lib/seam/devicedb/public-models/manufacturer.ts +1 -1
  33. package/src/lib/seam/devicedb/route-types.ts +2 -2
@@ -32,7 +32,7 @@ export declare const routes: {
32
32
  integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
33
33
  is_connect_webview_supported: z.ZodBoolean;
34
34
  requires_seam_support_to_add_account: z.ZodBoolean;
35
- device_model_count: z.ZodOptional<z.ZodNumber>;
35
+ device_model_count: z.ZodNumber;
36
36
  }, "device_model_count">, "strip", z.ZodTypeAny, {
37
37
  display_name: string;
38
38
  manufacturer_id: string;
@@ -1070,7 +1070,7 @@ export declare const routes: {
1070
1070
  integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1071
1071
  is_connect_webview_supported: z.ZodBoolean;
1072
1072
  requires_seam_support_to_add_account: z.ZodBoolean;
1073
- device_model_count: z.ZodOptional<z.ZodNumber>;
1073
+ device_model_count: z.ZodNumber;
1074
1074
  }, "device_model_count">, "strip", z.ZodTypeAny, {
1075
1075
  display_name: string;
1076
1076
  manufacturer_id: string;
@@ -1684,31 +1684,31 @@ export declare const routes: {
1684
1684
  integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1685
1685
  is_connect_webview_supported: z.ZodBoolean;
1686
1686
  requires_seam_support_to_add_account: z.ZodBoolean;
1687
- device_model_count: z.ZodOptional<z.ZodNumber>;
1687
+ device_model_count: z.ZodNumber;
1688
1688
  }, "strip", z.ZodTypeAny, {
1689
1689
  display_name: string;
1690
1690
  manufacturer_id: string;
1691
1691
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1692
1692
  is_connect_webview_supported: boolean;
1693
1693
  requires_seam_support_to_add_account: boolean;
1694
+ device_model_count: number;
1694
1695
  logo?: {
1695
1696
  height: number;
1696
1697
  width: number;
1697
1698
  url: string;
1698
1699
  } | undefined;
1699
- device_model_count?: number | undefined;
1700
1700
  }, {
1701
1701
  display_name: string;
1702
1702
  manufacturer_id: string;
1703
1703
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1704
1704
  is_connect_webview_supported: boolean;
1705
1705
  requires_seam_support_to_add_account: boolean;
1706
+ device_model_count: number;
1706
1707
  logo?: {
1707
1708
  height: number;
1708
1709
  width: number;
1709
1710
  url: string;
1710
1711
  } | undefined;
1711
- device_model_count?: number | undefined;
1712
1712
  }>;
1713
1713
  }, "strip", z.ZodTypeAny, {
1714
1714
  manufacturer: {
@@ -1717,12 +1717,12 @@ export declare const routes: {
1717
1717
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1718
1718
  is_connect_webview_supported: boolean;
1719
1719
  requires_seam_support_to_add_account: boolean;
1720
+ device_model_count: number;
1720
1721
  logo?: {
1721
1722
  height: number;
1722
1723
  width: number;
1723
1724
  url: string;
1724
1725
  } | undefined;
1725
- device_model_count?: number | undefined;
1726
1726
  };
1727
1727
  }, {
1728
1728
  manufacturer: {
@@ -1731,12 +1731,12 @@ export declare const routes: {
1731
1731
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1732
1732
  is_connect_webview_supported: boolean;
1733
1733
  requires_seam_support_to_add_account: boolean;
1734
+ device_model_count: number;
1734
1735
  logo?: {
1735
1736
  height: number;
1736
1737
  width: number;
1737
1738
  url: string;
1738
1739
  } | undefined;
1739
- device_model_count?: number | undefined;
1740
1740
  };
1741
1741
  }>;
1742
1742
  };
@@ -1773,31 +1773,31 @@ export declare const routes: {
1773
1773
  integration: z.ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
1774
1774
  is_connect_webview_supported: z.ZodBoolean;
1775
1775
  requires_seam_support_to_add_account: z.ZodBoolean;
1776
- device_model_count: z.ZodOptional<z.ZodNumber>;
1776
+ device_model_count: z.ZodNumber;
1777
1777
  }, "strip", z.ZodTypeAny, {
1778
1778
  display_name: string;
1779
1779
  manufacturer_id: string;
1780
1780
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1781
1781
  is_connect_webview_supported: boolean;
1782
1782
  requires_seam_support_to_add_account: boolean;
1783
+ device_model_count: number;
1783
1784
  logo?: {
1784
1785
  height: number;
1785
1786
  width: number;
1786
1787
  url: string;
1787
1788
  } | undefined;
1788
- device_model_count?: number | undefined;
1789
1789
  }, {
1790
1790
  display_name: string;
1791
1791
  manufacturer_id: string;
1792
1792
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1793
1793
  is_connect_webview_supported: boolean;
1794
1794
  requires_seam_support_to_add_account: boolean;
1795
+ device_model_count: number;
1795
1796
  logo?: {
1796
1797
  height: number;
1797
1798
  width: number;
1798
1799
  url: string;
1799
1800
  } | undefined;
1800
- device_model_count?: number | undefined;
1801
1801
  }>, "many">;
1802
1802
  }, "strip", z.ZodTypeAny, {
1803
1803
  manufacturers: {
@@ -1806,12 +1806,12 @@ export declare const routes: {
1806
1806
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1807
1807
  is_connect_webview_supported: boolean;
1808
1808
  requires_seam_support_to_add_account: boolean;
1809
+ device_model_count: number;
1809
1810
  logo?: {
1810
1811
  height: number;
1811
1812
  width: number;
1812
1813
  url: string;
1813
1814
  } | undefined;
1814
- device_model_count?: number | undefined;
1815
1815
  }[];
1816
1816
  }, {
1817
1817
  manufacturers: {
@@ -1820,12 +1820,12 @@ export declare const routes: {
1820
1820
  integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
1821
1821
  is_connect_webview_supported: boolean;
1822
1822
  requires_seam_support_to_add_account: boolean;
1823
+ device_model_count: number;
1823
1824
  logo?: {
1824
1825
  height: number;
1825
1826
  width: number;
1826
1827
  url: string;
1827
1828
  } | undefined;
1828
- device_model_count?: number | undefined;
1829
1829
  }[];
1830
1830
  }>;
1831
1831
  };
@@ -228,7 +228,7 @@ export interface Routes {
228
228
  integration: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire';
229
229
  is_connect_webview_supported: boolean;
230
230
  requires_seam_support_to_add_account: boolean;
231
- device_model_count?: number | undefined;
231
+ device_model_count: number;
232
232
  };
233
233
  };
234
234
  };
@@ -254,7 +254,7 @@ export interface Routes {
254
254
  integration: 'stable' | 'beta' | 'planned' | 'unsupported' | 'inquire';
255
255
  is_connect_webview_supported: boolean;
256
256
  requires_seam_support_to_add_account: boolean;
257
- device_model_count?: number | undefined;
257
+ device_model_count: number;
258
258
  }>;
259
259
  };
260
260
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.31.0",
3
+ "version": "1.33.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -7894,6 +7894,503 @@ export default {
7894
7894
  'x-fern-sdk-method-name': 'update',
7895
7895
  },
7896
7896
  },
7897
+ '/user_identities/add_acs_user': {
7898
+ post: {
7899
+ operationId: 'userIdentitiesAddAcsUserPost',
7900
+ requestBody: {
7901
+ content: {
7902
+ 'application/json': {
7903
+ schema: {
7904
+ properties: {
7905
+ acs_user_id: { format: 'uuid', type: 'string' },
7906
+ user_identity_id: { format: 'uuid', type: 'string' },
7907
+ },
7908
+ required: ['user_identity_id', 'acs_user_id'],
7909
+ type: 'object',
7910
+ },
7911
+ },
7912
+ },
7913
+ },
7914
+ responses: {
7915
+ 200: {
7916
+ content: {
7917
+ 'application/json': {
7918
+ schema: {
7919
+ properties: { ok: { type: 'boolean' } },
7920
+ required: ['ok'],
7921
+ type: 'object',
7922
+ },
7923
+ },
7924
+ },
7925
+ description: 'OK',
7926
+ },
7927
+ 400: { description: 'Bad Request' },
7928
+ 401: { description: 'Unauthorized' },
7929
+ },
7930
+ security: [
7931
+ { access_token: [], seam_workspace: [] },
7932
+ { seam_client_session_token: [] },
7933
+ { client_session_token: [] },
7934
+ ],
7935
+ summary: '/user_identities/add_acs_user',
7936
+ tags: [],
7937
+ 'x-fern-sdk-group-name': ['user_identities'],
7938
+ 'x-fern-sdk-method-name': 'add_acs_user',
7939
+ },
7940
+ put: {
7941
+ operationId: 'userIdentitiesAddAcsUserPut',
7942
+ requestBody: {
7943
+ content: {
7944
+ 'application/json': {
7945
+ schema: {
7946
+ properties: {
7947
+ acs_user_id: { format: 'uuid', type: 'string' },
7948
+ user_identity_id: { format: 'uuid', type: 'string' },
7949
+ },
7950
+ required: ['user_identity_id', 'acs_user_id'],
7951
+ type: 'object',
7952
+ },
7953
+ },
7954
+ },
7955
+ },
7956
+ responses: {
7957
+ 200: {
7958
+ content: {
7959
+ 'application/json': {
7960
+ schema: {
7961
+ properties: { ok: { type: 'boolean' } },
7962
+ required: ['ok'],
7963
+ type: 'object',
7964
+ },
7965
+ },
7966
+ },
7967
+ description: 'OK',
7968
+ },
7969
+ 400: { description: 'Bad Request' },
7970
+ 401: { description: 'Unauthorized' },
7971
+ },
7972
+ security: [
7973
+ { access_token: [], seam_workspace: [] },
7974
+ { seam_client_session_token: [] },
7975
+ { client_session_token: [] },
7976
+ ],
7977
+ summary: '/user_identities/add_acs_user',
7978
+ tags: [],
7979
+ 'x-fern-ignore': true,
7980
+ },
7981
+ },
7982
+ '/user_identities/create': {
7983
+ post: {
7984
+ operationId: 'userIdentitiesCreatePost',
7985
+ requestBody: {
7986
+ content: {
7987
+ 'application/json': {
7988
+ schema: {
7989
+ properties: {
7990
+ email_address: {
7991
+ format: 'email',
7992
+ nullable: true,
7993
+ type: 'string',
7994
+ },
7995
+ user_identity_key: { nullable: true, type: 'string' },
7996
+ },
7997
+ type: 'object',
7998
+ },
7999
+ },
8000
+ },
8001
+ },
8002
+ responses: {
8003
+ 200: {
8004
+ content: {
8005
+ 'application/json': {
8006
+ schema: {
8007
+ properties: {
8008
+ ok: { type: 'boolean' },
8009
+ user_identity: {
8010
+ properties: {
8011
+ created_at: { format: 'date-time', type: 'string' },
8012
+ email_address: {
8013
+ format: 'email',
8014
+ nullable: true,
8015
+ type: 'string',
8016
+ },
8017
+ user_identity_id: { format: 'uuid', type: 'string' },
8018
+ user_identity_key: { nullable: true, type: 'string' },
8019
+ workspace_id: { format: 'uuid', type: 'string' },
8020
+ },
8021
+ required: [
8022
+ 'user_identity_id',
8023
+ 'created_at',
8024
+ 'workspace_id',
8025
+ ],
8026
+ type: 'object',
8027
+ },
8028
+ },
8029
+ required: ['user_identity', 'ok'],
8030
+ type: 'object',
8031
+ },
8032
+ },
8033
+ },
8034
+ description: 'OK',
8035
+ },
8036
+ 400: { description: 'Bad Request' },
8037
+ 401: { description: 'Unauthorized' },
8038
+ },
8039
+ security: [
8040
+ { access_token: [], seam_workspace: [] },
8041
+ { seam_client_session_token: [] },
8042
+ { client_session_token: [] },
8043
+ ],
8044
+ summary: '/user_identities/create',
8045
+ tags: [],
8046
+ 'x-fern-sdk-group-name': ['user_identities'],
8047
+ 'x-fern-sdk-method-name': 'create',
8048
+ },
8049
+ },
8050
+ '/user_identities/get': {
8051
+ post: {
8052
+ operationId: 'userIdentitiesGetPost',
8053
+ requestBody: {
8054
+ content: {
8055
+ 'application/json': {
8056
+ schema: {
8057
+ oneOf: [
8058
+ {
8059
+ properties: {
8060
+ user_identity_id: { format: 'uuid', type: 'string' },
8061
+ },
8062
+ required: ['user_identity_id'],
8063
+ type: 'object',
8064
+ },
8065
+ {
8066
+ properties: { user_identity_key: { type: 'string' } },
8067
+ required: ['user_identity_key'],
8068
+ type: 'object',
8069
+ },
8070
+ ],
8071
+ },
8072
+ },
8073
+ },
8074
+ },
8075
+ responses: {
8076
+ 200: {
8077
+ content: {
8078
+ 'application/json': {
8079
+ schema: {
8080
+ properties: {
8081
+ ok: { type: 'boolean' },
8082
+ user_identity: {
8083
+ properties: {
8084
+ created_at: { format: 'date-time', type: 'string' },
8085
+ email_address: {
8086
+ format: 'email',
8087
+ nullable: true,
8088
+ type: 'string',
8089
+ },
8090
+ user_identity_id: { format: 'uuid', type: 'string' },
8091
+ user_identity_key: { nullable: true, type: 'string' },
8092
+ workspace_id: { format: 'uuid', type: 'string' },
8093
+ },
8094
+ required: [
8095
+ 'user_identity_id',
8096
+ 'created_at',
8097
+ 'workspace_id',
8098
+ ],
8099
+ type: 'object',
8100
+ },
8101
+ },
8102
+ required: ['user_identity', 'ok'],
8103
+ type: 'object',
8104
+ },
8105
+ },
8106
+ },
8107
+ description: 'OK',
8108
+ },
8109
+ 400: { description: 'Bad Request' },
8110
+ 401: { description: 'Unauthorized' },
8111
+ },
8112
+ security: [
8113
+ { access_token: [], seam_workspace: [] },
8114
+ { seam_client_session_token: [] },
8115
+ { client_session_token: [] },
8116
+ ],
8117
+ summary: '/user_identities/get',
8118
+ tags: [],
8119
+ 'x-fern-sdk-group-name': ['user_identities'],
8120
+ 'x-fern-sdk-method-name': 'get',
8121
+ },
8122
+ },
8123
+ '/user_identities/grant_access_to_device': {
8124
+ post: {
8125
+ operationId: 'userIdentitiesGrantAccessToDevicePost',
8126
+ requestBody: {
8127
+ content: {
8128
+ 'application/json': {
8129
+ schema: {
8130
+ properties: {
8131
+ device_id: { format: 'uuid', type: 'string' },
8132
+ user_identity_id: { format: 'uuid', type: 'string' },
8133
+ },
8134
+ required: ['user_identity_id', 'device_id'],
8135
+ type: 'object',
8136
+ },
8137
+ },
8138
+ },
8139
+ },
8140
+ responses: {
8141
+ 200: {
8142
+ content: {
8143
+ 'application/json': {
8144
+ schema: {
8145
+ properties: { ok: { type: 'boolean' } },
8146
+ required: ['ok'],
8147
+ type: 'object',
8148
+ },
8149
+ },
8150
+ },
8151
+ description: 'OK',
8152
+ },
8153
+ 400: { description: 'Bad Request' },
8154
+ 401: { description: 'Unauthorized' },
8155
+ },
8156
+ security: [
8157
+ { access_token: [], seam_workspace: [] },
8158
+ { seam_client_session_token: [] },
8159
+ { client_session_token: [] },
8160
+ ],
8161
+ summary: '/user_identities/grant_access_to_device',
8162
+ tags: [],
8163
+ 'x-fern-sdk-group-name': ['user_identities'],
8164
+ 'x-fern-sdk-method-name': 'grant_access_to_device',
8165
+ },
8166
+ put: {
8167
+ operationId: 'userIdentitiesGrantAccessToDevicePut',
8168
+ requestBody: {
8169
+ content: {
8170
+ 'application/json': {
8171
+ schema: {
8172
+ properties: {
8173
+ device_id: { format: 'uuid', type: 'string' },
8174
+ user_identity_id: { format: 'uuid', type: 'string' },
8175
+ },
8176
+ required: ['user_identity_id', 'device_id'],
8177
+ type: 'object',
8178
+ },
8179
+ },
8180
+ },
8181
+ },
8182
+ responses: {
8183
+ 200: {
8184
+ content: {
8185
+ 'application/json': {
8186
+ schema: {
8187
+ properties: { ok: { type: 'boolean' } },
8188
+ required: ['ok'],
8189
+ type: 'object',
8190
+ },
8191
+ },
8192
+ },
8193
+ description: 'OK',
8194
+ },
8195
+ 400: { description: 'Bad Request' },
8196
+ 401: { description: 'Unauthorized' },
8197
+ },
8198
+ security: [
8199
+ { access_token: [], seam_workspace: [] },
8200
+ { seam_client_session_token: [] },
8201
+ { client_session_token: [] },
8202
+ ],
8203
+ summary: '/user_identities/grant_access_to_device',
8204
+ tags: [],
8205
+ 'x-fern-ignore': true,
8206
+ },
8207
+ },
8208
+ '/user_identities/list_accessible_devices': {
8209
+ post: {
8210
+ operationId: 'userIdentitiesListAccessibleDevicesPost',
8211
+ requestBody: {
8212
+ content: {
8213
+ 'application/json': {
8214
+ schema: {
8215
+ properties: {
8216
+ user_identity_id: { format: 'uuid', type: 'string' },
8217
+ },
8218
+ required: ['user_identity_id'],
8219
+ type: 'object',
8220
+ },
8221
+ },
8222
+ },
8223
+ },
8224
+ responses: {
8225
+ 200: {
8226
+ content: {
8227
+ 'application/json': {
8228
+ schema: {
8229
+ properties: {
8230
+ accessible_devices: {
8231
+ items: { $ref: '#/components/schemas/device' },
8232
+ type: 'array',
8233
+ },
8234
+ ok: { type: 'boolean' },
8235
+ },
8236
+ required: ['accessible_devices', 'ok'],
8237
+ type: 'object',
8238
+ },
8239
+ },
8240
+ },
8241
+ description: 'OK',
8242
+ },
8243
+ 400: { description: 'Bad Request' },
8244
+ 401: { description: 'Unauthorized' },
8245
+ },
8246
+ security: [
8247
+ { access_token: [], seam_workspace: [] },
8248
+ { seam_client_session_token: [] },
8249
+ { client_session_token: [] },
8250
+ ],
8251
+ summary: '/user_identities/list_accessible_devices',
8252
+ tags: [],
8253
+ 'x-fern-sdk-group-name': ['user_identities'],
8254
+ 'x-fern-sdk-method-name': 'list_accessible_devices',
8255
+ },
8256
+ },
8257
+ '/user_identities/list_acs_users': {
8258
+ post: {
8259
+ operationId: 'userIdentitiesListAcsUsersPost',
8260
+ requestBody: {
8261
+ content: {
8262
+ 'application/json': {
8263
+ schema: {
8264
+ properties: {
8265
+ user_identity_id: { format: 'uuid', type: 'string' },
8266
+ },
8267
+ required: ['user_identity_id'],
8268
+ type: 'object',
8269
+ },
8270
+ },
8271
+ },
8272
+ },
8273
+ responses: {
8274
+ 200: {
8275
+ content: {
8276
+ 'application/json': {
8277
+ schema: {
8278
+ properties: {
8279
+ acs_users: {
8280
+ items: { $ref: '#/components/schemas/acs_user' },
8281
+ type: 'array',
8282
+ },
8283
+ ok: { type: 'boolean' },
8284
+ },
8285
+ required: ['acs_users', 'ok'],
8286
+ type: 'object',
8287
+ },
8288
+ },
8289
+ },
8290
+ description: 'OK',
8291
+ },
8292
+ 400: { description: 'Bad Request' },
8293
+ 401: { description: 'Unauthorized' },
8294
+ },
8295
+ security: [
8296
+ { access_token: [], seam_workspace: [] },
8297
+ { seam_client_session_token: [] },
8298
+ { client_session_token: [] },
8299
+ ],
8300
+ summary: '/user_identities/list_acs_users',
8301
+ tags: [],
8302
+ 'x-fern-sdk-group-name': ['user_identities'],
8303
+ 'x-fern-sdk-method-name': 'list_acs_users',
8304
+ },
8305
+ },
8306
+ '/user_identities/remove_acs_user': {
8307
+ post: {
8308
+ operationId: 'userIdentitiesRemoveAcsUserPost',
8309
+ requestBody: {
8310
+ content: {
8311
+ 'application/json': {
8312
+ schema: {
8313
+ properties: {
8314
+ acs_user_id: { format: 'uuid', type: 'string' },
8315
+ user_identity_id: { format: 'uuid', type: 'string' },
8316
+ },
8317
+ required: ['user_identity_id', 'acs_user_id'],
8318
+ type: 'object',
8319
+ },
8320
+ },
8321
+ },
8322
+ },
8323
+ responses: {
8324
+ 200: {
8325
+ content: {
8326
+ 'application/json': {
8327
+ schema: {
8328
+ properties: { ok: { type: 'boolean' } },
8329
+ required: ['ok'],
8330
+ type: 'object',
8331
+ },
8332
+ },
8333
+ },
8334
+ description: 'OK',
8335
+ },
8336
+ 400: { description: 'Bad Request' },
8337
+ 401: { description: 'Unauthorized' },
8338
+ },
8339
+ security: [
8340
+ { access_token: [], seam_workspace: [] },
8341
+ { seam_client_session_token: [] },
8342
+ { client_session_token: [] },
8343
+ ],
8344
+ summary: '/user_identities/remove_acs_user',
8345
+ tags: [],
8346
+ 'x-fern-sdk-group-name': ['user_identities'],
8347
+ 'x-fern-sdk-method-name': 'remove_acs_user',
8348
+ },
8349
+ },
8350
+ '/user_identities/revoke_access_to_device': {
8351
+ post: {
8352
+ operationId: 'userIdentitiesRevokeAccessToDevicePost',
8353
+ requestBody: {
8354
+ content: {
8355
+ 'application/json': {
8356
+ schema: {
8357
+ properties: {
8358
+ device_id: { format: 'uuid', type: 'string' },
8359
+ user_identity_id: { format: 'uuid', type: 'string' },
8360
+ },
8361
+ required: ['user_identity_id', 'device_id'],
8362
+ type: 'object',
8363
+ },
8364
+ },
8365
+ },
8366
+ },
8367
+ responses: {
8368
+ 200: {
8369
+ content: {
8370
+ 'application/json': {
8371
+ schema: {
8372
+ properties: { ok: { type: 'boolean' } },
8373
+ required: ['ok'],
8374
+ type: 'object',
8375
+ },
8376
+ },
8377
+ },
8378
+ description: 'OK',
8379
+ },
8380
+ 400: { description: 'Bad Request' },
8381
+ 401: { description: 'Unauthorized' },
8382
+ },
8383
+ security: [
8384
+ { access_token: [], seam_workspace: [] },
8385
+ { seam_client_session_token: [] },
8386
+ { client_session_token: [] },
8387
+ ],
8388
+ summary: '/user_identities/revoke_access_to_device',
8389
+ tags: [],
8390
+ 'x-fern-sdk-group-name': ['user_identities'],
8391
+ 'x-fern-sdk-method-name': 'revoke_access_to_device',
8392
+ },
8393
+ },
7897
8394
  '/webhooks/create': {
7898
8395
  post: {
7899
8396
  operationId: 'webhooksCreatePost',