@seamapi/types 1.602.0 → 1.603.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 +100 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +151 -2
- package/dist/index.cjs +100 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +121 -2
- package/lib/seam/connect/openapi.js +100 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +110 -4
- package/src/lib/seam/connect/route-types.ts +30 -0
package/dist/connect.cjs
CHANGED
|
@@ -61662,6 +61662,35 @@ var openapi_default = {
|
|
|
61662
61662
|
format: "uuid",
|
|
61663
61663
|
type: "string"
|
|
61664
61664
|
}
|
|
61665
|
+
},
|
|
61666
|
+
{
|
|
61667
|
+
in: "query",
|
|
61668
|
+
name: "limit",
|
|
61669
|
+
schema: {
|
|
61670
|
+
default: 500,
|
|
61671
|
+
description: "Maximum number of records to return per page.",
|
|
61672
|
+
exclusiveMinimum: true,
|
|
61673
|
+
minimum: 0,
|
|
61674
|
+
type: "integer"
|
|
61675
|
+
}
|
|
61676
|
+
},
|
|
61677
|
+
{
|
|
61678
|
+
in: "query",
|
|
61679
|
+
name: "created_before",
|
|
61680
|
+
schema: {
|
|
61681
|
+
description: "Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.",
|
|
61682
|
+
format: "date-time",
|
|
61683
|
+
type: "string"
|
|
61684
|
+
}
|
|
61685
|
+
},
|
|
61686
|
+
{
|
|
61687
|
+
in: "query",
|
|
61688
|
+
name: "page_cursor",
|
|
61689
|
+
schema: {
|
|
61690
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
61691
|
+
nullable: true,
|
|
61692
|
+
type: "string"
|
|
61693
|
+
}
|
|
61665
61694
|
}
|
|
61666
61695
|
],
|
|
61667
61696
|
responses: {
|
|
@@ -61671,12 +61700,13 @@ var openapi_default = {
|
|
|
61671
61700
|
schema: {
|
|
61672
61701
|
properties: {
|
|
61673
61702
|
ok: { type: "boolean" },
|
|
61703
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
61674
61704
|
user_identities: {
|
|
61675
61705
|
items: { $ref: "#/components/schemas/user_identity" },
|
|
61676
61706
|
type: "array"
|
|
61677
61707
|
}
|
|
61678
61708
|
},
|
|
61679
|
-
required: ["user_identities", "ok"],
|
|
61709
|
+
required: ["user_identities", "pagination", "ok"],
|
|
61680
61710
|
type: "object"
|
|
61681
61711
|
}
|
|
61682
61712
|
}
|
|
@@ -61708,11 +61738,28 @@ var openapi_default = {
|
|
|
61708
61738
|
"application/json": {
|
|
61709
61739
|
schema: {
|
|
61710
61740
|
properties: {
|
|
61741
|
+
created_before: {
|
|
61742
|
+
description: "Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.",
|
|
61743
|
+
format: "date-time",
|
|
61744
|
+
type: "string"
|
|
61745
|
+
},
|
|
61711
61746
|
credential_manager_acs_system_id: {
|
|
61712
61747
|
description: "`acs_system_id` of the credential manager by which you want to filter the list of user identities.",
|
|
61713
61748
|
format: "uuid",
|
|
61714
61749
|
type: "string"
|
|
61715
61750
|
},
|
|
61751
|
+
limit: {
|
|
61752
|
+
default: 500,
|
|
61753
|
+
description: "Maximum number of records to return per page.",
|
|
61754
|
+
exclusiveMinimum: true,
|
|
61755
|
+
minimum: 0,
|
|
61756
|
+
type: "integer"
|
|
61757
|
+
},
|
|
61758
|
+
page_cursor: {
|
|
61759
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
61760
|
+
nullable: true,
|
|
61761
|
+
type: "string"
|
|
61762
|
+
},
|
|
61716
61763
|
search: {
|
|
61717
61764
|
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`.",
|
|
61718
61765
|
type: "string"
|
|
@@ -61730,12 +61777,13 @@ var openapi_default = {
|
|
|
61730
61777
|
schema: {
|
|
61731
61778
|
properties: {
|
|
61732
61779
|
ok: { type: "boolean" },
|
|
61780
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
61733
61781
|
user_identities: {
|
|
61734
61782
|
items: { $ref: "#/components/schemas/user_identity" },
|
|
61735
61783
|
type: "array"
|
|
61736
61784
|
}
|
|
61737
61785
|
},
|
|
61738
|
-
required: ["user_identities", "ok"],
|
|
61786
|
+
required: ["user_identities", "pagination", "ok"],
|
|
61739
61787
|
type: "object"
|
|
61740
61788
|
}
|
|
61741
61789
|
}
|
|
@@ -62754,6 +62802,35 @@ var openapi_default = {
|
|
|
62754
62802
|
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
62755
62803
|
type: "string"
|
|
62756
62804
|
}
|
|
62805
|
+
},
|
|
62806
|
+
{
|
|
62807
|
+
in: "query",
|
|
62808
|
+
name: "limit",
|
|
62809
|
+
schema: {
|
|
62810
|
+
default: 500,
|
|
62811
|
+
description: "Maximum number of records to return per page.",
|
|
62812
|
+
exclusiveMinimum: true,
|
|
62813
|
+
minimum: 0,
|
|
62814
|
+
type: "integer"
|
|
62815
|
+
}
|
|
62816
|
+
},
|
|
62817
|
+
{
|
|
62818
|
+
in: "query",
|
|
62819
|
+
name: "created_before",
|
|
62820
|
+
schema: {
|
|
62821
|
+
description: "Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.",
|
|
62822
|
+
format: "date-time",
|
|
62823
|
+
type: "string"
|
|
62824
|
+
}
|
|
62825
|
+
},
|
|
62826
|
+
{
|
|
62827
|
+
in: "query",
|
|
62828
|
+
name: "page_cursor",
|
|
62829
|
+
schema: {
|
|
62830
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
62831
|
+
nullable: true,
|
|
62832
|
+
type: "string"
|
|
62833
|
+
}
|
|
62757
62834
|
}
|
|
62758
62835
|
],
|
|
62759
62836
|
responses: {
|
|
@@ -62763,6 +62840,7 @@ var openapi_default = {
|
|
|
62763
62840
|
schema: {
|
|
62764
62841
|
properties: {
|
|
62765
62842
|
ok: { type: "boolean" },
|
|
62843
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
62766
62844
|
user_identities: {
|
|
62767
62845
|
items: {
|
|
62768
62846
|
description: "Represents an unmanaged user identity. Unmanaged user identities do not have keys.",
|
|
@@ -62933,7 +63011,7 @@ var openapi_default = {
|
|
|
62933
63011
|
type: "array"
|
|
62934
63012
|
}
|
|
62935
63013
|
},
|
|
62936
|
-
required: ["user_identities", "ok"],
|
|
63014
|
+
required: ["user_identities", "pagination", "ok"],
|
|
62937
63015
|
type: "object"
|
|
62938
63016
|
}
|
|
62939
63017
|
}
|
|
@@ -62965,6 +63043,23 @@ var openapi_default = {
|
|
|
62965
63043
|
"application/json": {
|
|
62966
63044
|
schema: {
|
|
62967
63045
|
properties: {
|
|
63046
|
+
created_before: {
|
|
63047
|
+
description: "Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.",
|
|
63048
|
+
format: "date-time",
|
|
63049
|
+
type: "string"
|
|
63050
|
+
},
|
|
63051
|
+
limit: {
|
|
63052
|
+
default: 500,
|
|
63053
|
+
description: "Maximum number of records to return per page.",
|
|
63054
|
+
exclusiveMinimum: true,
|
|
63055
|
+
minimum: 0,
|
|
63056
|
+
type: "integer"
|
|
63057
|
+
},
|
|
63058
|
+
page_cursor: {
|
|
63059
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
63060
|
+
nullable: true,
|
|
63061
|
+
type: "string"
|
|
63062
|
+
},
|
|
62968
63063
|
search: {
|
|
62969
63064
|
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
62970
63065
|
type: "string"
|
|
@@ -62982,6 +63077,7 @@ var openapi_default = {
|
|
|
62982
63077
|
schema: {
|
|
62983
63078
|
properties: {
|
|
62984
63079
|
ok: { type: "boolean" },
|
|
63080
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
62985
63081
|
user_identities: {
|
|
62986
63082
|
items: {
|
|
62987
63083
|
description: "Represents an unmanaged user identity. Unmanaged user identities do not have keys.",
|
|
@@ -63152,7 +63248,7 @@ var openapi_default = {
|
|
|
63152
63248
|
type: "array"
|
|
63153
63249
|
}
|
|
63154
63250
|
},
|
|
63155
|
-
required: ["user_identities", "ok"],
|
|
63251
|
+
required: ["user_identities", "pagination", "ok"],
|
|
63156
63252
|
type: "object"
|
|
63157
63253
|
}
|
|
63158
63254
|
}
|