@seamapi/types 1.574.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 +10 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -1
- package/dist/index.cjs +10 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +10 -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 +12 -2
- package/src/lib/seam/connect/route-types.ts +3 -1
package/dist/connect.d.cts
CHANGED
|
@@ -99658,6 +99658,10 @@ declare const _default: {
|
|
|
99658
99658
|
format: string;
|
|
99659
99659
|
type: string;
|
|
99660
99660
|
};
|
|
99661
|
+
user_identity_key: {
|
|
99662
|
+
description: string;
|
|
99663
|
+
type: string;
|
|
99664
|
+
};
|
|
99661
99665
|
};
|
|
99662
99666
|
required: string[];
|
|
99663
99667
|
type: string;
|
|
@@ -99727,6 +99731,10 @@ declare const _default: {
|
|
|
99727
99731
|
format: string;
|
|
99728
99732
|
type: string;
|
|
99729
99733
|
};
|
|
99734
|
+
user_identity_key: {
|
|
99735
|
+
description: string;
|
|
99736
|
+
type: string;
|
|
99737
|
+
};
|
|
99730
99738
|
};
|
|
99731
99739
|
required: string[];
|
|
99732
99740
|
type: string;
|
|
@@ -180698,7 +180706,9 @@ type Routes = {
|
|
|
180698
180706
|
jsonBody: {};
|
|
180699
180707
|
commonParams: {
|
|
180700
180708
|
/** ID of the user identity to which you want to add an access system user. */
|
|
180701
|
-
user_identity_id
|
|
180709
|
+
user_identity_id?: string | undefined;
|
|
180710
|
+
/** Key of the user identity to which you want to add an access system user. */
|
|
180711
|
+
user_identity_key?: string | undefined;
|
|
180702
180712
|
/** ID of the access system user that you want to add to the user identity. */
|
|
180703
180713
|
acs_user_id: string;
|
|
180704
180714
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -57950,9 +57950,13 @@ var openapi_default = {
|
|
|
57950
57950
|
description: "ID of the user identity to which you want to add an access system user.",
|
|
57951
57951
|
format: "uuid",
|
|
57952
57952
|
type: "string"
|
|
57953
|
+
},
|
|
57954
|
+
user_identity_key: {
|
|
57955
|
+
description: "Key of the user identity to which you want to add an access system user.",
|
|
57956
|
+
type: "string"
|
|
57953
57957
|
}
|
|
57954
57958
|
},
|
|
57955
|
-
required: ["
|
|
57959
|
+
required: ["acs_user_id"],
|
|
57956
57960
|
type: "object"
|
|
57957
57961
|
}
|
|
57958
57962
|
}
|
|
@@ -58003,9 +58007,13 @@ var openapi_default = {
|
|
|
58003
58007
|
description: "ID of the user identity to which you want to add an access system user.",
|
|
58004
58008
|
format: "uuid",
|
|
58005
58009
|
type: "string"
|
|
58010
|
+
},
|
|
58011
|
+
user_identity_key: {
|
|
58012
|
+
description: "Key of the user identity to which you want to add an access system user.",
|
|
58013
|
+
type: "string"
|
|
58006
58014
|
}
|
|
58007
58015
|
},
|
|
58008
|
-
required: ["
|
|
58016
|
+
required: ["acs_user_id"],
|
|
58009
58017
|
type: "object"
|
|
58010
58018
|
}
|
|
58011
58019
|
}
|