@seamapi/types 1.478.0 → 1.480.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 +76 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +285 -20
- package/dist/index.cjs +76 -14
- 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 +273 -16
- package/lib/seam/connect/openapi.js +74 -13
- 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 +74 -13
- package/src/lib/seam/connect/route-types.ts +8 -3
package/dist/connect.d.cts
CHANGED
|
@@ -29098,13 +29098,15 @@ declare const custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString,
|
|
|
29098
29098
|
type CustomMetadata = z.output<typeof custom_metadata>;
|
|
29099
29099
|
|
|
29100
29100
|
declare const customization_profile: z.ZodObject<{
|
|
29101
|
-
customization_profile_id: z.ZodString;
|
|
29102
29101
|
workspace_id: z.ZodString;
|
|
29102
|
+
name: z.ZodNullable<z.ZodString>;
|
|
29103
|
+
customization_profile_id: z.ZodString;
|
|
29103
29104
|
created_at: z.ZodString;
|
|
29104
29105
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
29105
29106
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
29106
29107
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
29107
29108
|
}, "strip", z.ZodTypeAny, {
|
|
29109
|
+
name: string | null;
|
|
29108
29110
|
workspace_id: string;
|
|
29109
29111
|
created_at: string;
|
|
29110
29112
|
customization_profile_id: string;
|
|
@@ -29112,6 +29114,7 @@ declare const customization_profile: z.ZodObject<{
|
|
|
29112
29114
|
primary_color?: string | undefined;
|
|
29113
29115
|
secondary_color?: string | undefined;
|
|
29114
29116
|
}, {
|
|
29117
|
+
name: string | null;
|
|
29115
29118
|
workspace_id: string;
|
|
29116
29119
|
created_at: string;
|
|
29117
29120
|
customization_profile_id: string;
|
|
@@ -88465,6 +88468,11 @@ declare const _default: {
|
|
|
88465
88468
|
'application/json': {
|
|
88466
88469
|
schema: {
|
|
88467
88470
|
properties: {
|
|
88471
|
+
name: {
|
|
88472
|
+
default: null;
|
|
88473
|
+
nullable: boolean;
|
|
88474
|
+
type: string;
|
|
88475
|
+
};
|
|
88468
88476
|
primary_color: {
|
|
88469
88477
|
type: string;
|
|
88470
88478
|
};
|
|
@@ -88499,6 +88507,10 @@ declare const _default: {
|
|
|
88499
88507
|
format: string;
|
|
88500
88508
|
type: string;
|
|
88501
88509
|
};
|
|
88510
|
+
name: {
|
|
88511
|
+
nullable: boolean;
|
|
88512
|
+
type: string;
|
|
88513
|
+
};
|
|
88502
88514
|
primary_color: {
|
|
88503
88515
|
type: string;
|
|
88504
88516
|
};
|
|
@@ -88534,9 +88546,37 @@ declare const _default: {
|
|
|
88534
88546
|
description: string;
|
|
88535
88547
|
};
|
|
88536
88548
|
};
|
|
88537
|
-
security: {
|
|
88549
|
+
security: ({
|
|
88550
|
+
client_session: never[];
|
|
88551
|
+
client_session_with_customer?: never;
|
|
88552
|
+
pat_with_workspace?: never;
|
|
88553
|
+
console_session_with_workspace?: never;
|
|
88554
|
+
api_key?: never;
|
|
88555
|
+
} | {
|
|
88538
88556
|
client_session_with_customer: never[];
|
|
88539
|
-
|
|
88557
|
+
client_session?: never;
|
|
88558
|
+
pat_with_workspace?: never;
|
|
88559
|
+
console_session_with_workspace?: never;
|
|
88560
|
+
api_key?: never;
|
|
88561
|
+
} | {
|
|
88562
|
+
pat_with_workspace: never[];
|
|
88563
|
+
client_session?: never;
|
|
88564
|
+
client_session_with_customer?: never;
|
|
88565
|
+
console_session_with_workspace?: never;
|
|
88566
|
+
api_key?: never;
|
|
88567
|
+
} | {
|
|
88568
|
+
console_session_with_workspace: never[];
|
|
88569
|
+
client_session?: never;
|
|
88570
|
+
client_session_with_customer?: never;
|
|
88571
|
+
pat_with_workspace?: never;
|
|
88572
|
+
api_key?: never;
|
|
88573
|
+
} | {
|
|
88574
|
+
api_key: never[];
|
|
88575
|
+
client_session?: never;
|
|
88576
|
+
client_session_with_customer?: never;
|
|
88577
|
+
pat_with_workspace?: never;
|
|
88578
|
+
console_session_with_workspace?: never;
|
|
88579
|
+
})[];
|
|
88540
88580
|
summary: string;
|
|
88541
88581
|
tags: string[];
|
|
88542
88582
|
'x-fern-sdk-group-name': string[];
|
|
@@ -88581,6 +88621,10 @@ declare const _default: {
|
|
|
88581
88621
|
format: string;
|
|
88582
88622
|
type: string;
|
|
88583
88623
|
};
|
|
88624
|
+
name: {
|
|
88625
|
+
nullable: boolean;
|
|
88626
|
+
type: string;
|
|
88627
|
+
};
|
|
88584
88628
|
primary_color: {
|
|
88585
88629
|
type: string;
|
|
88586
88630
|
};
|
|
@@ -88616,9 +88660,37 @@ declare const _default: {
|
|
|
88616
88660
|
description: string;
|
|
88617
88661
|
};
|
|
88618
88662
|
};
|
|
88619
|
-
security: {
|
|
88663
|
+
security: ({
|
|
88664
|
+
client_session: never[];
|
|
88665
|
+
client_session_with_customer?: never;
|
|
88666
|
+
pat_with_workspace?: never;
|
|
88667
|
+
console_session_with_workspace?: never;
|
|
88668
|
+
api_key?: never;
|
|
88669
|
+
} | {
|
|
88620
88670
|
client_session_with_customer: never[];
|
|
88621
|
-
|
|
88671
|
+
client_session?: never;
|
|
88672
|
+
pat_with_workspace?: never;
|
|
88673
|
+
console_session_with_workspace?: never;
|
|
88674
|
+
api_key?: never;
|
|
88675
|
+
} | {
|
|
88676
|
+
pat_with_workspace: never[];
|
|
88677
|
+
client_session?: never;
|
|
88678
|
+
client_session_with_customer?: never;
|
|
88679
|
+
console_session_with_workspace?: never;
|
|
88680
|
+
api_key?: never;
|
|
88681
|
+
} | {
|
|
88682
|
+
console_session_with_workspace: never[];
|
|
88683
|
+
client_session?: never;
|
|
88684
|
+
client_session_with_customer?: never;
|
|
88685
|
+
pat_with_workspace?: never;
|
|
88686
|
+
api_key?: never;
|
|
88687
|
+
} | {
|
|
88688
|
+
api_key: never[];
|
|
88689
|
+
client_session?: never;
|
|
88690
|
+
client_session_with_customer?: never;
|
|
88691
|
+
pat_with_workspace?: never;
|
|
88692
|
+
console_session_with_workspace?: never;
|
|
88693
|
+
})[];
|
|
88622
88694
|
summary: string;
|
|
88623
88695
|
tags: string[];
|
|
88624
88696
|
'x-fern-sdk-group-name': string[];
|
|
@@ -88668,6 +88740,10 @@ declare const _default: {
|
|
|
88668
88740
|
format: string;
|
|
88669
88741
|
type: string;
|
|
88670
88742
|
};
|
|
88743
|
+
name: {
|
|
88744
|
+
nullable: boolean;
|
|
88745
|
+
type: string;
|
|
88746
|
+
};
|
|
88671
88747
|
primary_color: {
|
|
88672
88748
|
type: string;
|
|
88673
88749
|
};
|
|
@@ -88703,9 +88779,37 @@ declare const _default: {
|
|
|
88703
88779
|
description: string;
|
|
88704
88780
|
};
|
|
88705
88781
|
};
|
|
88706
|
-
security: {
|
|
88782
|
+
security: ({
|
|
88783
|
+
client_session: never[];
|
|
88784
|
+
client_session_with_customer?: never;
|
|
88785
|
+
pat_with_workspace?: never;
|
|
88786
|
+
console_session_with_workspace?: never;
|
|
88787
|
+
api_key?: never;
|
|
88788
|
+
} | {
|
|
88707
88789
|
client_session_with_customer: never[];
|
|
88708
|
-
|
|
88790
|
+
client_session?: never;
|
|
88791
|
+
pat_with_workspace?: never;
|
|
88792
|
+
console_session_with_workspace?: never;
|
|
88793
|
+
api_key?: never;
|
|
88794
|
+
} | {
|
|
88795
|
+
pat_with_workspace: never[];
|
|
88796
|
+
client_session?: never;
|
|
88797
|
+
client_session_with_customer?: never;
|
|
88798
|
+
console_session_with_workspace?: never;
|
|
88799
|
+
api_key?: never;
|
|
88800
|
+
} | {
|
|
88801
|
+
console_session_with_workspace: never[];
|
|
88802
|
+
client_session?: never;
|
|
88803
|
+
client_session_with_customer?: never;
|
|
88804
|
+
pat_with_workspace?: never;
|
|
88805
|
+
api_key?: never;
|
|
88806
|
+
} | {
|
|
88807
|
+
api_key: never[];
|
|
88808
|
+
client_session?: never;
|
|
88809
|
+
client_session_with_customer?: never;
|
|
88810
|
+
pat_with_workspace?: never;
|
|
88811
|
+
console_session_with_workspace?: never;
|
|
88812
|
+
})[];
|
|
88709
88813
|
summary: string;
|
|
88710
88814
|
tags: string[];
|
|
88711
88815
|
'x-fern-sdk-group-name': string[];
|
|
@@ -88742,6 +88846,10 @@ declare const _default: {
|
|
|
88742
88846
|
format: string;
|
|
88743
88847
|
type: string;
|
|
88744
88848
|
};
|
|
88849
|
+
name: {
|
|
88850
|
+
nullable: boolean;
|
|
88851
|
+
type: string;
|
|
88852
|
+
};
|
|
88745
88853
|
primary_color: {
|
|
88746
88854
|
type: string;
|
|
88747
88855
|
};
|
|
@@ -88779,9 +88887,37 @@ declare const _default: {
|
|
|
88779
88887
|
description: string;
|
|
88780
88888
|
};
|
|
88781
88889
|
};
|
|
88782
|
-
security: {
|
|
88890
|
+
security: ({
|
|
88891
|
+
client_session: never[];
|
|
88892
|
+
client_session_with_customer?: never;
|
|
88893
|
+
pat_with_workspace?: never;
|
|
88894
|
+
console_session_with_workspace?: never;
|
|
88895
|
+
api_key?: never;
|
|
88896
|
+
} | {
|
|
88783
88897
|
client_session_with_customer: never[];
|
|
88784
|
-
|
|
88898
|
+
client_session?: never;
|
|
88899
|
+
pat_with_workspace?: never;
|
|
88900
|
+
console_session_with_workspace?: never;
|
|
88901
|
+
api_key?: never;
|
|
88902
|
+
} | {
|
|
88903
|
+
pat_with_workspace: never[];
|
|
88904
|
+
client_session?: never;
|
|
88905
|
+
client_session_with_customer?: never;
|
|
88906
|
+
console_session_with_workspace?: never;
|
|
88907
|
+
api_key?: never;
|
|
88908
|
+
} | {
|
|
88909
|
+
console_session_with_workspace: never[];
|
|
88910
|
+
client_session?: never;
|
|
88911
|
+
client_session_with_customer?: never;
|
|
88912
|
+
pat_with_workspace?: never;
|
|
88913
|
+
api_key?: never;
|
|
88914
|
+
} | {
|
|
88915
|
+
api_key: never[];
|
|
88916
|
+
client_session?: never;
|
|
88917
|
+
client_session_with_customer?: never;
|
|
88918
|
+
pat_with_workspace?: never;
|
|
88919
|
+
console_session_with_workspace?: never;
|
|
88920
|
+
})[];
|
|
88785
88921
|
summary: string;
|
|
88786
88922
|
tags: string[];
|
|
88787
88923
|
'x-fern-sdk-group-name': string[];
|
|
@@ -88816,6 +88952,10 @@ declare const _default: {
|
|
|
88816
88952
|
format: string;
|
|
88817
88953
|
type: string;
|
|
88818
88954
|
};
|
|
88955
|
+
name: {
|
|
88956
|
+
nullable: boolean;
|
|
88957
|
+
type: string;
|
|
88958
|
+
};
|
|
88819
88959
|
primary_color: {
|
|
88820
88960
|
type: string;
|
|
88821
88961
|
};
|
|
@@ -88853,9 +88993,37 @@ declare const _default: {
|
|
|
88853
88993
|
description: string;
|
|
88854
88994
|
};
|
|
88855
88995
|
};
|
|
88856
|
-
security: {
|
|
88996
|
+
security: ({
|
|
88997
|
+
client_session: never[];
|
|
88998
|
+
client_session_with_customer?: never;
|
|
88999
|
+
pat_with_workspace?: never;
|
|
89000
|
+
console_session_with_workspace?: never;
|
|
89001
|
+
api_key?: never;
|
|
89002
|
+
} | {
|
|
88857
89003
|
client_session_with_customer: never[];
|
|
88858
|
-
|
|
89004
|
+
client_session?: never;
|
|
89005
|
+
pat_with_workspace?: never;
|
|
89006
|
+
console_session_with_workspace?: never;
|
|
89007
|
+
api_key?: never;
|
|
89008
|
+
} | {
|
|
89009
|
+
pat_with_workspace: never[];
|
|
89010
|
+
client_session?: never;
|
|
89011
|
+
client_session_with_customer?: never;
|
|
89012
|
+
console_session_with_workspace?: never;
|
|
89013
|
+
api_key?: never;
|
|
89014
|
+
} | {
|
|
89015
|
+
console_session_with_workspace: never[];
|
|
89016
|
+
client_session?: never;
|
|
89017
|
+
client_session_with_customer?: never;
|
|
89018
|
+
pat_with_workspace?: never;
|
|
89019
|
+
api_key?: never;
|
|
89020
|
+
} | {
|
|
89021
|
+
api_key: never[];
|
|
89022
|
+
client_session?: never;
|
|
89023
|
+
client_session_with_customer?: never;
|
|
89024
|
+
pat_with_workspace?: never;
|
|
89025
|
+
console_session_with_workspace?: never;
|
|
89026
|
+
})[];
|
|
88859
89027
|
summary: string;
|
|
88860
89028
|
tags: string[];
|
|
88861
89029
|
'x-fern-sdk-group-name': string[];
|
|
@@ -88879,6 +89047,10 @@ declare const _default: {
|
|
|
88879
89047
|
format: string;
|
|
88880
89048
|
type: string;
|
|
88881
89049
|
};
|
|
89050
|
+
name: {
|
|
89051
|
+
nullable: boolean;
|
|
89052
|
+
type: string;
|
|
89053
|
+
};
|
|
88882
89054
|
primary_color: {
|
|
88883
89055
|
type: string;
|
|
88884
89056
|
};
|
|
@@ -88916,9 +89088,37 @@ declare const _default: {
|
|
|
88916
89088
|
description: string;
|
|
88917
89089
|
};
|
|
88918
89090
|
};
|
|
88919
|
-
security: {
|
|
89091
|
+
security: ({
|
|
89092
|
+
client_session: never[];
|
|
89093
|
+
client_session_with_customer?: never;
|
|
89094
|
+
pat_with_workspace?: never;
|
|
89095
|
+
console_session_with_workspace?: never;
|
|
89096
|
+
api_key?: never;
|
|
89097
|
+
} | {
|
|
88920
89098
|
client_session_with_customer: never[];
|
|
88921
|
-
|
|
89099
|
+
client_session?: never;
|
|
89100
|
+
pat_with_workspace?: never;
|
|
89101
|
+
console_session_with_workspace?: never;
|
|
89102
|
+
api_key?: never;
|
|
89103
|
+
} | {
|
|
89104
|
+
pat_with_workspace: never[];
|
|
89105
|
+
client_session?: never;
|
|
89106
|
+
client_session_with_customer?: never;
|
|
89107
|
+
console_session_with_workspace?: never;
|
|
89108
|
+
api_key?: never;
|
|
89109
|
+
} | {
|
|
89110
|
+
console_session_with_workspace: never[];
|
|
89111
|
+
client_session?: never;
|
|
89112
|
+
client_session_with_customer?: never;
|
|
89113
|
+
pat_with_workspace?: never;
|
|
89114
|
+
api_key?: never;
|
|
89115
|
+
} | {
|
|
89116
|
+
api_key: never[];
|
|
89117
|
+
client_session?: never;
|
|
89118
|
+
client_session_with_customer?: never;
|
|
89119
|
+
pat_with_workspace?: never;
|
|
89120
|
+
console_session_with_workspace?: never;
|
|
89121
|
+
})[];
|
|
88922
89122
|
summary: string;
|
|
88923
89123
|
tags: string[];
|
|
88924
89124
|
'x-fern-sdk-group-name': string[];
|
|
@@ -88939,6 +89139,10 @@ declare const _default: {
|
|
|
88939
89139
|
format: string;
|
|
88940
89140
|
type: string;
|
|
88941
89141
|
};
|
|
89142
|
+
name: {
|
|
89143
|
+
nullable: boolean;
|
|
89144
|
+
type: string;
|
|
89145
|
+
};
|
|
88942
89146
|
primary_color: {
|
|
88943
89147
|
type: string;
|
|
88944
89148
|
};
|
|
@@ -88976,9 +89180,37 @@ declare const _default: {
|
|
|
88976
89180
|
description: string;
|
|
88977
89181
|
};
|
|
88978
89182
|
};
|
|
88979
|
-
security: {
|
|
89183
|
+
security: ({
|
|
89184
|
+
client_session: never[];
|
|
89185
|
+
client_session_with_customer?: never;
|
|
89186
|
+
pat_with_workspace?: never;
|
|
89187
|
+
console_session_with_workspace?: never;
|
|
89188
|
+
api_key?: never;
|
|
89189
|
+
} | {
|
|
88980
89190
|
client_session_with_customer: never[];
|
|
88981
|
-
|
|
89191
|
+
client_session?: never;
|
|
89192
|
+
pat_with_workspace?: never;
|
|
89193
|
+
console_session_with_workspace?: never;
|
|
89194
|
+
api_key?: never;
|
|
89195
|
+
} | {
|
|
89196
|
+
pat_with_workspace: never[];
|
|
89197
|
+
client_session?: never;
|
|
89198
|
+
client_session_with_customer?: never;
|
|
89199
|
+
console_session_with_workspace?: never;
|
|
89200
|
+
api_key?: never;
|
|
89201
|
+
} | {
|
|
89202
|
+
console_session_with_workspace: never[];
|
|
89203
|
+
client_session?: never;
|
|
89204
|
+
client_session_with_customer?: never;
|
|
89205
|
+
pat_with_workspace?: never;
|
|
89206
|
+
api_key?: never;
|
|
89207
|
+
} | {
|
|
89208
|
+
api_key: never[];
|
|
89209
|
+
client_session?: never;
|
|
89210
|
+
client_session_with_customer?: never;
|
|
89211
|
+
pat_with_workspace?: never;
|
|
89212
|
+
console_session_with_workspace?: never;
|
|
89213
|
+
})[];
|
|
88982
89214
|
summary: string;
|
|
88983
89215
|
tags: string[];
|
|
88984
89216
|
'x-fern-sdk-group-name': string[];
|
|
@@ -89016,9 +89248,37 @@ declare const _default: {
|
|
|
89016
89248
|
description: string;
|
|
89017
89249
|
};
|
|
89018
89250
|
};
|
|
89019
|
-
security: {
|
|
89251
|
+
security: ({
|
|
89252
|
+
client_session: never[];
|
|
89253
|
+
client_session_with_customer?: never;
|
|
89254
|
+
pat_with_workspace?: never;
|
|
89255
|
+
console_session_with_workspace?: never;
|
|
89256
|
+
api_key?: never;
|
|
89257
|
+
} | {
|
|
89020
89258
|
client_session_with_customer: never[];
|
|
89021
|
-
|
|
89259
|
+
client_session?: never;
|
|
89260
|
+
pat_with_workspace?: never;
|
|
89261
|
+
console_session_with_workspace?: never;
|
|
89262
|
+
api_key?: never;
|
|
89263
|
+
} | {
|
|
89264
|
+
pat_with_workspace: never[];
|
|
89265
|
+
client_session?: never;
|
|
89266
|
+
client_session_with_customer?: never;
|
|
89267
|
+
console_session_with_workspace?: never;
|
|
89268
|
+
api_key?: never;
|
|
89269
|
+
} | {
|
|
89270
|
+
console_session_with_workspace: never[];
|
|
89271
|
+
client_session?: never;
|
|
89272
|
+
client_session_with_customer?: never;
|
|
89273
|
+
pat_with_workspace?: never;
|
|
89274
|
+
api_key?: never;
|
|
89275
|
+
} | {
|
|
89276
|
+
api_key: never[];
|
|
89277
|
+
client_session?: never;
|
|
89278
|
+
client_session_with_customer?: never;
|
|
89279
|
+
pat_with_workspace?: never;
|
|
89280
|
+
console_session_with_workspace?: never;
|
|
89281
|
+
})[];
|
|
89022
89282
|
summary: string;
|
|
89023
89283
|
tags: string[];
|
|
89024
89284
|
'x-fern-sdk-group-name': string[];
|
|
@@ -165672,6 +165932,7 @@ type Routes = {
|
|
|
165672
165932
|
method: 'POST';
|
|
165673
165933
|
queryParams: {};
|
|
165674
165934
|
jsonBody: {
|
|
165935
|
+
name?: string | null;
|
|
165675
165936
|
primary_color: string;
|
|
165676
165937
|
secondary_color: string;
|
|
165677
165938
|
};
|
|
@@ -165680,8 +165941,9 @@ type Routes = {
|
|
|
165680
165941
|
jsonResponse: {
|
|
165681
165942
|
/** A customization profile. */
|
|
165682
165943
|
customization_profile: {
|
|
165683
|
-
customization_profile_id: string;
|
|
165684
165944
|
workspace_id: string;
|
|
165945
|
+
name: string | null;
|
|
165946
|
+
customization_profile_id: string;
|
|
165685
165947
|
created_at: string;
|
|
165686
165948
|
logo_url?: string | undefined;
|
|
165687
165949
|
primary_color?: string | undefined;
|
|
@@ -165701,8 +165963,9 @@ type Routes = {
|
|
|
165701
165963
|
jsonResponse: {
|
|
165702
165964
|
/** A customization profile. */
|
|
165703
165965
|
customization_profile: {
|
|
165704
|
-
customization_profile_id: string;
|
|
165705
165966
|
workspace_id: string;
|
|
165967
|
+
name: string | null;
|
|
165968
|
+
customization_profile_id: string;
|
|
165706
165969
|
created_at: string;
|
|
165707
165970
|
logo_url?: string | undefined;
|
|
165708
165971
|
primary_color?: string | undefined;
|
|
@@ -165719,8 +165982,9 @@ type Routes = {
|
|
|
165719
165982
|
formData: {};
|
|
165720
165983
|
jsonResponse: {
|
|
165721
165984
|
customization_profiles: {
|
|
165722
|
-
customization_profile_id: string;
|
|
165723
165985
|
workspace_id: string;
|
|
165986
|
+
name: string | null;
|
|
165987
|
+
customization_profile_id: string;
|
|
165724
165988
|
created_at: string;
|
|
165725
165989
|
logo_url?: string | undefined;
|
|
165726
165990
|
primary_color?: string | undefined;
|
|
@@ -165734,6 +165998,7 @@ type Routes = {
|
|
|
165734
165998
|
queryParams: {};
|
|
165735
165999
|
jsonBody: {
|
|
165736
166000
|
customization_profile_id: string;
|
|
166001
|
+
name?: (string | undefined) | null;
|
|
165737
166002
|
primary_color?: string | undefined;
|
|
165738
166003
|
secondary_color?: string | undefined;
|
|
165739
166004
|
};
|