@seamapi/types 1.404.0 → 1.404.2
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 +504 -143
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +516 -23
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +55 -15
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +121 -41
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/custom-metadata.js +5 -2
- package/lib/seam/connect/models/custom-metadata.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +148 -9
- package/lib/seam/connect/openapi.js +378 -89
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +368 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +79 -15
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +172 -44
- package/src/lib/seam/connect/models/custom-metadata.ts +8 -4
- package/src/lib/seam/connect/openapi.ts +471 -89
- package/src/lib/seam/connect/route-types.ts +368 -14
|
@@ -85,6 +85,7 @@ declare const _default: {
|
|
|
85
85
|
is_connected_account_error: {
|
|
86
86
|
enum: boolean[];
|
|
87
87
|
type: string;
|
|
88
|
+
description?: never;
|
|
88
89
|
};
|
|
89
90
|
is_device_error: {
|
|
90
91
|
enum: boolean[];
|
|
@@ -140,15 +141,17 @@ declare const _default: {
|
|
|
140
141
|
type: string;
|
|
141
142
|
};
|
|
142
143
|
is_bridge_error: {
|
|
144
|
+
description: string;
|
|
143
145
|
type: string;
|
|
144
146
|
};
|
|
145
147
|
is_connected_account_error: {
|
|
148
|
+
description: string;
|
|
146
149
|
type: string;
|
|
147
150
|
enum?: never;
|
|
148
151
|
};
|
|
149
152
|
message: {
|
|
153
|
+
description: string;
|
|
150
154
|
type: string;
|
|
151
|
-
description?: never;
|
|
152
155
|
};
|
|
153
156
|
is_access_code_error?: never;
|
|
154
157
|
is_device_error?: never;
|
|
@@ -2925,6 +2928,7 @@ declare const _default: {
|
|
|
2925
2928
|
'x-undocumented': string;
|
|
2926
2929
|
};
|
|
2927
2930
|
accepted_providers: {
|
|
2931
|
+
description: string;
|
|
2928
2932
|
items: {
|
|
2929
2933
|
type: string;
|
|
2930
2934
|
};
|
|
@@ -2937,26 +2941,32 @@ declare const _default: {
|
|
|
2937
2941
|
'x-undocumented': string;
|
|
2938
2942
|
};
|
|
2939
2943
|
any_provider_allowed: {
|
|
2944
|
+
description: string;
|
|
2940
2945
|
type: string;
|
|
2941
2946
|
};
|
|
2942
2947
|
authorized_at: {
|
|
2948
|
+
description: string;
|
|
2943
2949
|
format: string;
|
|
2944
2950
|
nullable: boolean;
|
|
2945
2951
|
type: string;
|
|
2946
2952
|
};
|
|
2947
2953
|
automatically_manage_new_devices: {
|
|
2954
|
+
description: string;
|
|
2948
2955
|
type: string;
|
|
2949
2956
|
};
|
|
2950
2957
|
connect_webview_id: {
|
|
2958
|
+
description: string;
|
|
2951
2959
|
format: string;
|
|
2952
2960
|
type: string;
|
|
2953
2961
|
};
|
|
2954
2962
|
connected_account_id: {
|
|
2963
|
+
description: string;
|
|
2955
2964
|
format: string;
|
|
2956
2965
|
nullable: boolean;
|
|
2957
2966
|
type: string;
|
|
2958
2967
|
};
|
|
2959
2968
|
created_at: {
|
|
2969
|
+
description: string;
|
|
2960
2970
|
format: string;
|
|
2961
2971
|
type: string;
|
|
2962
2972
|
};
|
|
@@ -2966,14 +2976,17 @@ declare const _default: {
|
|
|
2966
2976
|
type: string;
|
|
2967
2977
|
}[];
|
|
2968
2978
|
};
|
|
2979
|
+
description: string;
|
|
2969
2980
|
type: string;
|
|
2970
2981
|
};
|
|
2971
2982
|
custom_redirect_failure_url: {
|
|
2983
|
+
description: string;
|
|
2972
2984
|
format: string;
|
|
2973
2985
|
nullable: boolean;
|
|
2974
2986
|
type: string;
|
|
2975
2987
|
};
|
|
2976
2988
|
custom_redirect_url: {
|
|
2989
|
+
description: string;
|
|
2977
2990
|
format: string;
|
|
2978
2991
|
nullable: boolean;
|
|
2979
2992
|
type: string;
|
|
@@ -2983,24 +2996,30 @@ declare const _default: {
|
|
|
2983
2996
|
type: string;
|
|
2984
2997
|
};
|
|
2985
2998
|
login_successful: {
|
|
2999
|
+
description: string;
|
|
2986
3000
|
type: string;
|
|
2987
3001
|
};
|
|
2988
3002
|
selected_provider: {
|
|
3003
|
+
description: string;
|
|
2989
3004
|
nullable: boolean;
|
|
2990
3005
|
type: string;
|
|
2991
3006
|
};
|
|
2992
3007
|
status: {
|
|
3008
|
+
description: string;
|
|
2993
3009
|
enum: string[];
|
|
2994
3010
|
type: string;
|
|
2995
3011
|
};
|
|
2996
3012
|
url: {
|
|
3013
|
+
description: string;
|
|
2997
3014
|
format: string;
|
|
2998
3015
|
type: string;
|
|
2999
3016
|
};
|
|
3000
3017
|
wait_for_device_creation: {
|
|
3018
|
+
description: string;
|
|
3001
3019
|
type: string;
|
|
3002
3020
|
};
|
|
3003
3021
|
workspace_id: {
|
|
3022
|
+
description: string;
|
|
3004
3023
|
format: string;
|
|
3005
3024
|
type: string;
|
|
3006
3025
|
};
|
|
@@ -3013,19 +3032,24 @@ declare const _default: {
|
|
|
3013
3032
|
description: string;
|
|
3014
3033
|
properties: {
|
|
3015
3034
|
account_type: {
|
|
3035
|
+
description: string;
|
|
3016
3036
|
type: string;
|
|
3017
3037
|
};
|
|
3018
3038
|
account_type_display_name: {
|
|
3039
|
+
description: string;
|
|
3019
3040
|
type: string;
|
|
3020
3041
|
};
|
|
3021
3042
|
automatically_manage_new_devices: {
|
|
3043
|
+
description: string;
|
|
3022
3044
|
type: string;
|
|
3023
3045
|
};
|
|
3024
3046
|
connected_account_id: {
|
|
3047
|
+
description: string;
|
|
3025
3048
|
format: string;
|
|
3026
3049
|
type: string;
|
|
3027
3050
|
};
|
|
3028
3051
|
created_at: {
|
|
3052
|
+
description: string;
|
|
3029
3053
|
format: string;
|
|
3030
3054
|
type: string;
|
|
3031
3055
|
};
|
|
@@ -3035,9 +3059,11 @@ declare const _default: {
|
|
|
3035
3059
|
type: string;
|
|
3036
3060
|
}[];
|
|
3037
3061
|
};
|
|
3062
|
+
description: string;
|
|
3038
3063
|
type: string;
|
|
3039
3064
|
};
|
|
3040
3065
|
errors: {
|
|
3066
|
+
description: string;
|
|
3041
3067
|
items: {
|
|
3042
3068
|
discriminator: {
|
|
3043
3069
|
propertyName: string;
|
|
@@ -3056,12 +3082,15 @@ declare const _default: {
|
|
|
3056
3082
|
type: string;
|
|
3057
3083
|
};
|
|
3058
3084
|
is_bridge_error: {
|
|
3085
|
+
description: string;
|
|
3059
3086
|
type: string;
|
|
3060
3087
|
};
|
|
3061
3088
|
is_connected_account_error: {
|
|
3089
|
+
description: string;
|
|
3062
3090
|
type: string;
|
|
3063
3091
|
};
|
|
3064
3092
|
message: {
|
|
3093
|
+
description: string;
|
|
3065
3094
|
type: string;
|
|
3066
3095
|
};
|
|
3067
3096
|
salto_ks_metadata?: never;
|
|
@@ -3082,30 +3111,40 @@ declare const _default: {
|
|
|
3082
3111
|
type: string;
|
|
3083
3112
|
};
|
|
3084
3113
|
is_bridge_error: {
|
|
3114
|
+
description: string;
|
|
3085
3115
|
type: string;
|
|
3086
3116
|
};
|
|
3087
3117
|
is_connected_account_error: {
|
|
3118
|
+
description: string;
|
|
3088
3119
|
type: string;
|
|
3089
3120
|
};
|
|
3090
3121
|
message: {
|
|
3122
|
+
description: string;
|
|
3091
3123
|
type: string;
|
|
3092
3124
|
};
|
|
3093
3125
|
salto_ks_metadata: {
|
|
3126
|
+
description: string;
|
|
3094
3127
|
properties: {
|
|
3095
3128
|
sites: {
|
|
3129
|
+
description: string;
|
|
3096
3130
|
items: {
|
|
3131
|
+
description: string;
|
|
3097
3132
|
properties: {
|
|
3098
3133
|
site_id: {
|
|
3134
|
+
description: string;
|
|
3099
3135
|
type: string;
|
|
3100
3136
|
};
|
|
3101
3137
|
site_name: {
|
|
3138
|
+
description: string;
|
|
3102
3139
|
type: string;
|
|
3103
3140
|
};
|
|
3104
3141
|
site_user_subscription_limit: {
|
|
3142
|
+
description: string;
|
|
3105
3143
|
minimum: number;
|
|
3106
3144
|
type: string;
|
|
3107
3145
|
};
|
|
3108
3146
|
subscribed_site_user_count: {
|
|
3147
|
+
description: string;
|
|
3109
3148
|
minimum: number;
|
|
3110
3149
|
type: string;
|
|
3111
3150
|
};
|
|
@@ -3127,26 +3166,33 @@ declare const _default: {
|
|
|
3127
3166
|
type: string;
|
|
3128
3167
|
};
|
|
3129
3168
|
user_identifier: {
|
|
3169
|
+
description: string;
|
|
3130
3170
|
properties: {
|
|
3131
3171
|
api_url: {
|
|
3172
|
+
description: string;
|
|
3132
3173
|
type: string;
|
|
3133
3174
|
};
|
|
3134
3175
|
email: {
|
|
3176
|
+
description: string;
|
|
3135
3177
|
type: string;
|
|
3136
3178
|
};
|
|
3137
3179
|
exclusive: {
|
|
3180
|
+
description: string;
|
|
3138
3181
|
type: string;
|
|
3139
3182
|
};
|
|
3140
3183
|
phone: {
|
|
3184
|
+
description: string;
|
|
3141
3185
|
type: string;
|
|
3142
3186
|
};
|
|
3143
3187
|
username: {
|
|
3188
|
+
description: string;
|
|
3144
3189
|
type: string;
|
|
3145
3190
|
};
|
|
3146
3191
|
};
|
|
3147
3192
|
type: string;
|
|
3148
3193
|
};
|
|
3149
3194
|
warnings: {
|
|
3195
|
+
description: string;
|
|
3150
3196
|
items: {
|
|
3151
3197
|
description: string;
|
|
3152
3198
|
discriminator: {
|
|
@@ -3161,6 +3207,7 @@ declare const _default: {
|
|
|
3161
3207
|
type: string;
|
|
3162
3208
|
};
|
|
3163
3209
|
message: {
|
|
3210
|
+
description: string;
|
|
3164
3211
|
type: string;
|
|
3165
3212
|
};
|
|
3166
3213
|
warning_code: {
|
|
@@ -3181,24 +3228,32 @@ declare const _default: {
|
|
|
3181
3228
|
type: string;
|
|
3182
3229
|
};
|
|
3183
3230
|
message: {
|
|
3231
|
+
description: string;
|
|
3184
3232
|
type: string;
|
|
3185
3233
|
};
|
|
3186
3234
|
salto_ks_metadata: {
|
|
3235
|
+
description: string;
|
|
3187
3236
|
properties: {
|
|
3188
3237
|
sites: {
|
|
3238
|
+
description: string;
|
|
3189
3239
|
items: {
|
|
3240
|
+
description: string;
|
|
3190
3241
|
properties: {
|
|
3191
3242
|
site_id: {
|
|
3243
|
+
description: string;
|
|
3192
3244
|
type: string;
|
|
3193
3245
|
};
|
|
3194
3246
|
site_name: {
|
|
3247
|
+
description: string;
|
|
3195
3248
|
type: string;
|
|
3196
3249
|
};
|
|
3197
3250
|
site_user_subscription_limit: {
|
|
3251
|
+
description: string;
|
|
3198
3252
|
minimum: number;
|
|
3199
3253
|
type: string;
|
|
3200
3254
|
};
|
|
3201
3255
|
subscribed_site_user_count: {
|
|
3256
|
+
description: string;
|
|
3202
3257
|
minimum: number;
|
|
3203
3258
|
type: string;
|
|
3204
3259
|
};
|
|
@@ -3289,6 +3344,7 @@ declare const _default: {
|
|
|
3289
3344
|
type: string;
|
|
3290
3345
|
}[];
|
|
3291
3346
|
};
|
|
3347
|
+
description: string;
|
|
3292
3348
|
type: string;
|
|
3293
3349
|
};
|
|
3294
3350
|
device_id: {
|
|
@@ -3334,6 +3390,7 @@ declare const _default: {
|
|
|
3334
3390
|
is_connected_account_error: {
|
|
3335
3391
|
enum: boolean[];
|
|
3336
3392
|
type: string;
|
|
3393
|
+
description?: never;
|
|
3337
3394
|
};
|
|
3338
3395
|
is_device_error: {
|
|
3339
3396
|
enum: boolean[];
|
|
@@ -3341,6 +3398,7 @@ declare const _default: {
|
|
|
3341
3398
|
};
|
|
3342
3399
|
message: {
|
|
3343
3400
|
type: string;
|
|
3401
|
+
description?: never;
|
|
3344
3402
|
};
|
|
3345
3403
|
is_bridge_error?: never;
|
|
3346
3404
|
};
|
|
@@ -3365,6 +3423,7 @@ declare const _default: {
|
|
|
3365
3423
|
};
|
|
3366
3424
|
message: {
|
|
3367
3425
|
type: string;
|
|
3426
|
+
description?: never;
|
|
3368
3427
|
};
|
|
3369
3428
|
is_connected_account_error?: never;
|
|
3370
3429
|
is_bridge_error?: never;
|
|
@@ -3385,13 +3444,16 @@ declare const _default: {
|
|
|
3385
3444
|
type: string;
|
|
3386
3445
|
};
|
|
3387
3446
|
is_bridge_error: {
|
|
3447
|
+
description: string;
|
|
3388
3448
|
type: string;
|
|
3389
3449
|
};
|
|
3390
3450
|
is_connected_account_error: {
|
|
3451
|
+
description: string;
|
|
3391
3452
|
type: string;
|
|
3392
3453
|
enum?: never;
|
|
3393
3454
|
};
|
|
3394
3455
|
message: {
|
|
3456
|
+
description: string;
|
|
3395
3457
|
type: string;
|
|
3396
3458
|
};
|
|
3397
3459
|
is_device_error?: never;
|
|
@@ -9103,6 +9165,7 @@ declare const _default: {
|
|
|
9103
9165
|
is_connected_account_error: {
|
|
9104
9166
|
enum: boolean[];
|
|
9105
9167
|
type: string;
|
|
9168
|
+
description?: never;
|
|
9106
9169
|
};
|
|
9107
9170
|
is_device_error: {
|
|
9108
9171
|
enum: boolean[];
|
|
@@ -9158,15 +9221,17 @@ declare const _default: {
|
|
|
9158
9221
|
type: string;
|
|
9159
9222
|
};
|
|
9160
9223
|
is_bridge_error: {
|
|
9224
|
+
description: string;
|
|
9161
9225
|
type: string;
|
|
9162
9226
|
};
|
|
9163
9227
|
is_connected_account_error: {
|
|
9228
|
+
description: string;
|
|
9164
9229
|
type: string;
|
|
9165
9230
|
enum?: never;
|
|
9166
9231
|
};
|
|
9167
9232
|
message: {
|
|
9233
|
+
description: string;
|
|
9168
9234
|
type: string;
|
|
9169
|
-
description?: never;
|
|
9170
9235
|
};
|
|
9171
9236
|
is_access_code_error?: never;
|
|
9172
9237
|
is_device_error?: never;
|
|
@@ -10094,6 +10159,7 @@ declare const _default: {
|
|
|
10094
10159
|
is_connected_account_error: {
|
|
10095
10160
|
enum: boolean[];
|
|
10096
10161
|
type: string;
|
|
10162
|
+
description?: never;
|
|
10097
10163
|
};
|
|
10098
10164
|
is_device_error: {
|
|
10099
10165
|
enum: boolean[];
|
|
@@ -10101,6 +10167,7 @@ declare const _default: {
|
|
|
10101
10167
|
};
|
|
10102
10168
|
message: {
|
|
10103
10169
|
type: string;
|
|
10170
|
+
description?: never;
|
|
10104
10171
|
};
|
|
10105
10172
|
is_bridge_error?: never;
|
|
10106
10173
|
};
|
|
@@ -10125,6 +10192,7 @@ declare const _default: {
|
|
|
10125
10192
|
};
|
|
10126
10193
|
message: {
|
|
10127
10194
|
type: string;
|
|
10195
|
+
description?: never;
|
|
10128
10196
|
};
|
|
10129
10197
|
is_connected_account_error?: never;
|
|
10130
10198
|
is_bridge_error?: never;
|
|
@@ -10145,13 +10213,16 @@ declare const _default: {
|
|
|
10145
10213
|
type: string;
|
|
10146
10214
|
};
|
|
10147
10215
|
is_bridge_error: {
|
|
10216
|
+
description: string;
|
|
10148
10217
|
type: string;
|
|
10149
10218
|
};
|
|
10150
10219
|
is_connected_account_error: {
|
|
10220
|
+
description: string;
|
|
10151
10221
|
type: string;
|
|
10152
10222
|
enum?: never;
|
|
10153
10223
|
};
|
|
10154
10224
|
message: {
|
|
10225
|
+
description: string;
|
|
10155
10226
|
type: string;
|
|
10156
10227
|
};
|
|
10157
10228
|
is_device_error?: never;
|
|
@@ -16611,13 +16682,22 @@ declare const _default: {
|
|
|
16611
16682
|
'application/json': {
|
|
16612
16683
|
schema: {
|
|
16613
16684
|
properties: {
|
|
16685
|
+
acs_system_id: {
|
|
16686
|
+
description: string;
|
|
16687
|
+
format: string;
|
|
16688
|
+
type: string;
|
|
16689
|
+
};
|
|
16614
16690
|
acs_user_id: {
|
|
16615
16691
|
description: string;
|
|
16616
16692
|
format: string;
|
|
16617
16693
|
type: string;
|
|
16618
16694
|
};
|
|
16695
|
+
user_identity_id: {
|
|
16696
|
+
description: string;
|
|
16697
|
+
format: string;
|
|
16698
|
+
type: string;
|
|
16699
|
+
};
|
|
16619
16700
|
};
|
|
16620
|
-
required: string[];
|
|
16621
16701
|
type: string;
|
|
16622
16702
|
};
|
|
16623
16703
|
};
|
|
@@ -16677,13 +16757,22 @@ declare const _default: {
|
|
|
16677
16757
|
'application/json': {
|
|
16678
16758
|
schema: {
|
|
16679
16759
|
properties: {
|
|
16760
|
+
acs_system_id: {
|
|
16761
|
+
description: string;
|
|
16762
|
+
format: string;
|
|
16763
|
+
type: string;
|
|
16764
|
+
};
|
|
16680
16765
|
acs_user_id: {
|
|
16681
16766
|
description: string;
|
|
16682
16767
|
format: string;
|
|
16683
16768
|
type: string;
|
|
16684
16769
|
};
|
|
16770
|
+
user_identity_id: {
|
|
16771
|
+
description: string;
|
|
16772
|
+
format: string;
|
|
16773
|
+
type: string;
|
|
16774
|
+
};
|
|
16685
16775
|
};
|
|
16686
|
-
required: string[];
|
|
16687
16776
|
type: string;
|
|
16688
16777
|
};
|
|
16689
16778
|
};
|
|
@@ -16965,6 +17054,11 @@ declare const _default: {
|
|
|
16965
17054
|
format: string;
|
|
16966
17055
|
type: string;
|
|
16967
17056
|
};
|
|
17057
|
+
user_identity_id: {
|
|
17058
|
+
description: string;
|
|
17059
|
+
format: string;
|
|
17060
|
+
type: string;
|
|
17061
|
+
};
|
|
16968
17062
|
};
|
|
16969
17063
|
required: string[];
|
|
16970
17064
|
type: string;
|
|
@@ -17026,13 +17120,22 @@ declare const _default: {
|
|
|
17026
17120
|
'application/json': {
|
|
17027
17121
|
schema: {
|
|
17028
17122
|
properties: {
|
|
17123
|
+
acs_system_id: {
|
|
17124
|
+
description: string;
|
|
17125
|
+
format: string;
|
|
17126
|
+
type: string;
|
|
17127
|
+
};
|
|
17029
17128
|
acs_user_id: {
|
|
17030
17129
|
description: string;
|
|
17031
17130
|
format: string;
|
|
17032
17131
|
type: string;
|
|
17033
17132
|
};
|
|
17133
|
+
user_identity_id: {
|
|
17134
|
+
description: string;
|
|
17135
|
+
format: string;
|
|
17136
|
+
type: string;
|
|
17137
|
+
};
|
|
17034
17138
|
};
|
|
17035
|
-
required: string[];
|
|
17036
17139
|
type: string;
|
|
17037
17140
|
};
|
|
17038
17141
|
};
|
|
@@ -17092,13 +17195,22 @@ declare const _default: {
|
|
|
17092
17195
|
'application/json': {
|
|
17093
17196
|
schema: {
|
|
17094
17197
|
properties: {
|
|
17198
|
+
acs_system_id: {
|
|
17199
|
+
description: string;
|
|
17200
|
+
format: string;
|
|
17201
|
+
type: string;
|
|
17202
|
+
};
|
|
17095
17203
|
acs_user_id: {
|
|
17096
17204
|
description: string;
|
|
17097
17205
|
format: string;
|
|
17098
17206
|
type: string;
|
|
17099
17207
|
};
|
|
17208
|
+
user_identity_id: {
|
|
17209
|
+
description: string;
|
|
17210
|
+
format: string;
|
|
17211
|
+
type: string;
|
|
17212
|
+
};
|
|
17100
17213
|
};
|
|
17101
|
-
required: string[];
|
|
17102
17214
|
type: string;
|
|
17103
17215
|
};
|
|
17104
17216
|
};
|
|
@@ -17321,13 +17433,22 @@ declare const _default: {
|
|
|
17321
17433
|
'application/json': {
|
|
17322
17434
|
schema: {
|
|
17323
17435
|
properties: {
|
|
17436
|
+
acs_system_id: {
|
|
17437
|
+
description: string;
|
|
17438
|
+
format: string;
|
|
17439
|
+
type: string;
|
|
17440
|
+
};
|
|
17324
17441
|
acs_user_id: {
|
|
17325
17442
|
description: string;
|
|
17326
17443
|
format: string;
|
|
17327
17444
|
type: string;
|
|
17328
17445
|
};
|
|
17446
|
+
user_identity_id: {
|
|
17447
|
+
description: string;
|
|
17448
|
+
format: string;
|
|
17449
|
+
type: string;
|
|
17450
|
+
};
|
|
17329
17451
|
};
|
|
17330
|
-
required: string[];
|
|
17331
17452
|
type: string;
|
|
17332
17453
|
};
|
|
17333
17454
|
};
|
|
@@ -17405,6 +17526,11 @@ declare const _default: {
|
|
|
17405
17526
|
required: string[];
|
|
17406
17527
|
type: string;
|
|
17407
17528
|
};
|
|
17529
|
+
acs_system_id: {
|
|
17530
|
+
description: string;
|
|
17531
|
+
format: string;
|
|
17532
|
+
type: string;
|
|
17533
|
+
};
|
|
17408
17534
|
acs_user_id: {
|
|
17409
17535
|
description: string;
|
|
17410
17536
|
format: string;
|
|
@@ -17434,8 +17560,12 @@ declare const _default: {
|
|
|
17434
17560
|
description: string;
|
|
17435
17561
|
type: string;
|
|
17436
17562
|
};
|
|
17563
|
+
user_identity_id: {
|
|
17564
|
+
description: string;
|
|
17565
|
+
format: string;
|
|
17566
|
+
type: string;
|
|
17567
|
+
};
|
|
17437
17568
|
};
|
|
17438
|
-
required: string[];
|
|
17439
17569
|
type: string;
|
|
17440
17570
|
};
|
|
17441
17571
|
};
|
|
@@ -17510,6 +17640,11 @@ declare const _default: {
|
|
|
17510
17640
|
required: string[];
|
|
17511
17641
|
type: string;
|
|
17512
17642
|
};
|
|
17643
|
+
acs_system_id: {
|
|
17644
|
+
description: string;
|
|
17645
|
+
format: string;
|
|
17646
|
+
type: string;
|
|
17647
|
+
};
|
|
17513
17648
|
acs_user_id: {
|
|
17514
17649
|
description: string;
|
|
17515
17650
|
format: string;
|
|
@@ -17539,8 +17674,12 @@ declare const _default: {
|
|
|
17539
17674
|
description: string;
|
|
17540
17675
|
type: string;
|
|
17541
17676
|
};
|
|
17677
|
+
user_identity_id: {
|
|
17678
|
+
description: string;
|
|
17679
|
+
format: string;
|
|
17680
|
+
type: string;
|
|
17681
|
+
};
|
|
17542
17682
|
};
|
|
17543
|
-
required: string[];
|
|
17544
17683
|
type: string;
|
|
17545
17684
|
};
|
|
17546
17685
|
};
|