@seamapi/types 1.476.0 → 1.477.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 +86 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +64 -4
- package/dist/index.cjs +86 -26
- 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 +11 -3
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +52 -0
- package/lib/seam/connect/openapi.js +63 -11
- 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 +11 -3
- package/src/lib/seam/connect/openapi.ts +64 -11
- package/src/lib/seam/connect/route-types.ts +8 -3
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const customization_profile: z.ZodObject<{
|
|
3
|
-
workspace_id: z.ZodString;
|
|
4
3
|
customization_profile_id: z.ZodString;
|
|
4
|
+
workspace_id: z.ZodString;
|
|
5
|
+
created_at: z.ZodString;
|
|
5
6
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
6
7
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
7
8
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
8
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
workspace_id: string;
|
|
11
|
+
created_at: string;
|
|
10
12
|
customization_profile_id: string;
|
|
11
13
|
logo_url?: string | undefined;
|
|
12
14
|
primary_color?: string | undefined;
|
|
13
15
|
secondary_color?: string | undefined;
|
|
14
16
|
}, {
|
|
15
17
|
workspace_id: string;
|
|
18
|
+
created_at: string;
|
|
16
19
|
customization_profile_id: string;
|
|
17
20
|
logo_url?: string | undefined;
|
|
18
21
|
primary_color?: string | undefined;
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export const customization_profile = z.object({
|
|
3
|
-
workspace_id: z.string().uuid(),
|
|
4
3
|
customization_profile_id: z.string().uuid(),
|
|
5
|
-
|
|
4
|
+
workspace_id: z.string().uuid(),
|
|
5
|
+
created_at: z.string().datetime(),
|
|
6
|
+
logo_url: z.string().url().optional(),
|
|
6
7
|
primary_color: z.string().optional(),
|
|
7
8
|
secondary_color: z.string().optional(),
|
|
8
|
-
})
|
|
9
|
+
}).describe(`
|
|
10
|
+
---
|
|
11
|
+
title: Customization Profile
|
|
12
|
+
undocumented: Unreleased.
|
|
13
|
+
route_path: /workspaces/customization_profiles
|
|
14
|
+
---
|
|
15
|
+
A customization profile.
|
|
16
|
+
`);
|
|
9
17
|
//# sourceMappingURL=customization_profile.js.map
|
|
@@ -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,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,
|
|
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,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,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"}
|
|
@@ -47729,12 +47729,18 @@ declare const _default: {
|
|
|
47729
47729
|
schema: {
|
|
47730
47730
|
properties: {
|
|
47731
47731
|
customization_profile: {
|
|
47732
|
+
description: string;
|
|
47732
47733
|
properties: {
|
|
47734
|
+
created_at: {
|
|
47735
|
+
format: string;
|
|
47736
|
+
type: string;
|
|
47737
|
+
};
|
|
47733
47738
|
customization_profile_id: {
|
|
47734
47739
|
format: string;
|
|
47735
47740
|
type: string;
|
|
47736
47741
|
};
|
|
47737
47742
|
logo_url: {
|
|
47743
|
+
format: string;
|
|
47738
47744
|
type: string;
|
|
47739
47745
|
};
|
|
47740
47746
|
primary_color: {
|
|
@@ -47750,6 +47756,9 @@ declare const _default: {
|
|
|
47750
47756
|
};
|
|
47751
47757
|
required: string[];
|
|
47752
47758
|
type: string;
|
|
47759
|
+
'x-route-path': string;
|
|
47760
|
+
'x-title': string;
|
|
47761
|
+
'x-undocumented': string;
|
|
47753
47762
|
};
|
|
47754
47763
|
ok: {
|
|
47755
47764
|
type: string;
|
|
@@ -47779,6 +47788,7 @@ declare const _default: {
|
|
|
47779
47788
|
'x-fern-sdk-return-value': string;
|
|
47780
47789
|
'x-response-key': string;
|
|
47781
47790
|
'x-title': string;
|
|
47791
|
+
'x-undocumented': string;
|
|
47782
47792
|
};
|
|
47783
47793
|
};
|
|
47784
47794
|
'/workspaces/customization_profiles/get': {
|
|
@@ -47801,12 +47811,18 @@ declare const _default: {
|
|
|
47801
47811
|
schema: {
|
|
47802
47812
|
properties: {
|
|
47803
47813
|
customization_profile: {
|
|
47814
|
+
description: string;
|
|
47804
47815
|
properties: {
|
|
47816
|
+
created_at: {
|
|
47817
|
+
format: string;
|
|
47818
|
+
type: string;
|
|
47819
|
+
};
|
|
47805
47820
|
customization_profile_id: {
|
|
47806
47821
|
format: string;
|
|
47807
47822
|
type: string;
|
|
47808
47823
|
};
|
|
47809
47824
|
logo_url: {
|
|
47825
|
+
format: string;
|
|
47810
47826
|
type: string;
|
|
47811
47827
|
};
|
|
47812
47828
|
primary_color: {
|
|
@@ -47822,6 +47838,9 @@ declare const _default: {
|
|
|
47822
47838
|
};
|
|
47823
47839
|
required: string[];
|
|
47824
47840
|
type: string;
|
|
47841
|
+
'x-route-path': string;
|
|
47842
|
+
'x-title': string;
|
|
47843
|
+
'x-undocumented': string;
|
|
47825
47844
|
};
|
|
47826
47845
|
ok: {
|
|
47827
47846
|
type: string;
|
|
@@ -47851,6 +47870,7 @@ declare const _default: {
|
|
|
47851
47870
|
'x-fern-sdk-return-value': string;
|
|
47852
47871
|
'x-response-key': string;
|
|
47853
47872
|
'x-title': string;
|
|
47873
|
+
'x-undocumented': string;
|
|
47854
47874
|
};
|
|
47855
47875
|
post: {
|
|
47856
47876
|
description: string;
|
|
@@ -47878,12 +47898,18 @@ declare const _default: {
|
|
|
47878
47898
|
schema: {
|
|
47879
47899
|
properties: {
|
|
47880
47900
|
customization_profile: {
|
|
47901
|
+
description: string;
|
|
47881
47902
|
properties: {
|
|
47903
|
+
created_at: {
|
|
47904
|
+
format: string;
|
|
47905
|
+
type: string;
|
|
47906
|
+
};
|
|
47882
47907
|
customization_profile_id: {
|
|
47883
47908
|
format: string;
|
|
47884
47909
|
type: string;
|
|
47885
47910
|
};
|
|
47886
47911
|
logo_url: {
|
|
47912
|
+
format: string;
|
|
47887
47913
|
type: string;
|
|
47888
47914
|
};
|
|
47889
47915
|
primary_color: {
|
|
@@ -47899,6 +47925,9 @@ declare const _default: {
|
|
|
47899
47925
|
};
|
|
47900
47926
|
required: string[];
|
|
47901
47927
|
type: string;
|
|
47928
|
+
'x-route-path': string;
|
|
47929
|
+
'x-title': string;
|
|
47930
|
+
'x-undocumented': string;
|
|
47902
47931
|
};
|
|
47903
47932
|
ok: {
|
|
47904
47933
|
type: string;
|
|
@@ -47928,6 +47957,7 @@ declare const _default: {
|
|
|
47928
47957
|
'x-fern-sdk-return-value': string;
|
|
47929
47958
|
'x-response-key': string;
|
|
47930
47959
|
'x-title': string;
|
|
47960
|
+
'x-undocumented': string;
|
|
47931
47961
|
};
|
|
47932
47962
|
};
|
|
47933
47963
|
'/workspaces/customization_profiles/list': {
|
|
@@ -47942,12 +47972,18 @@ declare const _default: {
|
|
|
47942
47972
|
properties: {
|
|
47943
47973
|
customization_profiles: {
|
|
47944
47974
|
items: {
|
|
47975
|
+
description: string;
|
|
47945
47976
|
properties: {
|
|
47977
|
+
created_at: {
|
|
47978
|
+
format: string;
|
|
47979
|
+
type: string;
|
|
47980
|
+
};
|
|
47946
47981
|
customization_profile_id: {
|
|
47947
47982
|
format: string;
|
|
47948
47983
|
type: string;
|
|
47949
47984
|
};
|
|
47950
47985
|
logo_url: {
|
|
47986
|
+
format: string;
|
|
47951
47987
|
type: string;
|
|
47952
47988
|
};
|
|
47953
47989
|
primary_color: {
|
|
@@ -47963,6 +47999,9 @@ declare const _default: {
|
|
|
47963
47999
|
};
|
|
47964
48000
|
required: string[];
|
|
47965
48001
|
type: string;
|
|
48002
|
+
'x-route-path': string;
|
|
48003
|
+
'x-title': string;
|
|
48004
|
+
'x-undocumented': string;
|
|
47966
48005
|
};
|
|
47967
48006
|
type: string;
|
|
47968
48007
|
};
|
|
@@ -47994,6 +48033,7 @@ declare const _default: {
|
|
|
47994
48033
|
'x-fern-sdk-return-value': string;
|
|
47995
48034
|
'x-response-key': string;
|
|
47996
48035
|
'x-title': string;
|
|
48036
|
+
'x-undocumented': string;
|
|
47997
48037
|
};
|
|
47998
48038
|
post: {
|
|
47999
48039
|
description: string;
|
|
@@ -48006,12 +48046,18 @@ declare const _default: {
|
|
|
48006
48046
|
properties: {
|
|
48007
48047
|
customization_profiles: {
|
|
48008
48048
|
items: {
|
|
48049
|
+
description: string;
|
|
48009
48050
|
properties: {
|
|
48051
|
+
created_at: {
|
|
48052
|
+
format: string;
|
|
48053
|
+
type: string;
|
|
48054
|
+
};
|
|
48010
48055
|
customization_profile_id: {
|
|
48011
48056
|
format: string;
|
|
48012
48057
|
type: string;
|
|
48013
48058
|
};
|
|
48014
48059
|
logo_url: {
|
|
48060
|
+
format: string;
|
|
48015
48061
|
type: string;
|
|
48016
48062
|
};
|
|
48017
48063
|
primary_color: {
|
|
@@ -48027,6 +48073,9 @@ declare const _default: {
|
|
|
48027
48073
|
};
|
|
48028
48074
|
required: string[];
|
|
48029
48075
|
type: string;
|
|
48076
|
+
'x-route-path': string;
|
|
48077
|
+
'x-title': string;
|
|
48078
|
+
'x-undocumented': string;
|
|
48030
48079
|
};
|
|
48031
48080
|
type: string;
|
|
48032
48081
|
};
|
|
@@ -48058,6 +48107,7 @@ declare const _default: {
|
|
|
48058
48107
|
'x-fern-sdk-return-value': string;
|
|
48059
48108
|
'x-response-key': string;
|
|
48060
48109
|
'x-title': string;
|
|
48110
|
+
'x-undocumented': string;
|
|
48061
48111
|
};
|
|
48062
48112
|
};
|
|
48063
48113
|
'/workspaces/customization_profiles/update': {
|
|
@@ -48119,6 +48169,7 @@ declare const _default: {
|
|
|
48119
48169
|
'x-fern-sdk-method-name': string;
|
|
48120
48170
|
'x-response-key': null;
|
|
48121
48171
|
'x-title': string;
|
|
48172
|
+
'x-undocumented': string;
|
|
48122
48173
|
};
|
|
48123
48174
|
post: {
|
|
48124
48175
|
description: string;
|
|
@@ -48178,6 +48229,7 @@ declare const _default: {
|
|
|
48178
48229
|
'x-fern-sdk-method-name': string;
|
|
48179
48230
|
'x-response-key': null;
|
|
48180
48231
|
'x-title': string;
|
|
48232
|
+
'x-undocumented': string;
|
|
48181
48233
|
};
|
|
48182
48234
|
};
|
|
48183
48235
|
'/workspaces/customization_profiles/upload_images': {
|
|
@@ -51809,18 +51809,27 @@ export default {
|
|
|
51809
51809
|
schema: {
|
|
51810
51810
|
properties: {
|
|
51811
51811
|
customization_profile: {
|
|
51812
|
+
description: 'A customization profile.',
|
|
51812
51813
|
properties: {
|
|
51814
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
51813
51815
|
customization_profile_id: {
|
|
51814
51816
|
format: 'uuid',
|
|
51815
51817
|
type: 'string',
|
|
51816
51818
|
},
|
|
51817
|
-
logo_url: { type: 'string' },
|
|
51819
|
+
logo_url: { format: 'uri', type: 'string' },
|
|
51818
51820
|
primary_color: { type: 'string' },
|
|
51819
51821
|
secondary_color: { type: 'string' },
|
|
51820
51822
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51821
51823
|
},
|
|
51822
|
-
required: [
|
|
51824
|
+
required: [
|
|
51825
|
+
'customization_profile_id',
|
|
51826
|
+
'workspace_id',
|
|
51827
|
+
'created_at',
|
|
51828
|
+
],
|
|
51823
51829
|
type: 'object',
|
|
51830
|
+
'x-route-path': '/workspaces/customization_profiles',
|
|
51831
|
+
'x-title': 'Customization Profile',
|
|
51832
|
+
'x-undocumented': 'Unreleased.',
|
|
51824
51833
|
},
|
|
51825
51834
|
ok: { type: 'boolean' },
|
|
51826
51835
|
},
|
|
@@ -51842,6 +51851,7 @@ export default {
|
|
|
51842
51851
|
'x-fern-sdk-return-value': 'customization_profile',
|
|
51843
51852
|
'x-response-key': 'customization_profile',
|
|
51844
51853
|
'x-title': 'Update Customization Profile',
|
|
51854
|
+
'x-undocumented': 'Unreleased.',
|
|
51845
51855
|
},
|
|
51846
51856
|
},
|
|
51847
51857
|
'/workspaces/customization_profiles/get': {
|
|
@@ -51863,18 +51873,27 @@ export default {
|
|
|
51863
51873
|
schema: {
|
|
51864
51874
|
properties: {
|
|
51865
51875
|
customization_profile: {
|
|
51876
|
+
description: 'A customization profile.',
|
|
51866
51877
|
properties: {
|
|
51878
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
51867
51879
|
customization_profile_id: {
|
|
51868
51880
|
format: 'uuid',
|
|
51869
51881
|
type: 'string',
|
|
51870
51882
|
},
|
|
51871
|
-
logo_url: { type: 'string' },
|
|
51883
|
+
logo_url: { format: 'uri', type: 'string' },
|
|
51872
51884
|
primary_color: { type: 'string' },
|
|
51873
51885
|
secondary_color: { type: 'string' },
|
|
51874
51886
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51875
51887
|
},
|
|
51876
|
-
required: [
|
|
51888
|
+
required: [
|
|
51889
|
+
'customization_profile_id',
|
|
51890
|
+
'workspace_id',
|
|
51891
|
+
'created_at',
|
|
51892
|
+
],
|
|
51877
51893
|
type: 'object',
|
|
51894
|
+
'x-route-path': '/workspaces/customization_profiles',
|
|
51895
|
+
'x-title': 'Customization Profile',
|
|
51896
|
+
'x-undocumented': 'Unreleased.',
|
|
51878
51897
|
},
|
|
51879
51898
|
ok: { type: 'boolean' },
|
|
51880
51899
|
},
|
|
@@ -51896,6 +51915,7 @@ export default {
|
|
|
51896
51915
|
'x-fern-sdk-return-value': 'customization_profile',
|
|
51897
51916
|
'x-response-key': 'customization_profile',
|
|
51898
51917
|
'x-title': 'Get Customization Profile',
|
|
51918
|
+
'x-undocumented': 'Unreleased.',
|
|
51899
51919
|
},
|
|
51900
51920
|
post: {
|
|
51901
51921
|
description: 'Retrieves the customization profile for the workspace.',
|
|
@@ -51920,18 +51940,27 @@ export default {
|
|
|
51920
51940
|
schema: {
|
|
51921
51941
|
properties: {
|
|
51922
51942
|
customization_profile: {
|
|
51943
|
+
description: 'A customization profile.',
|
|
51923
51944
|
properties: {
|
|
51945
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
51924
51946
|
customization_profile_id: {
|
|
51925
51947
|
format: 'uuid',
|
|
51926
51948
|
type: 'string',
|
|
51927
51949
|
},
|
|
51928
|
-
logo_url: { type: 'string' },
|
|
51950
|
+
logo_url: { format: 'uri', type: 'string' },
|
|
51929
51951
|
primary_color: { type: 'string' },
|
|
51930
51952
|
secondary_color: { type: 'string' },
|
|
51931
51953
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51932
51954
|
},
|
|
51933
|
-
required: [
|
|
51955
|
+
required: [
|
|
51956
|
+
'customization_profile_id',
|
|
51957
|
+
'workspace_id',
|
|
51958
|
+
'created_at',
|
|
51959
|
+
],
|
|
51934
51960
|
type: 'object',
|
|
51961
|
+
'x-route-path': '/workspaces/customization_profiles',
|
|
51962
|
+
'x-title': 'Customization Profile',
|
|
51963
|
+
'x-undocumented': 'Unreleased.',
|
|
51935
51964
|
},
|
|
51936
51965
|
ok: { type: 'boolean' },
|
|
51937
51966
|
},
|
|
@@ -51953,6 +51982,7 @@ export default {
|
|
|
51953
51982
|
'x-fern-sdk-return-value': 'customization_profile',
|
|
51954
51983
|
'x-response-key': 'customization_profile',
|
|
51955
51984
|
'x-title': 'Get Customization Profile',
|
|
51985
|
+
'x-undocumented': 'Unreleased.',
|
|
51956
51986
|
},
|
|
51957
51987
|
},
|
|
51958
51988
|
'/workspaces/customization_profiles/list': {
|
|
@@ -51967,18 +51997,27 @@ export default {
|
|
|
51967
51997
|
properties: {
|
|
51968
51998
|
customization_profiles: {
|
|
51969
51999
|
items: {
|
|
52000
|
+
description: 'A customization profile.',
|
|
51970
52001
|
properties: {
|
|
52002
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
51971
52003
|
customization_profile_id: {
|
|
51972
52004
|
format: 'uuid',
|
|
51973
52005
|
type: 'string',
|
|
51974
52006
|
},
|
|
51975
|
-
logo_url: { type: 'string' },
|
|
52007
|
+
logo_url: { format: 'uri', type: 'string' },
|
|
51976
52008
|
primary_color: { type: 'string' },
|
|
51977
52009
|
secondary_color: { type: 'string' },
|
|
51978
52010
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
51979
52011
|
},
|
|
51980
|
-
required: [
|
|
52012
|
+
required: [
|
|
52013
|
+
'customization_profile_id',
|
|
52014
|
+
'workspace_id',
|
|
52015
|
+
'created_at',
|
|
52016
|
+
],
|
|
51981
52017
|
type: 'object',
|
|
52018
|
+
'x-route-path': '/workspaces/customization_profiles',
|
|
52019
|
+
'x-title': 'Customization Profile',
|
|
52020
|
+
'x-undocumented': 'Unreleased.',
|
|
51982
52021
|
},
|
|
51983
52022
|
type: 'array',
|
|
51984
52023
|
},
|
|
@@ -52002,6 +52041,7 @@ export default {
|
|
|
52002
52041
|
'x-fern-sdk-return-value': 'customization_profiles',
|
|
52003
52042
|
'x-response-key': 'customization_profiles',
|
|
52004
52043
|
'x-title': 'Get Customization Profile',
|
|
52044
|
+
'x-undocumented': 'Unreleased.',
|
|
52005
52045
|
},
|
|
52006
52046
|
post: {
|
|
52007
52047
|
description: 'Retrieves the customization profile for the workspace.',
|
|
@@ -52014,18 +52054,27 @@ export default {
|
|
|
52014
52054
|
properties: {
|
|
52015
52055
|
customization_profiles: {
|
|
52016
52056
|
items: {
|
|
52057
|
+
description: 'A customization profile.',
|
|
52017
52058
|
properties: {
|
|
52059
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
52018
52060
|
customization_profile_id: {
|
|
52019
52061
|
format: 'uuid',
|
|
52020
52062
|
type: 'string',
|
|
52021
52063
|
},
|
|
52022
|
-
logo_url: { type: 'string' },
|
|
52064
|
+
logo_url: { format: 'uri', type: 'string' },
|
|
52023
52065
|
primary_color: { type: 'string' },
|
|
52024
52066
|
secondary_color: { type: 'string' },
|
|
52025
52067
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
52026
52068
|
},
|
|
52027
|
-
required: [
|
|
52069
|
+
required: [
|
|
52070
|
+
'customization_profile_id',
|
|
52071
|
+
'workspace_id',
|
|
52072
|
+
'created_at',
|
|
52073
|
+
],
|
|
52028
52074
|
type: 'object',
|
|
52075
|
+
'x-route-path': '/workspaces/customization_profiles',
|
|
52076
|
+
'x-title': 'Customization Profile',
|
|
52077
|
+
'x-undocumented': 'Unreleased.',
|
|
52029
52078
|
},
|
|
52030
52079
|
type: 'array',
|
|
52031
52080
|
},
|
|
@@ -52049,6 +52098,7 @@ export default {
|
|
|
52049
52098
|
'x-fern-sdk-return-value': 'customization_profiles',
|
|
52050
52099
|
'x-response-key': 'customization_profiles',
|
|
52051
52100
|
'x-title': 'Get Customization Profile',
|
|
52101
|
+
'x-undocumented': 'Unreleased.',
|
|
52052
52102
|
},
|
|
52053
52103
|
},
|
|
52054
52104
|
'/workspaces/customization_profiles/update': {
|
|
@@ -52093,6 +52143,7 @@ export default {
|
|
|
52093
52143
|
'x-fern-sdk-method-name': 'update',
|
|
52094
52144
|
'x-response-key': null,
|
|
52095
52145
|
'x-title': 'Update Customization Profile',
|
|
52146
|
+
'x-undocumented': 'Unreleased.',
|
|
52096
52147
|
},
|
|
52097
52148
|
post: {
|
|
52098
52149
|
description: 'Updates the customization profile for the workspace.',
|
|
@@ -52135,6 +52186,7 @@ export default {
|
|
|
52135
52186
|
'x-fern-sdk-method-name': 'update',
|
|
52136
52187
|
'x-response-key': null,
|
|
52137
52188
|
'x-title': 'Update Customization Profile',
|
|
52189
|
+
'x-undocumented': 'Unreleased.',
|
|
52138
52190
|
},
|
|
52139
52191
|
},
|
|
52140
52192
|
'/workspaces/customization_profiles/upload_images': {
|
|
@@ -52164,7 +52216,7 @@ export default {
|
|
|
52164
52216
|
'x-fern-sdk-method-name': 'upload_images',
|
|
52165
52217
|
'x-response-key': null,
|
|
52166
52218
|
'x-title': 'Upload Customization Profile Logo',
|
|
52167
|
-
'x-undocumented': 'Internal endpoint for
|
|
52219
|
+
'x-undocumented': 'Internal form-data endpoint for Console and Customer Portal.',
|
|
52168
52220
|
},
|
|
52169
52221
|
},
|
|
52170
52222
|
'/workspaces/find_resources': {
|