@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.d.cts
CHANGED
|
@@ -103916,6 +103916,10 @@ declare const _default: {
|
|
|
103916
103916
|
description: string;
|
|
103917
103917
|
type: string;
|
|
103918
103918
|
format?: never;
|
|
103919
|
+
default?: never;
|
|
103920
|
+
exclusiveMinimum?: never;
|
|
103921
|
+
minimum?: never;
|
|
103922
|
+
nullable?: never;
|
|
103919
103923
|
};
|
|
103920
103924
|
} | {
|
|
103921
103925
|
in: string;
|
|
@@ -103924,6 +103928,34 @@ declare const _default: {
|
|
|
103924
103928
|
description: string;
|
|
103925
103929
|
format: string;
|
|
103926
103930
|
type: string;
|
|
103931
|
+
default?: never;
|
|
103932
|
+
exclusiveMinimum?: never;
|
|
103933
|
+
minimum?: never;
|
|
103934
|
+
nullable?: never;
|
|
103935
|
+
};
|
|
103936
|
+
} | {
|
|
103937
|
+
in: string;
|
|
103938
|
+
name: string;
|
|
103939
|
+
schema: {
|
|
103940
|
+
default: number;
|
|
103941
|
+
description: string;
|
|
103942
|
+
exclusiveMinimum: boolean;
|
|
103943
|
+
minimum: number;
|
|
103944
|
+
type: string;
|
|
103945
|
+
format?: never;
|
|
103946
|
+
nullable?: never;
|
|
103947
|
+
};
|
|
103948
|
+
} | {
|
|
103949
|
+
in: string;
|
|
103950
|
+
name: string;
|
|
103951
|
+
schema: {
|
|
103952
|
+
description: string;
|
|
103953
|
+
nullable: boolean;
|
|
103954
|
+
type: string;
|
|
103955
|
+
format?: never;
|
|
103956
|
+
default?: never;
|
|
103957
|
+
exclusiveMinimum?: never;
|
|
103958
|
+
minimum?: never;
|
|
103927
103959
|
};
|
|
103928
103960
|
})[];
|
|
103929
103961
|
responses: {
|
|
@@ -103935,6 +103967,9 @@ declare const _default: {
|
|
|
103935
103967
|
ok: {
|
|
103936
103968
|
type: string;
|
|
103937
103969
|
};
|
|
103970
|
+
pagination: {
|
|
103971
|
+
$ref: string;
|
|
103972
|
+
};
|
|
103938
103973
|
user_identities: {
|
|
103939
103974
|
items: {
|
|
103940
103975
|
$ref: string;
|
|
@@ -103993,11 +104028,28 @@ declare const _default: {
|
|
|
103993
104028
|
'application/json': {
|
|
103994
104029
|
schema: {
|
|
103995
104030
|
properties: {
|
|
104031
|
+
created_before: {
|
|
104032
|
+
description: string;
|
|
104033
|
+
format: string;
|
|
104034
|
+
type: string;
|
|
104035
|
+
};
|
|
103996
104036
|
credential_manager_acs_system_id: {
|
|
103997
104037
|
description: string;
|
|
103998
104038
|
format: string;
|
|
103999
104039
|
type: string;
|
|
104000
104040
|
};
|
|
104041
|
+
limit: {
|
|
104042
|
+
default: number;
|
|
104043
|
+
description: string;
|
|
104044
|
+
exclusiveMinimum: boolean;
|
|
104045
|
+
minimum: number;
|
|
104046
|
+
type: string;
|
|
104047
|
+
};
|
|
104048
|
+
page_cursor: {
|
|
104049
|
+
description: string;
|
|
104050
|
+
nullable: boolean;
|
|
104051
|
+
type: string;
|
|
104052
|
+
};
|
|
104001
104053
|
search: {
|
|
104002
104054
|
description: string;
|
|
104003
104055
|
type: string;
|
|
@@ -104017,6 +104069,9 @@ declare const _default: {
|
|
|
104017
104069
|
ok: {
|
|
104018
104070
|
type: string;
|
|
104019
104071
|
};
|
|
104072
|
+
pagination: {
|
|
104073
|
+
$ref: string;
|
|
104074
|
+
};
|
|
104020
104075
|
user_identities: {
|
|
104021
104076
|
items: {
|
|
104022
104077
|
$ref: string;
|
|
@@ -105144,14 +105199,55 @@ declare const _default: {
|
|
|
105144
105199
|
get: {
|
|
105145
105200
|
description: string;
|
|
105146
105201
|
operationId: string;
|
|
105147
|
-
parameters: {
|
|
105202
|
+
parameters: ({
|
|
105148
105203
|
in: string;
|
|
105149
105204
|
name: string;
|
|
105150
105205
|
schema: {
|
|
105151
105206
|
description: string;
|
|
105152
105207
|
type: string;
|
|
105208
|
+
default?: never;
|
|
105209
|
+
exclusiveMinimum?: never;
|
|
105210
|
+
minimum?: never;
|
|
105211
|
+
format?: never;
|
|
105212
|
+
nullable?: never;
|
|
105153
105213
|
};
|
|
105154
|
-
}
|
|
105214
|
+
} | {
|
|
105215
|
+
in: string;
|
|
105216
|
+
name: string;
|
|
105217
|
+
schema: {
|
|
105218
|
+
default: number;
|
|
105219
|
+
description: string;
|
|
105220
|
+
exclusiveMinimum: boolean;
|
|
105221
|
+
minimum: number;
|
|
105222
|
+
type: string;
|
|
105223
|
+
format?: never;
|
|
105224
|
+
nullable?: never;
|
|
105225
|
+
};
|
|
105226
|
+
} | {
|
|
105227
|
+
in: string;
|
|
105228
|
+
name: string;
|
|
105229
|
+
schema: {
|
|
105230
|
+
description: string;
|
|
105231
|
+
format: string;
|
|
105232
|
+
type: string;
|
|
105233
|
+
default?: never;
|
|
105234
|
+
exclusiveMinimum?: never;
|
|
105235
|
+
minimum?: never;
|
|
105236
|
+
nullable?: never;
|
|
105237
|
+
};
|
|
105238
|
+
} | {
|
|
105239
|
+
in: string;
|
|
105240
|
+
name: string;
|
|
105241
|
+
schema: {
|
|
105242
|
+
description: string;
|
|
105243
|
+
nullable: boolean;
|
|
105244
|
+
type: string;
|
|
105245
|
+
default?: never;
|
|
105246
|
+
exclusiveMinimum?: never;
|
|
105247
|
+
minimum?: never;
|
|
105248
|
+
format?: never;
|
|
105249
|
+
};
|
|
105250
|
+
})[];
|
|
105155
105251
|
responses: {
|
|
105156
105252
|
200: {
|
|
105157
105253
|
content: {
|
|
@@ -105161,6 +105257,9 @@ declare const _default: {
|
|
|
105161
105257
|
ok: {
|
|
105162
105258
|
type: string;
|
|
105163
105259
|
};
|
|
105260
|
+
pagination: {
|
|
105261
|
+
$ref: string;
|
|
105262
|
+
};
|
|
105164
105263
|
user_identities: {
|
|
105165
105264
|
items: {
|
|
105166
105265
|
description: string;
|
|
@@ -105340,6 +105439,23 @@ declare const _default: {
|
|
|
105340
105439
|
'application/json': {
|
|
105341
105440
|
schema: {
|
|
105342
105441
|
properties: {
|
|
105442
|
+
created_before: {
|
|
105443
|
+
description: string;
|
|
105444
|
+
format: string;
|
|
105445
|
+
type: string;
|
|
105446
|
+
};
|
|
105447
|
+
limit: {
|
|
105448
|
+
default: number;
|
|
105449
|
+
description: string;
|
|
105450
|
+
exclusiveMinimum: boolean;
|
|
105451
|
+
minimum: number;
|
|
105452
|
+
type: string;
|
|
105453
|
+
};
|
|
105454
|
+
page_cursor: {
|
|
105455
|
+
description: string;
|
|
105456
|
+
nullable: boolean;
|
|
105457
|
+
type: string;
|
|
105458
|
+
};
|
|
105343
105459
|
search: {
|
|
105344
105460
|
description: string;
|
|
105345
105461
|
type: string;
|
|
@@ -105359,6 +105475,9 @@ declare const _default: {
|
|
|
105359
105475
|
ok: {
|
|
105360
105476
|
type: string;
|
|
105361
105477
|
};
|
|
105478
|
+
pagination: {
|
|
105479
|
+
$ref: string;
|
|
105480
|
+
};
|
|
105362
105481
|
user_identities: {
|
|
105363
105482
|
items: {
|
|
105364
105483
|
description: string;
|
|
@@ -185910,6 +186029,12 @@ type Routes = {
|
|
|
185910
186029
|
search?: string | undefined;
|
|
185911
186030
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
185912
186031
|
credential_manager_acs_system_id?: string | undefined;
|
|
186032
|
+
/** Maximum number of records to return per page. */
|
|
186033
|
+
limit?: number;
|
|
186034
|
+
/** Timestamp by which to limit returned user identities. Returns user identities created before this timestamp. */
|
|
186035
|
+
created_before?: Date | undefined;
|
|
186036
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
186037
|
+
page_cursor?: (string | undefined) | null;
|
|
185913
186038
|
};
|
|
185914
186039
|
formData: {};
|
|
185915
186040
|
jsonResponse: {
|
|
@@ -185960,6 +186085,15 @@ type Routes = {
|
|
|
185960
186085
|
/** Array of access system user IDs associated with the user identity. */
|
|
185961
186086
|
acs_user_ids: string[];
|
|
185962
186087
|
}[];
|
|
186088
|
+
/** Information about the current page of results. */
|
|
186089
|
+
pagination: {
|
|
186090
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
186091
|
+
next_page_cursor: string | null;
|
|
186092
|
+
/** Indicates whether there is another page of results after this one. */
|
|
186093
|
+
has_next_page: boolean;
|
|
186094
|
+
/** URL to get the next page of results. */
|
|
186095
|
+
next_page_url: string | null;
|
|
186096
|
+
};
|
|
185963
186097
|
};
|
|
185964
186098
|
};
|
|
185965
186099
|
'/user_identities/list_accessible_devices': {
|
|
@@ -188850,6 +188984,12 @@ type Routes = {
|
|
|
188850
188984
|
commonParams: {
|
|
188851
188985
|
/** 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`. */
|
|
188852
188986
|
search?: string | undefined;
|
|
188987
|
+
/** Maximum number of records to return per page. */
|
|
188988
|
+
limit?: number;
|
|
188989
|
+
/** Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp. */
|
|
188990
|
+
created_before?: Date | undefined;
|
|
188991
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
188992
|
+
page_cursor?: (string | undefined) | null;
|
|
188853
188993
|
};
|
|
188854
188994
|
formData: {};
|
|
188855
188995
|
jsonResponse: {
|
|
@@ -188898,6 +189038,15 @@ type Routes = {
|
|
|
188898
189038
|
/** Array of access system user IDs associated with the user identity. */
|
|
188899
189039
|
acs_user_ids: string[];
|
|
188900
189040
|
}[];
|
|
189041
|
+
/** Information about the current page of results. */
|
|
189042
|
+
pagination: {
|
|
189043
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
189044
|
+
next_page_cursor: string | null;
|
|
189045
|
+
/** Indicates whether there is another page of results after this one. */
|
|
189046
|
+
has_next_page: boolean;
|
|
189047
|
+
/** URL to get the next page of results. */
|
|
189048
|
+
next_page_url: string | null;
|
|
189049
|
+
};
|
|
188901
189050
|
};
|
|
188902
189051
|
};
|
|
188903
189052
|
'/user_identities/unmanaged/update': {
|
package/dist/index.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
|
}
|