@seamapi/types 1.721.2 → 1.722.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 +20 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +20 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +20 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +20 -2
- package/src/lib/seam/connect/route-types.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -58769,6 +58769,10 @@ var openapi_default = {
|
|
|
58769
58769
|
access_methods: {
|
|
58770
58770
|
items: {
|
|
58771
58771
|
properties: {
|
|
58772
|
+
access_grant_id: {
|
|
58773
|
+
format: "uuid",
|
|
58774
|
+
type: "string"
|
|
58775
|
+
},
|
|
58772
58776
|
access_method_id: {
|
|
58773
58777
|
format: "uuid",
|
|
58774
58778
|
type: "string"
|
|
@@ -58782,7 +58786,12 @@ var openapi_default = {
|
|
|
58782
58786
|
is_issued: { type: "boolean" },
|
|
58783
58787
|
mode: { type: "string" }
|
|
58784
58788
|
},
|
|
58785
|
-
required: [
|
|
58789
|
+
required: [
|
|
58790
|
+
"access_method_id",
|
|
58791
|
+
"access_grant_id",
|
|
58792
|
+
"mode",
|
|
58793
|
+
"is_issued"
|
|
58794
|
+
],
|
|
58786
58795
|
type: "object"
|
|
58787
58796
|
},
|
|
58788
58797
|
type: "array"
|
|
@@ -58888,6 +58897,10 @@ var openapi_default = {
|
|
|
58888
58897
|
access_methods: {
|
|
58889
58898
|
items: {
|
|
58890
58899
|
properties: {
|
|
58900
|
+
access_grant_id: {
|
|
58901
|
+
format: "uuid",
|
|
58902
|
+
type: "string"
|
|
58903
|
+
},
|
|
58891
58904
|
access_method_id: {
|
|
58892
58905
|
format: "uuid",
|
|
58893
58906
|
type: "string"
|
|
@@ -58901,7 +58914,12 @@ var openapi_default = {
|
|
|
58901
58914
|
is_issued: { type: "boolean" },
|
|
58902
58915
|
mode: { type: "string" }
|
|
58903
58916
|
},
|
|
58904
|
-
required: [
|
|
58917
|
+
required: [
|
|
58918
|
+
"access_method_id",
|
|
58919
|
+
"access_grant_id",
|
|
58920
|
+
"mode",
|
|
58921
|
+
"is_issued"
|
|
58922
|
+
],
|
|
58905
58923
|
type: "object"
|
|
58906
58924
|
},
|
|
58907
58925
|
type: "array"
|