@seamapi/types 1.441.0 → 1.441.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 +4 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -0
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-method.js +4 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -2
- package/lib/index.js.map +0 -1
- package/src/lib/index.ts +0 -1
|
@@ -11440,6 +11440,8 @@ export interface Routes {
|
|
|
11440
11440
|
instant_key_url?: string | undefined;
|
|
11441
11441
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
11442
11442
|
is_encoding_required?: boolean | undefined;
|
|
11443
|
+
/** The actual PIN code for code access methods. */
|
|
11444
|
+
code?: string | undefined;
|
|
11443
11445
|
};
|
|
11444
11446
|
};
|
|
11445
11447
|
};
|
|
@@ -11471,6 +11473,8 @@ export interface Routes {
|
|
|
11471
11473
|
instant_key_url?: string | undefined;
|
|
11472
11474
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
11473
11475
|
is_encoding_required?: boolean | undefined;
|
|
11476
|
+
/** The actual PIN code for code access methods. */
|
|
11477
|
+
code?: string | undefined;
|
|
11474
11478
|
}>;
|
|
11475
11479
|
};
|
|
11476
11480
|
};
|
|
@@ -63606,6 +63610,8 @@ export interface Routes {
|
|
|
63606
63610
|
instant_key_url?: string | undefined;
|
|
63607
63611
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
63608
63612
|
is_encoding_required?: boolean | undefined;
|
|
63613
|
+
/** The actual PIN code for code access methods. */
|
|
63614
|
+
code?: string | undefined;
|
|
63609
63615
|
};
|
|
63610
63616
|
};
|
|
63611
63617
|
};
|
|
@@ -63637,6 +63643,8 @@ export interface Routes {
|
|
|
63637
63643
|
instant_key_url?: string | undefined;
|
|
63638
63644
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
63639
63645
|
is_encoding_required?: boolean | undefined;
|
|
63646
|
+
/** The actual PIN code for code access methods. */
|
|
63647
|
+
code?: string | undefined;
|
|
63640
63648
|
}>;
|
|
63641
63649
|
};
|
|
63642
63650
|
};
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '
|
|
1
|
+
export * from './connect.js'
|
|
@@ -32,6 +32,10 @@ export const access_method = z.object({
|
|
|
32
32
|
.describe(
|
|
33
33
|
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
34
34
|
),
|
|
35
|
+
code: z
|
|
36
|
+
.string()
|
|
37
|
+
.optional()
|
|
38
|
+
.describe('The actual PIN code for code access methods.'),
|
|
35
39
|
}).describe(`
|
|
36
40
|
---
|
|
37
41
|
draft: Early access.
|
|
@@ -1940,6 +1940,10 @@ export default {
|
|
|
1940
1940
|
format: 'uuid',
|
|
1941
1941
|
type: 'string',
|
|
1942
1942
|
},
|
|
1943
|
+
code: {
|
|
1944
|
+
description: 'The actual PIN code for code access methods.',
|
|
1945
|
+
type: 'string',
|
|
1946
|
+
},
|
|
1943
1947
|
created_at: {
|
|
1944
1948
|
description:
|
|
1945
1949
|
'Date and time at which the access method was created.',
|
|
@@ -12845,6 +12845,8 @@ export interface Routes {
|
|
|
12845
12845
|
instant_key_url?: string | undefined
|
|
12846
12846
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
12847
12847
|
is_encoding_required?: boolean | undefined
|
|
12848
|
+
/** The actual PIN code for code access methods. */
|
|
12849
|
+
code?: string | undefined
|
|
12848
12850
|
}
|
|
12849
12851
|
}
|
|
12850
12852
|
}
|
|
@@ -12876,6 +12878,8 @@ export interface Routes {
|
|
|
12876
12878
|
instant_key_url?: string | undefined
|
|
12877
12879
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
12878
12880
|
is_encoding_required?: boolean | undefined
|
|
12881
|
+
/** The actual PIN code for code access methods. */
|
|
12882
|
+
code?: string | undefined
|
|
12879
12883
|
}>
|
|
12880
12884
|
}
|
|
12881
12885
|
}
|
|
@@ -74873,6 +74877,8 @@ export interface Routes {
|
|
|
74873
74877
|
instant_key_url?: string | undefined
|
|
74874
74878
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
74875
74879
|
is_encoding_required?: boolean | undefined
|
|
74880
|
+
/** The actual PIN code for code access methods. */
|
|
74881
|
+
code?: string | undefined
|
|
74876
74882
|
}
|
|
74877
74883
|
}
|
|
74878
74884
|
}
|
|
@@ -74904,6 +74910,8 @@ export interface Routes {
|
|
|
74904
74910
|
instant_key_url?: string | undefined
|
|
74905
74911
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
74906
74912
|
is_encoding_required?: boolean | undefined
|
|
74913
|
+
/** The actual PIN code for code access methods. */
|
|
74914
|
+
code?: string | undefined
|
|
74907
74915
|
}>
|
|
74908
74916
|
}
|
|
74909
74917
|
}
|
package/lib/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './seam/connect/index.js';
|
package/lib/index.js
DELETED
package/lib/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA"}
|
package/src/lib/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './seam/connect/index.js'
|