@seamapi/types 1.573.0 → 1.575.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 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -1
- package/dist/index.cjs +14 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +12 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -2
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -76444,7 +76444,9 @@ export type Routes = {
|
|
|
76444
76444
|
jsonBody: {};
|
|
76445
76445
|
commonParams: {
|
|
76446
76446
|
/** ID of the user identity to which you want to add an access system user. */
|
|
76447
|
-
user_identity_id
|
|
76447
|
+
user_identity_id?: string | undefined;
|
|
76448
|
+
/** Key of the user identity to which you want to add an access system user. */
|
|
76449
|
+
user_identity_key?: string | undefined;
|
|
76448
76450
|
/** ID of the access system user that you want to add to the user identity. */
|
|
76449
76451
|
acs_user_id: string;
|
|
76450
76452
|
};
|
package/package.json
CHANGED
|
@@ -52129,6 +52129,7 @@ export default {
|
|
|
52129
52129
|
{ pat_with_workspace: [] },
|
|
52130
52130
|
{ console_session_with_workspace: [] },
|
|
52131
52131
|
{ api_key: [] },
|
|
52132
|
+
{ client_session_with_customer: [] },
|
|
52132
52133
|
],
|
|
52133
52134
|
summary: '/spaces/get_related',
|
|
52134
52135
|
tags: [],
|
|
@@ -52244,6 +52245,7 @@ export default {
|
|
|
52244
52245
|
{ pat_with_workspace: [] },
|
|
52245
52246
|
{ console_session_with_workspace: [] },
|
|
52246
52247
|
{ api_key: [] },
|
|
52248
|
+
{ client_session_with_customer: [] },
|
|
52247
52249
|
],
|
|
52248
52250
|
summary: '/spaces/get_related',
|
|
52249
52251
|
tags: [],
|
|
@@ -56507,8 +56509,13 @@ export default {
|
|
|
56507
56509
|
format: 'uuid',
|
|
56508
56510
|
type: 'string',
|
|
56509
56511
|
},
|
|
56512
|
+
user_identity_key: {
|
|
56513
|
+
description:
|
|
56514
|
+
'Key of the user identity to which you want to add an access system user.',
|
|
56515
|
+
type: 'string',
|
|
56516
|
+
},
|
|
56510
56517
|
},
|
|
56511
|
-
required: ['
|
|
56518
|
+
required: ['acs_user_id'],
|
|
56512
56519
|
type: 'object',
|
|
56513
56520
|
},
|
|
56514
56521
|
},
|
|
@@ -56563,8 +56570,13 @@ export default {
|
|
|
56563
56570
|
format: 'uuid',
|
|
56564
56571
|
type: 'string',
|
|
56565
56572
|
},
|
|
56573
|
+
user_identity_key: {
|
|
56574
|
+
description:
|
|
56575
|
+
'Key of the user identity to which you want to add an access system user.',
|
|
56576
|
+
type: 'string',
|
|
56577
|
+
},
|
|
56566
56578
|
},
|
|
56567
|
-
required: ['
|
|
56579
|
+
required: ['acs_user_id'],
|
|
56568
56580
|
type: 'object',
|
|
56569
56581
|
},
|
|
56570
56582
|
},
|
|
@@ -90854,7 +90854,9 @@ export type Routes = {
|
|
|
90854
90854
|
jsonBody: {}
|
|
90855
90855
|
commonParams: {
|
|
90856
90856
|
/** ID of the user identity to which you want to add an access system user. */
|
|
90857
|
-
user_identity_id
|
|
90857
|
+
user_identity_id?: string | undefined
|
|
90858
|
+
/** Key of the user identity to which you want to add an access system user. */
|
|
90859
|
+
user_identity_key?: string | undefined
|
|
90858
90860
|
/** ID of the access system user that you want to add to the user identity. */
|
|
90859
90861
|
acs_user_id: string
|
|
90860
90862
|
}
|