@seamapi/types 1.77.0 → 1.79.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 +6 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -5
- package/lib/seam/connect/openapi.d.ts +6 -3
- package/lib/seam/connect/openapi.js +5 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -3
- package/src/lib/seam/connect/route-types.ts +27 -2
package/dist/connect.d.cts
CHANGED
|
@@ -8422,8 +8422,11 @@ declare const _default: {
|
|
|
8422
8422
|
format: string;
|
|
8423
8423
|
type: string;
|
|
8424
8424
|
};
|
|
8425
|
+
user_identity_id: {
|
|
8426
|
+
format: string;
|
|
8427
|
+
type: string;
|
|
8428
|
+
};
|
|
8425
8429
|
};
|
|
8426
|
-
required: string[];
|
|
8427
8430
|
type: string;
|
|
8428
8431
|
};
|
|
8429
8432
|
};
|
|
@@ -16354,8 +16357,8 @@ declare const _default: {
|
|
|
16354
16357
|
'application/json': {
|
|
16355
16358
|
schema: {
|
|
16356
16359
|
properties: {
|
|
16357
|
-
|
|
16358
|
-
|
|
16360
|
+
action_attempt: {
|
|
16361
|
+
$ref: string;
|
|
16359
16362
|
};
|
|
16360
16363
|
ok: {
|
|
16361
16364
|
type: string;
|
|
@@ -17567,7 +17570,8 @@ interface Routes {
|
|
|
17567
17570
|
queryParams: {};
|
|
17568
17571
|
jsonBody: {};
|
|
17569
17572
|
commonParams: {
|
|
17570
|
-
|
|
17573
|
+
user_identity_id?: string | undefined;
|
|
17574
|
+
acs_system_id?: string | undefined;
|
|
17571
17575
|
};
|
|
17572
17576
|
formData: {};
|
|
17573
17577
|
jsonResponse: {
|
|
@@ -24424,7 +24428,28 @@ interface Routes {
|
|
|
24424
24428
|
commonParams: {};
|
|
24425
24429
|
formData: {};
|
|
24426
24430
|
jsonResponse: {
|
|
24427
|
-
|
|
24431
|
+
action_attempt: {
|
|
24432
|
+
status: 'success';
|
|
24433
|
+
action_type: string;
|
|
24434
|
+
action_attempt_id: string;
|
|
24435
|
+
result?: any;
|
|
24436
|
+
error: null;
|
|
24437
|
+
} | {
|
|
24438
|
+
status: 'pending';
|
|
24439
|
+
action_type: string;
|
|
24440
|
+
action_attempt_id: string;
|
|
24441
|
+
result: null;
|
|
24442
|
+
error: null;
|
|
24443
|
+
} | {
|
|
24444
|
+
status: 'error';
|
|
24445
|
+
action_type: string;
|
|
24446
|
+
action_attempt_id: string;
|
|
24447
|
+
result: null;
|
|
24448
|
+
error: {
|
|
24449
|
+
type: string;
|
|
24450
|
+
message: string;
|
|
24451
|
+
};
|
|
24452
|
+
};
|
|
24428
24453
|
};
|
|
24429
24454
|
};
|
|
24430
24455
|
}
|
|
@@ -8348,8 +8348,11 @@ declare const _default: {
|
|
|
8348
8348
|
format: string;
|
|
8349
8349
|
type: string;
|
|
8350
8350
|
};
|
|
8351
|
+
user_identity_id: {
|
|
8352
|
+
format: string;
|
|
8353
|
+
type: string;
|
|
8354
|
+
};
|
|
8351
8355
|
};
|
|
8352
|
-
required: string[];
|
|
8353
8356
|
type: string;
|
|
8354
8357
|
};
|
|
8355
8358
|
};
|
|
@@ -16280,8 +16283,8 @@ declare const _default: {
|
|
|
16280
16283
|
'application/json': {
|
|
16281
16284
|
schema: {
|
|
16282
16285
|
properties: {
|
|
16283
|
-
|
|
16284
|
-
|
|
16286
|
+
action_attempt: {
|
|
16287
|
+
$ref: string;
|
|
16285
16288
|
};
|
|
16286
16289
|
ok: {
|
|
16287
16290
|
type: string;
|
|
@@ -6231,8 +6231,8 @@ export default {
|
|
|
6231
6231
|
schema: {
|
|
6232
6232
|
properties: {
|
|
6233
6233
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6234
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6234
6235
|
},
|
|
6235
|
-
required: ['acs_system_id'],
|
|
6236
6236
|
type: 'object',
|
|
6237
6237
|
},
|
|
6238
6238
|
},
|
|
@@ -12131,10 +12131,12 @@ export default {
|
|
|
12131
12131
|
'application/json': {
|
|
12132
12132
|
schema: {
|
|
12133
12133
|
properties: {
|
|
12134
|
-
|
|
12134
|
+
action_attempt: {
|
|
12135
|
+
$ref: '#/components/schemas/action_attempt',
|
|
12136
|
+
},
|
|
12135
12137
|
ok: { type: 'boolean' },
|
|
12136
12138
|
},
|
|
12137
|
-
required: ['
|
|
12139
|
+
required: ['action_attempt', 'ok'],
|
|
12138
12140
|
type: 'object',
|
|
12139
12141
|
},
|
|
12140
12142
|
},
|