@seamapi/types 1.474.0 → 1.475.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 +391 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +620 -1
- package/dist/index.cjs +391 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +21 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +9 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +520 -0
- package/lib/seam/connect/openapi.js +383 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +78 -0
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +11 -0
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +383 -0
- package/src/lib/seam/connect/route-types.ts +78 -0
- package/src/lib/seam/connect/schemas.ts +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const customization_profile: z.ZodObject<{
|
|
3
|
+
workspace_id: z.ZodString;
|
|
4
|
+
customization_profile_id: z.ZodString;
|
|
5
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
6
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
7
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
workspace_id: string;
|
|
10
|
+
customization_profile_id: string;
|
|
11
|
+
logo_url?: string | undefined;
|
|
12
|
+
primary_color?: string | undefined;
|
|
13
|
+
secondary_color?: string | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
workspace_id: string;
|
|
16
|
+
customization_profile_id: string;
|
|
17
|
+
logo_url?: string | undefined;
|
|
18
|
+
primary_color?: string | undefined;
|
|
19
|
+
secondary_color?: string | undefined;
|
|
20
|
+
}>;
|
|
21
|
+
export type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const customization_profile = z.object({
|
|
3
|
+
workspace_id: z.string().uuid(),
|
|
4
|
+
customization_profile_id: z.string().uuid(),
|
|
5
|
+
logo_url: z.string().optional(),
|
|
6
|
+
primary_color: z.string().optional(),
|
|
7
|
+
secondary_color: z.string().optional(),
|
|
8
|
+
});
|
|
9
|
+
//# sourceMappingURL=customization_profile.js.map
|
|
@@ -0,0 +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,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAA"}
|
|
@@ -13,6 +13,7 @@ export * from './customer/access-grant-resources.js';
|
|
|
13
13
|
export * from './customer/index.js';
|
|
14
14
|
export * from './customer/location-resources.js';
|
|
15
15
|
export * from './customer/user-identity-resources.js';
|
|
16
|
+
export * from './customization_profiles/customization_profile.js';
|
|
16
17
|
export * from './devices/index.js';
|
|
17
18
|
export * from './events/index.js';
|
|
18
19
|
export * from './instant-keys/index.js';
|
|
@@ -13,6 +13,7 @@ export * from './customer/access-grant-resources.js';
|
|
|
13
13
|
export * from './customer/index.js';
|
|
14
14
|
export * from './customer/location-resources.js';
|
|
15
15
|
export * from './customer/user-identity-resources.js';
|
|
16
|
+
export * from './customization_profiles/customization_profile.js';
|
|
16
17
|
export * from './devices/index.js';
|
|
17
18
|
export * from './events/index.js';
|
|
18
19
|
export * from './instant-keys/index.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sCAAsC,CAAA;AACpD,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,uCAAuC,CAAA;AACrD,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,mBAAmB,CAAA;AACjC,cAAc,0BAA0B,CAAA;AACxC,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sCAAsC,CAAA;AACpD,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,uCAAuC,CAAA;AACrD,cAAc,mDAAmD,CAAA;AACjE,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,mBAAmB,CAAA;AACjC,cAAc,0BAA0B,CAAA;AACxC,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
|
|
@@ -47700,6 +47700,526 @@ declare const _default: {
|
|
|
47700
47700
|
'x-title': string;
|
|
47701
47701
|
};
|
|
47702
47702
|
};
|
|
47703
|
+
'/workspaces/customization_profiles/create': {
|
|
47704
|
+
post: {
|
|
47705
|
+
description: string;
|
|
47706
|
+
operationId: string;
|
|
47707
|
+
requestBody: {
|
|
47708
|
+
content: {
|
|
47709
|
+
'application/json': {
|
|
47710
|
+
schema: {
|
|
47711
|
+
properties: {
|
|
47712
|
+
primary_color: {
|
|
47713
|
+
type: string;
|
|
47714
|
+
};
|
|
47715
|
+
secondary_color: {
|
|
47716
|
+
type: string;
|
|
47717
|
+
};
|
|
47718
|
+
};
|
|
47719
|
+
required: string[];
|
|
47720
|
+
type: string;
|
|
47721
|
+
};
|
|
47722
|
+
};
|
|
47723
|
+
};
|
|
47724
|
+
};
|
|
47725
|
+
responses: {
|
|
47726
|
+
200: {
|
|
47727
|
+
content: {
|
|
47728
|
+
'application/json': {
|
|
47729
|
+
schema: {
|
|
47730
|
+
properties: {
|
|
47731
|
+
customization_profile: {
|
|
47732
|
+
properties: {
|
|
47733
|
+
customization_profile_id: {
|
|
47734
|
+
format: string;
|
|
47735
|
+
type: string;
|
|
47736
|
+
};
|
|
47737
|
+
logo_url: {
|
|
47738
|
+
type: string;
|
|
47739
|
+
};
|
|
47740
|
+
primary_color: {
|
|
47741
|
+
type: string;
|
|
47742
|
+
};
|
|
47743
|
+
secondary_color: {
|
|
47744
|
+
type: string;
|
|
47745
|
+
};
|
|
47746
|
+
workspace_id: {
|
|
47747
|
+
format: string;
|
|
47748
|
+
type: string;
|
|
47749
|
+
};
|
|
47750
|
+
};
|
|
47751
|
+
required: string[];
|
|
47752
|
+
type: string;
|
|
47753
|
+
};
|
|
47754
|
+
ok: {
|
|
47755
|
+
type: string;
|
|
47756
|
+
};
|
|
47757
|
+
};
|
|
47758
|
+
required: string[];
|
|
47759
|
+
type: string;
|
|
47760
|
+
};
|
|
47761
|
+
};
|
|
47762
|
+
};
|
|
47763
|
+
description: string;
|
|
47764
|
+
};
|
|
47765
|
+
400: {
|
|
47766
|
+
description: string;
|
|
47767
|
+
};
|
|
47768
|
+
401: {
|
|
47769
|
+
description: string;
|
|
47770
|
+
};
|
|
47771
|
+
};
|
|
47772
|
+
security: {
|
|
47773
|
+
client_session_with_customer: never[];
|
|
47774
|
+
}[];
|
|
47775
|
+
summary: string;
|
|
47776
|
+
tags: string[];
|
|
47777
|
+
'x-fern-sdk-group-name': string[];
|
|
47778
|
+
'x-fern-sdk-method-name': string;
|
|
47779
|
+
'x-fern-sdk-return-value': string;
|
|
47780
|
+
'x-response-key': string;
|
|
47781
|
+
'x-title': string;
|
|
47782
|
+
};
|
|
47783
|
+
};
|
|
47784
|
+
'/workspaces/customization_profiles/get': {
|
|
47785
|
+
get: {
|
|
47786
|
+
description: string;
|
|
47787
|
+
operationId: string;
|
|
47788
|
+
parameters: {
|
|
47789
|
+
in: string;
|
|
47790
|
+
name: string;
|
|
47791
|
+
required: boolean;
|
|
47792
|
+
schema: {
|
|
47793
|
+
format: string;
|
|
47794
|
+
type: string;
|
|
47795
|
+
};
|
|
47796
|
+
}[];
|
|
47797
|
+
responses: {
|
|
47798
|
+
200: {
|
|
47799
|
+
content: {
|
|
47800
|
+
'application/json': {
|
|
47801
|
+
schema: {
|
|
47802
|
+
properties: {
|
|
47803
|
+
customization_profile: {
|
|
47804
|
+
properties: {
|
|
47805
|
+
customization_profile_id: {
|
|
47806
|
+
format: string;
|
|
47807
|
+
type: string;
|
|
47808
|
+
};
|
|
47809
|
+
logo_url: {
|
|
47810
|
+
type: string;
|
|
47811
|
+
};
|
|
47812
|
+
primary_color: {
|
|
47813
|
+
type: string;
|
|
47814
|
+
};
|
|
47815
|
+
secondary_color: {
|
|
47816
|
+
type: string;
|
|
47817
|
+
};
|
|
47818
|
+
workspace_id: {
|
|
47819
|
+
format: string;
|
|
47820
|
+
type: string;
|
|
47821
|
+
};
|
|
47822
|
+
};
|
|
47823
|
+
required: string[];
|
|
47824
|
+
type: string;
|
|
47825
|
+
};
|
|
47826
|
+
ok: {
|
|
47827
|
+
type: string;
|
|
47828
|
+
};
|
|
47829
|
+
};
|
|
47830
|
+
required: string[];
|
|
47831
|
+
type: string;
|
|
47832
|
+
};
|
|
47833
|
+
};
|
|
47834
|
+
};
|
|
47835
|
+
description: string;
|
|
47836
|
+
};
|
|
47837
|
+
400: {
|
|
47838
|
+
description: string;
|
|
47839
|
+
};
|
|
47840
|
+
401: {
|
|
47841
|
+
description: string;
|
|
47842
|
+
};
|
|
47843
|
+
};
|
|
47844
|
+
security: {
|
|
47845
|
+
client_session_with_customer: never[];
|
|
47846
|
+
}[];
|
|
47847
|
+
summary: string;
|
|
47848
|
+
tags: string[];
|
|
47849
|
+
'x-fern-sdk-group-name': string[];
|
|
47850
|
+
'x-fern-sdk-method-name': string;
|
|
47851
|
+
'x-fern-sdk-return-value': string;
|
|
47852
|
+
'x-response-key': string;
|
|
47853
|
+
'x-title': string;
|
|
47854
|
+
};
|
|
47855
|
+
post: {
|
|
47856
|
+
description: string;
|
|
47857
|
+
operationId: string;
|
|
47858
|
+
requestBody: {
|
|
47859
|
+
content: {
|
|
47860
|
+
'application/json': {
|
|
47861
|
+
schema: {
|
|
47862
|
+
properties: {
|
|
47863
|
+
customization_profile_id: {
|
|
47864
|
+
format: string;
|
|
47865
|
+
type: string;
|
|
47866
|
+
};
|
|
47867
|
+
};
|
|
47868
|
+
required: string[];
|
|
47869
|
+
type: string;
|
|
47870
|
+
};
|
|
47871
|
+
};
|
|
47872
|
+
};
|
|
47873
|
+
};
|
|
47874
|
+
responses: {
|
|
47875
|
+
200: {
|
|
47876
|
+
content: {
|
|
47877
|
+
'application/json': {
|
|
47878
|
+
schema: {
|
|
47879
|
+
properties: {
|
|
47880
|
+
customization_profile: {
|
|
47881
|
+
properties: {
|
|
47882
|
+
customization_profile_id: {
|
|
47883
|
+
format: string;
|
|
47884
|
+
type: string;
|
|
47885
|
+
};
|
|
47886
|
+
logo_url: {
|
|
47887
|
+
type: string;
|
|
47888
|
+
};
|
|
47889
|
+
primary_color: {
|
|
47890
|
+
type: string;
|
|
47891
|
+
};
|
|
47892
|
+
secondary_color: {
|
|
47893
|
+
type: string;
|
|
47894
|
+
};
|
|
47895
|
+
workspace_id: {
|
|
47896
|
+
format: string;
|
|
47897
|
+
type: string;
|
|
47898
|
+
};
|
|
47899
|
+
};
|
|
47900
|
+
required: string[];
|
|
47901
|
+
type: string;
|
|
47902
|
+
};
|
|
47903
|
+
ok: {
|
|
47904
|
+
type: string;
|
|
47905
|
+
};
|
|
47906
|
+
};
|
|
47907
|
+
required: string[];
|
|
47908
|
+
type: string;
|
|
47909
|
+
};
|
|
47910
|
+
};
|
|
47911
|
+
};
|
|
47912
|
+
description: string;
|
|
47913
|
+
};
|
|
47914
|
+
400: {
|
|
47915
|
+
description: string;
|
|
47916
|
+
};
|
|
47917
|
+
401: {
|
|
47918
|
+
description: string;
|
|
47919
|
+
};
|
|
47920
|
+
};
|
|
47921
|
+
security: {
|
|
47922
|
+
client_session_with_customer: never[];
|
|
47923
|
+
}[];
|
|
47924
|
+
summary: string;
|
|
47925
|
+
tags: string[];
|
|
47926
|
+
'x-fern-sdk-group-name': string[];
|
|
47927
|
+
'x-fern-sdk-method-name': string;
|
|
47928
|
+
'x-fern-sdk-return-value': string;
|
|
47929
|
+
'x-response-key': string;
|
|
47930
|
+
'x-title': string;
|
|
47931
|
+
};
|
|
47932
|
+
};
|
|
47933
|
+
'/workspaces/customization_profiles/list': {
|
|
47934
|
+
get: {
|
|
47935
|
+
description: string;
|
|
47936
|
+
operationId: string;
|
|
47937
|
+
responses: {
|
|
47938
|
+
200: {
|
|
47939
|
+
content: {
|
|
47940
|
+
'application/json': {
|
|
47941
|
+
schema: {
|
|
47942
|
+
properties: {
|
|
47943
|
+
customization_profiles: {
|
|
47944
|
+
items: {
|
|
47945
|
+
properties: {
|
|
47946
|
+
customization_profile_id: {
|
|
47947
|
+
format: string;
|
|
47948
|
+
type: string;
|
|
47949
|
+
};
|
|
47950
|
+
logo_url: {
|
|
47951
|
+
type: string;
|
|
47952
|
+
};
|
|
47953
|
+
primary_color: {
|
|
47954
|
+
type: string;
|
|
47955
|
+
};
|
|
47956
|
+
secondary_color: {
|
|
47957
|
+
type: string;
|
|
47958
|
+
};
|
|
47959
|
+
workspace_id: {
|
|
47960
|
+
format: string;
|
|
47961
|
+
type: string;
|
|
47962
|
+
};
|
|
47963
|
+
};
|
|
47964
|
+
required: string[];
|
|
47965
|
+
type: string;
|
|
47966
|
+
};
|
|
47967
|
+
type: string;
|
|
47968
|
+
};
|
|
47969
|
+
ok: {
|
|
47970
|
+
type: string;
|
|
47971
|
+
};
|
|
47972
|
+
};
|
|
47973
|
+
required: string[];
|
|
47974
|
+
type: string;
|
|
47975
|
+
};
|
|
47976
|
+
};
|
|
47977
|
+
};
|
|
47978
|
+
description: string;
|
|
47979
|
+
};
|
|
47980
|
+
400: {
|
|
47981
|
+
description: string;
|
|
47982
|
+
};
|
|
47983
|
+
401: {
|
|
47984
|
+
description: string;
|
|
47985
|
+
};
|
|
47986
|
+
};
|
|
47987
|
+
security: {
|
|
47988
|
+
client_session_with_customer: never[];
|
|
47989
|
+
}[];
|
|
47990
|
+
summary: string;
|
|
47991
|
+
tags: string[];
|
|
47992
|
+
'x-fern-sdk-group-name': string[];
|
|
47993
|
+
'x-fern-sdk-method-name': string;
|
|
47994
|
+
'x-fern-sdk-return-value': string;
|
|
47995
|
+
'x-response-key': string;
|
|
47996
|
+
'x-title': string;
|
|
47997
|
+
};
|
|
47998
|
+
post: {
|
|
47999
|
+
description: string;
|
|
48000
|
+
operationId: string;
|
|
48001
|
+
responses: {
|
|
48002
|
+
200: {
|
|
48003
|
+
content: {
|
|
48004
|
+
'application/json': {
|
|
48005
|
+
schema: {
|
|
48006
|
+
properties: {
|
|
48007
|
+
customization_profiles: {
|
|
48008
|
+
items: {
|
|
48009
|
+
properties: {
|
|
48010
|
+
customization_profile_id: {
|
|
48011
|
+
format: string;
|
|
48012
|
+
type: string;
|
|
48013
|
+
};
|
|
48014
|
+
logo_url: {
|
|
48015
|
+
type: string;
|
|
48016
|
+
};
|
|
48017
|
+
primary_color: {
|
|
48018
|
+
type: string;
|
|
48019
|
+
};
|
|
48020
|
+
secondary_color: {
|
|
48021
|
+
type: string;
|
|
48022
|
+
};
|
|
48023
|
+
workspace_id: {
|
|
48024
|
+
format: string;
|
|
48025
|
+
type: string;
|
|
48026
|
+
};
|
|
48027
|
+
};
|
|
48028
|
+
required: string[];
|
|
48029
|
+
type: string;
|
|
48030
|
+
};
|
|
48031
|
+
type: string;
|
|
48032
|
+
};
|
|
48033
|
+
ok: {
|
|
48034
|
+
type: string;
|
|
48035
|
+
};
|
|
48036
|
+
};
|
|
48037
|
+
required: string[];
|
|
48038
|
+
type: string;
|
|
48039
|
+
};
|
|
48040
|
+
};
|
|
48041
|
+
};
|
|
48042
|
+
description: string;
|
|
48043
|
+
};
|
|
48044
|
+
400: {
|
|
48045
|
+
description: string;
|
|
48046
|
+
};
|
|
48047
|
+
401: {
|
|
48048
|
+
description: string;
|
|
48049
|
+
};
|
|
48050
|
+
};
|
|
48051
|
+
security: {
|
|
48052
|
+
client_session_with_customer: never[];
|
|
48053
|
+
}[];
|
|
48054
|
+
summary: string;
|
|
48055
|
+
tags: string[];
|
|
48056
|
+
'x-fern-sdk-group-name': string[];
|
|
48057
|
+
'x-fern-sdk-method-name': string;
|
|
48058
|
+
'x-fern-sdk-return-value': string;
|
|
48059
|
+
'x-response-key': string;
|
|
48060
|
+
'x-title': string;
|
|
48061
|
+
};
|
|
48062
|
+
};
|
|
48063
|
+
'/workspaces/customization_profiles/update': {
|
|
48064
|
+
patch: {
|
|
48065
|
+
description: string;
|
|
48066
|
+
operationId: string;
|
|
48067
|
+
requestBody: {
|
|
48068
|
+
content: {
|
|
48069
|
+
'application/json': {
|
|
48070
|
+
schema: {
|
|
48071
|
+
properties: {
|
|
48072
|
+
customization_profile_id: {
|
|
48073
|
+
format: string;
|
|
48074
|
+
type: string;
|
|
48075
|
+
};
|
|
48076
|
+
primary_color: {
|
|
48077
|
+
type: string;
|
|
48078
|
+
};
|
|
48079
|
+
secondary_color: {
|
|
48080
|
+
type: string;
|
|
48081
|
+
};
|
|
48082
|
+
};
|
|
48083
|
+
required: string[];
|
|
48084
|
+
type: string;
|
|
48085
|
+
};
|
|
48086
|
+
};
|
|
48087
|
+
};
|
|
48088
|
+
};
|
|
48089
|
+
responses: {
|
|
48090
|
+
200: {
|
|
48091
|
+
content: {
|
|
48092
|
+
'application/json': {
|
|
48093
|
+
schema: {
|
|
48094
|
+
properties: {
|
|
48095
|
+
ok: {
|
|
48096
|
+
type: string;
|
|
48097
|
+
};
|
|
48098
|
+
};
|
|
48099
|
+
required: string[];
|
|
48100
|
+
type: string;
|
|
48101
|
+
};
|
|
48102
|
+
};
|
|
48103
|
+
};
|
|
48104
|
+
description: string;
|
|
48105
|
+
};
|
|
48106
|
+
400: {
|
|
48107
|
+
description: string;
|
|
48108
|
+
};
|
|
48109
|
+
401: {
|
|
48110
|
+
description: string;
|
|
48111
|
+
};
|
|
48112
|
+
};
|
|
48113
|
+
security: {
|
|
48114
|
+
client_session_with_customer: never[];
|
|
48115
|
+
}[];
|
|
48116
|
+
summary: string;
|
|
48117
|
+
tags: string[];
|
|
48118
|
+
'x-fern-sdk-group-name': string[];
|
|
48119
|
+
'x-fern-sdk-method-name': string;
|
|
48120
|
+
'x-response-key': null;
|
|
48121
|
+
'x-title': string;
|
|
48122
|
+
};
|
|
48123
|
+
post: {
|
|
48124
|
+
description: string;
|
|
48125
|
+
operationId: string;
|
|
48126
|
+
requestBody: {
|
|
48127
|
+
content: {
|
|
48128
|
+
'application/json': {
|
|
48129
|
+
schema: {
|
|
48130
|
+
properties: {
|
|
48131
|
+
customization_profile_id: {
|
|
48132
|
+
format: string;
|
|
48133
|
+
type: string;
|
|
48134
|
+
};
|
|
48135
|
+
primary_color: {
|
|
48136
|
+
type: string;
|
|
48137
|
+
};
|
|
48138
|
+
secondary_color: {
|
|
48139
|
+
type: string;
|
|
48140
|
+
};
|
|
48141
|
+
};
|
|
48142
|
+
required: string[];
|
|
48143
|
+
type: string;
|
|
48144
|
+
};
|
|
48145
|
+
};
|
|
48146
|
+
};
|
|
48147
|
+
};
|
|
48148
|
+
responses: {
|
|
48149
|
+
200: {
|
|
48150
|
+
content: {
|
|
48151
|
+
'application/json': {
|
|
48152
|
+
schema: {
|
|
48153
|
+
properties: {
|
|
48154
|
+
ok: {
|
|
48155
|
+
type: string;
|
|
48156
|
+
};
|
|
48157
|
+
};
|
|
48158
|
+
required: string[];
|
|
48159
|
+
type: string;
|
|
48160
|
+
};
|
|
48161
|
+
};
|
|
48162
|
+
};
|
|
48163
|
+
description: string;
|
|
48164
|
+
};
|
|
48165
|
+
400: {
|
|
48166
|
+
description: string;
|
|
48167
|
+
};
|
|
48168
|
+
401: {
|
|
48169
|
+
description: string;
|
|
48170
|
+
};
|
|
48171
|
+
};
|
|
48172
|
+
security: {
|
|
48173
|
+
client_session_with_customer: never[];
|
|
48174
|
+
}[];
|
|
48175
|
+
summary: string;
|
|
48176
|
+
tags: string[];
|
|
48177
|
+
'x-fern-sdk-group-name': string[];
|
|
48178
|
+
'x-fern-sdk-method-name': string;
|
|
48179
|
+
'x-response-key': null;
|
|
48180
|
+
'x-title': string;
|
|
48181
|
+
};
|
|
48182
|
+
};
|
|
48183
|
+
'/workspaces/customization_profiles/upload_images': {
|
|
48184
|
+
post: {
|
|
48185
|
+
description: string;
|
|
48186
|
+
operationId: string;
|
|
48187
|
+
responses: {
|
|
48188
|
+
200: {
|
|
48189
|
+
content: {
|
|
48190
|
+
'application/json': {
|
|
48191
|
+
schema: {
|
|
48192
|
+
properties: {
|
|
48193
|
+
ok: {
|
|
48194
|
+
type: string;
|
|
48195
|
+
};
|
|
48196
|
+
};
|
|
48197
|
+
required: string[];
|
|
48198
|
+
type: string;
|
|
48199
|
+
};
|
|
48200
|
+
};
|
|
48201
|
+
};
|
|
48202
|
+
description: string;
|
|
48203
|
+
};
|
|
48204
|
+
400: {
|
|
48205
|
+
description: string;
|
|
48206
|
+
};
|
|
48207
|
+
401: {
|
|
48208
|
+
description: string;
|
|
48209
|
+
};
|
|
48210
|
+
};
|
|
48211
|
+
security: {
|
|
48212
|
+
client_session_with_customer: never[];
|
|
48213
|
+
}[];
|
|
48214
|
+
summary: string;
|
|
48215
|
+
tags: string[];
|
|
48216
|
+
'x-fern-sdk-group-name': string[];
|
|
48217
|
+
'x-fern-sdk-method-name': string;
|
|
48218
|
+
'x-response-key': null;
|
|
48219
|
+
'x-title': string;
|
|
48220
|
+
'x-undocumented': string;
|
|
48221
|
+
};
|
|
48222
|
+
};
|
|
47703
48223
|
'/workspaces/find_resources': {
|
|
47704
48224
|
get: {
|
|
47705
48225
|
description: string;
|