@seamapi/types 1.287.0 → 1.287.1
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 +0 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +0 -34
- package/lib/seam/connect/openapi.d.ts +0 -30
- package/lib/seam/connect/openapi.js +0 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +0 -18
- package/src/lib/seam/connect/route-types.ts +0 -4
|
@@ -3549,13 +3549,9 @@ export interface Routes {
|
|
|
3549
3549
|
method: 'POST' | 'PATCH';
|
|
3550
3550
|
queryParams: {};
|
|
3551
3551
|
jsonBody: {
|
|
3552
|
-
allow_external_modification?: boolean | undefined;
|
|
3553
|
-
is_external_modification_allowed?: boolean | undefined;
|
|
3554
|
-
code?: string | undefined;
|
|
3555
3552
|
ends_at?: string | undefined;
|
|
3556
3553
|
starts_at?: string | undefined;
|
|
3557
3554
|
name?: string | undefined;
|
|
3558
|
-
prefer_native_scheduling?: boolean | undefined;
|
|
3559
3555
|
common_code_key: string;
|
|
3560
3556
|
};
|
|
3561
3557
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -6988,18 +6988,9 @@ export default {
|
|
|
6988
6988
|
'application/json': {
|
|
6989
6989
|
schema: {
|
|
6990
6990
|
properties: {
|
|
6991
|
-
allow_external_modification: { type: 'boolean' },
|
|
6992
|
-
code: {
|
|
6993
|
-
maxLength: 9,
|
|
6994
|
-
minLength: 4,
|
|
6995
|
-
pattern: '^\\d+$',
|
|
6996
|
-
type: 'string',
|
|
6997
|
-
},
|
|
6998
6991
|
common_code_key: { type: 'string' },
|
|
6999
6992
|
ends_at: { type: 'string' },
|
|
7000
|
-
is_external_modification_allowed: { type: 'boolean' },
|
|
7001
6993
|
name: { type: 'string' },
|
|
7002
|
-
prefer_native_scheduling: { type: 'boolean' },
|
|
7003
6994
|
starts_at: { type: 'string' },
|
|
7004
6995
|
},
|
|
7005
6996
|
required: ['common_code_key'],
|
|
@@ -7041,18 +7032,9 @@ export default {
|
|
|
7041
7032
|
'application/json': {
|
|
7042
7033
|
schema: {
|
|
7043
7034
|
properties: {
|
|
7044
|
-
allow_external_modification: { type: 'boolean' },
|
|
7045
|
-
code: {
|
|
7046
|
-
maxLength: 9,
|
|
7047
|
-
minLength: 4,
|
|
7048
|
-
pattern: '^\\d+$',
|
|
7049
|
-
type: 'string',
|
|
7050
|
-
},
|
|
7051
7035
|
common_code_key: { type: 'string' },
|
|
7052
7036
|
ends_at: { type: 'string' },
|
|
7053
|
-
is_external_modification_allowed: { type: 'boolean' },
|
|
7054
7037
|
name: { type: 'string' },
|
|
7055
|
-
prefer_native_scheduling: { type: 'boolean' },
|
|
7056
7038
|
starts_at: { type: 'string' },
|
|
7057
7039
|
},
|
|
7058
7040
|
required: ['common_code_key'],
|
|
@@ -4085,13 +4085,9 @@ export interface Routes {
|
|
|
4085
4085
|
method: 'POST' | 'PATCH'
|
|
4086
4086
|
queryParams: {}
|
|
4087
4087
|
jsonBody: {
|
|
4088
|
-
allow_external_modification?: boolean | undefined
|
|
4089
|
-
is_external_modification_allowed?: boolean | undefined
|
|
4090
|
-
code?: string | undefined
|
|
4091
4088
|
ends_at?: string | undefined
|
|
4092
4089
|
starts_at?: string | undefined
|
|
4093
4090
|
name?: string | undefined
|
|
4094
|
-
prefer_native_scheduling?: boolean | undefined
|
|
4095
4091
|
common_code_key: string
|
|
4096
4092
|
}
|
|
4097
4093
|
commonParams: {}
|