@seamapi/types 1.718.0 → 1.719.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -58733,11 +58733,28 @@ declare const _default: {
|
|
|
58733
58733
|
description: string;
|
|
58734
58734
|
operationId: string;
|
|
58735
58735
|
parameters: ({
|
|
58736
|
+
in: string;
|
|
58737
|
+
name: string;
|
|
58738
|
+
schema: {
|
|
58739
|
+
description: string;
|
|
58740
|
+
items: {
|
|
58741
|
+
format: string;
|
|
58742
|
+
type: string;
|
|
58743
|
+
};
|
|
58744
|
+
type: string;
|
|
58745
|
+
format?: never;
|
|
58746
|
+
default?: never;
|
|
58747
|
+
exclusiveMinimum?: never;
|
|
58748
|
+
minimum?: never;
|
|
58749
|
+
nullable?: never;
|
|
58750
|
+
};
|
|
58751
|
+
} | {
|
|
58736
58752
|
in: string;
|
|
58737
58753
|
name: string;
|
|
58738
58754
|
schema: {
|
|
58739
58755
|
description: string;
|
|
58740
58756
|
type: string;
|
|
58757
|
+
items?: never;
|
|
58741
58758
|
format?: never;
|
|
58742
58759
|
default?: never;
|
|
58743
58760
|
exclusiveMinimum?: never;
|
|
@@ -58751,6 +58768,7 @@ declare const _default: {
|
|
|
58751
58768
|
description: string;
|
|
58752
58769
|
format: string;
|
|
58753
58770
|
type: string;
|
|
58771
|
+
items?: never;
|
|
58754
58772
|
default?: never;
|
|
58755
58773
|
exclusiveMinimum?: never;
|
|
58756
58774
|
minimum?: never;
|
|
@@ -58765,6 +58783,7 @@ declare const _default: {
|
|
|
58765
58783
|
exclusiveMinimum: boolean;
|
|
58766
58784
|
minimum: number;
|
|
58767
58785
|
type: string;
|
|
58786
|
+
items?: never;
|
|
58768
58787
|
format?: never;
|
|
58769
58788
|
nullable?: never;
|
|
58770
58789
|
};
|
|
@@ -58775,6 +58794,7 @@ declare const _default: {
|
|
|
58775
58794
|
description: string;
|
|
58776
58795
|
nullable: boolean;
|
|
58777
58796
|
type: string;
|
|
58797
|
+
items?: never;
|
|
58778
58798
|
format?: never;
|
|
58779
58799
|
default?: never;
|
|
58780
58800
|
exclusiveMinimum?: never;
|
|
@@ -58877,6 +58897,14 @@ declare const _default: {
|
|
|
58877
58897
|
description: string;
|
|
58878
58898
|
type: string;
|
|
58879
58899
|
};
|
|
58900
|
+
user_identity_ids: {
|
|
58901
|
+
description: string;
|
|
58902
|
+
items: {
|
|
58903
|
+
format: string;
|
|
58904
|
+
type: string;
|
|
58905
|
+
};
|
|
58906
|
+
type: string;
|
|
58907
|
+
};
|
|
58880
58908
|
};
|
|
58881
58909
|
type: string;
|
|
58882
58910
|
};
|
|
@@ -61396,6 +61396,15 @@ export default {
|
|
|
61396
61396
|
description: 'Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).',
|
|
61397
61397
|
operationId: 'userIdentitiesListGet',
|
|
61398
61398
|
parameters: [
|
|
61399
|
+
{
|
|
61400
|
+
in: 'query',
|
|
61401
|
+
name: 'user_identity_ids',
|
|
61402
|
+
schema: {
|
|
61403
|
+
description: 'Array of user identity IDs by which to filter the list of user identities.',
|
|
61404
|
+
items: { format: 'uuid', type: 'string' },
|
|
61405
|
+
type: 'array',
|
|
61406
|
+
},
|
|
61407
|
+
},
|
|
61399
61408
|
{
|
|
61400
61409
|
in: 'query',
|
|
61401
61410
|
name: 'search',
|
|
@@ -61514,6 +61523,11 @@ export default {
|
|
|
61514
61523
|
description: 'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
|
|
61515
61524
|
type: 'string',
|
|
61516
61525
|
},
|
|
61526
|
+
user_identity_ids: {
|
|
61527
|
+
description: 'Array of user identity IDs by which to filter the list of user identities.',
|
|
61528
|
+
items: { format: 'uuid', type: 'string' },
|
|
61529
|
+
type: 'array',
|
|
61530
|
+
},
|
|
61517
61531
|
},
|
|
61518
61532
|
type: 'object',
|
|
61519
61533
|
},
|