@seamapi/types 1.478.0 → 1.479.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 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +45 -4
- package/dist/index.cjs +20 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +4 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +2 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +33 -0
- package/lib/seam/connect/openapi.js +18 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +18 -5
- package/src/lib/seam/connect/route-types.ts +8 -3
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const customization_profile: z.ZodObject<{
|
|
3
|
-
customization_profile_id: z.ZodString;
|
|
4
3
|
workspace_id: z.ZodString;
|
|
4
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5
|
+
customization_profile_id: z.ZodString;
|
|
5
6
|
created_at: z.ZodString;
|
|
6
7
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
7
8
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
8
9
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
9
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
name: string | null;
|
|
10
12
|
workspace_id: string;
|
|
11
13
|
created_at: string;
|
|
12
14
|
customization_profile_id: string;
|
|
@@ -14,6 +16,7 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
14
16
|
primary_color?: string | undefined;
|
|
15
17
|
secondary_color?: string | undefined;
|
|
16
18
|
}, {
|
|
19
|
+
name: string | null;
|
|
17
20
|
workspace_id: string;
|
|
18
21
|
created_at: string;
|
|
19
22
|
customization_profile_id: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const customization_profile = z.object({
|
|
3
|
-
customization_profile_id: z.string().uuid(),
|
|
4
3
|
workspace_id: z.string().uuid(),
|
|
4
|
+
name: z.string().nullable(),
|
|
5
|
+
customization_profile_id: z.string().uuid(),
|
|
5
6
|
created_at: z.string().datetime(),
|
|
6
7
|
logo_url: z.string().url().optional(),
|
|
7
8
|
primary_color: z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customization_profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization_profiles/customization_profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,
|
|
1
|
+
{"version":3,"file":"customization_profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization_profiles/customization_profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -47721,6 +47721,11 @@ declare const _default: {
|
|
|
47721
47721
|
'application/json': {
|
|
47722
47722
|
schema: {
|
|
47723
47723
|
properties: {
|
|
47724
|
+
name: {
|
|
47725
|
+
default: null;
|
|
47726
|
+
nullable: boolean;
|
|
47727
|
+
type: string;
|
|
47728
|
+
};
|
|
47724
47729
|
primary_color: {
|
|
47725
47730
|
type: string;
|
|
47726
47731
|
};
|
|
@@ -47755,6 +47760,10 @@ declare const _default: {
|
|
|
47755
47760
|
format: string;
|
|
47756
47761
|
type: string;
|
|
47757
47762
|
};
|
|
47763
|
+
name: {
|
|
47764
|
+
nullable: boolean;
|
|
47765
|
+
type: string;
|
|
47766
|
+
};
|
|
47758
47767
|
primary_color: {
|
|
47759
47768
|
type: string;
|
|
47760
47769
|
};
|
|
@@ -47837,6 +47846,10 @@ declare const _default: {
|
|
|
47837
47846
|
format: string;
|
|
47838
47847
|
type: string;
|
|
47839
47848
|
};
|
|
47849
|
+
name: {
|
|
47850
|
+
nullable: boolean;
|
|
47851
|
+
type: string;
|
|
47852
|
+
};
|
|
47840
47853
|
primary_color: {
|
|
47841
47854
|
type: string;
|
|
47842
47855
|
};
|
|
@@ -47924,6 +47937,10 @@ declare const _default: {
|
|
|
47924
47937
|
format: string;
|
|
47925
47938
|
type: string;
|
|
47926
47939
|
};
|
|
47940
|
+
name: {
|
|
47941
|
+
nullable: boolean;
|
|
47942
|
+
type: string;
|
|
47943
|
+
};
|
|
47927
47944
|
primary_color: {
|
|
47928
47945
|
type: string;
|
|
47929
47946
|
};
|
|
@@ -47998,6 +48015,10 @@ declare const _default: {
|
|
|
47998
48015
|
format: string;
|
|
47999
48016
|
type: string;
|
|
48000
48017
|
};
|
|
48018
|
+
name: {
|
|
48019
|
+
nullable: boolean;
|
|
48020
|
+
type: string;
|
|
48021
|
+
};
|
|
48001
48022
|
primary_color: {
|
|
48002
48023
|
type: string;
|
|
48003
48024
|
};
|
|
@@ -48072,6 +48093,10 @@ declare const _default: {
|
|
|
48072
48093
|
format: string;
|
|
48073
48094
|
type: string;
|
|
48074
48095
|
};
|
|
48096
|
+
name: {
|
|
48097
|
+
nullable: boolean;
|
|
48098
|
+
type: string;
|
|
48099
|
+
};
|
|
48075
48100
|
primary_color: {
|
|
48076
48101
|
type: string;
|
|
48077
48102
|
};
|
|
@@ -48135,6 +48160,10 @@ declare const _default: {
|
|
|
48135
48160
|
format: string;
|
|
48136
48161
|
type: string;
|
|
48137
48162
|
};
|
|
48163
|
+
name: {
|
|
48164
|
+
nullable: boolean;
|
|
48165
|
+
type: string;
|
|
48166
|
+
};
|
|
48138
48167
|
primary_color: {
|
|
48139
48168
|
type: string;
|
|
48140
48169
|
};
|
|
@@ -48195,6 +48224,10 @@ declare const _default: {
|
|
|
48195
48224
|
format: string;
|
|
48196
48225
|
type: string;
|
|
48197
48226
|
};
|
|
48227
|
+
name: {
|
|
48228
|
+
nullable: boolean;
|
|
48229
|
+
type: string;
|
|
48230
|
+
};
|
|
48198
48231
|
primary_color: {
|
|
48199
48232
|
type: string;
|
|
48200
48233
|
};
|
|
@@ -51801,6 +51801,7 @@ export default {
|
|
|
51801
51801
|
'application/json': {
|
|
51802
51802
|
schema: {
|
|
51803
51803
|
properties: {
|
|
51804
|
+
name: { default: null, nullable: true, type: 'string' },
|
|
51804
51805
|
primary_color: { type: 'string' },
|
|
51805
51806
|
secondary_color: { type: 'string' },
|
|
51806
51807
|
},
|
|
@@ -51825,13 +51826,15 @@ export default {
|
|
|
51825
51826
|
type: 'string',
|
|
51826
51827
|
},
|
|
51827
51828
|
logo_url: { format: 'uri', type: 'string' },
|
|
51829
|
+
name: { nullable: true, type: 'string' },
|
|
51828
51830
|
primary_color: { type: 'string' },
|
|
51829
51831
|
secondary_color: { type: 'string' },
|
|
51830
51832
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51831
51833
|
},
|
|
51832
51834
|
required: [
|
|
51833
|
-
'customization_profile_id',
|
|
51834
51835
|
'workspace_id',
|
|
51836
|
+
'name',
|
|
51837
|
+
'customization_profile_id',
|
|
51835
51838
|
'created_at',
|
|
51836
51839
|
],
|
|
51837
51840
|
type: 'object',
|
|
@@ -51889,13 +51892,15 @@ export default {
|
|
|
51889
51892
|
type: 'string',
|
|
51890
51893
|
},
|
|
51891
51894
|
logo_url: { format: 'uri', type: 'string' },
|
|
51895
|
+
name: { nullable: true, type: 'string' },
|
|
51892
51896
|
primary_color: { type: 'string' },
|
|
51893
51897
|
secondary_color: { type: 'string' },
|
|
51894
51898
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51895
51899
|
},
|
|
51896
51900
|
required: [
|
|
51897
|
-
'customization_profile_id',
|
|
51898
51901
|
'workspace_id',
|
|
51902
|
+
'name',
|
|
51903
|
+
'customization_profile_id',
|
|
51899
51904
|
'created_at',
|
|
51900
51905
|
],
|
|
51901
51906
|
type: 'object',
|
|
@@ -51956,13 +51961,15 @@ export default {
|
|
|
51956
51961
|
type: 'string',
|
|
51957
51962
|
},
|
|
51958
51963
|
logo_url: { format: 'uri', type: 'string' },
|
|
51964
|
+
name: { nullable: true, type: 'string' },
|
|
51959
51965
|
primary_color: { type: 'string' },
|
|
51960
51966
|
secondary_color: { type: 'string' },
|
|
51961
51967
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51962
51968
|
},
|
|
51963
51969
|
required: [
|
|
51964
|
-
'customization_profile_id',
|
|
51965
51970
|
'workspace_id',
|
|
51971
|
+
'name',
|
|
51972
|
+
'customization_profile_id',
|
|
51966
51973
|
'created_at',
|
|
51967
51974
|
],
|
|
51968
51975
|
type: 'object',
|
|
@@ -52013,13 +52020,15 @@ export default {
|
|
|
52013
52020
|
type: 'string',
|
|
52014
52021
|
},
|
|
52015
52022
|
logo_url: { format: 'uri', type: 'string' },
|
|
52023
|
+
name: { nullable: true, type: 'string' },
|
|
52016
52024
|
primary_color: { type: 'string' },
|
|
52017
52025
|
secondary_color: { type: 'string' },
|
|
52018
52026
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
52019
52027
|
},
|
|
52020
52028
|
required: [
|
|
52021
|
-
'customization_profile_id',
|
|
52022
52029
|
'workspace_id',
|
|
52030
|
+
'name',
|
|
52031
|
+
'customization_profile_id',
|
|
52023
52032
|
'created_at',
|
|
52024
52033
|
],
|
|
52025
52034
|
type: 'object',
|
|
@@ -52070,13 +52079,15 @@ export default {
|
|
|
52070
52079
|
type: 'string',
|
|
52071
52080
|
},
|
|
52072
52081
|
logo_url: { format: 'uri', type: 'string' },
|
|
52082
|
+
name: { nullable: true, type: 'string' },
|
|
52073
52083
|
primary_color: { type: 'string' },
|
|
52074
52084
|
secondary_color: { type: 'string' },
|
|
52075
52085
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
52076
52086
|
},
|
|
52077
52087
|
required: [
|
|
52078
|
-
'customization_profile_id',
|
|
52079
52088
|
'workspace_id',
|
|
52089
|
+
'name',
|
|
52090
|
+
'customization_profile_id',
|
|
52080
52091
|
'created_at',
|
|
52081
52092
|
],
|
|
52082
52093
|
type: 'object',
|
|
@@ -52119,6 +52130,7 @@ export default {
|
|
|
52119
52130
|
schema: {
|
|
52120
52131
|
properties: {
|
|
52121
52132
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
52133
|
+
name: { nullable: true, type: 'string' },
|
|
52122
52134
|
primary_color: { type: 'string' },
|
|
52123
52135
|
secondary_color: { type: 'string' },
|
|
52124
52136
|
},
|
|
@@ -52162,6 +52174,7 @@ export default {
|
|
|
52162
52174
|
schema: {
|
|
52163
52175
|
properties: {
|
|
52164
52176
|
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
52177
|
+
name: { nullable: true, type: 'string' },
|
|
52165
52178
|
primary_color: { type: 'string' },
|
|
52166
52179
|
secondary_color: { type: 'string' },
|
|
52167
52180
|
},
|