@meshery/schemas 1.3.47 → 1.3.49
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/cloudApi.d.mts +68 -7
- package/dist/cloudApi.d.ts +68 -7
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta2/credential/Credential.d.ts +45 -0
- package/dist/constructs/v1beta2/credential/CredentialSchema.js +6 -6
- package/dist/constructs/v1beta2/credential/CredentialSchema.mjs +6 -6
- package/dist/constructs/v1beta2/organization/Organization.d.ts +223 -15
- package/dist/constructs/v1beta2/organization/OrganizationSchema.js +1 -1
- package/dist/constructs/v1beta2/organization/OrganizationSchema.mjs +1 -1
- package/dist/index.d.mts +125 -8
- package/dist/index.d.ts +125 -8
- package/dist/mesheryApi.d.mts +68 -7
- package/dist/mesheryApi.d.ts +68 -7
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/dist/permissions.d.mts +4 -32
- package/dist/permissions.d.ts +4 -32
- package/dist/permissions.js +1 -1
- package/dist/permissions.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -31910,7 +31910,7 @@ interface components$6 {
|
|
|
31910
31910
|
DashboardPrefs: {
|
|
31911
31911
|
[key: string]: unknown;
|
|
31912
31912
|
};
|
|
31913
|
-
/** @description Per-organization overrides for the legal and
|
|
31913
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
31914
31914
|
Links: {
|
|
31915
31915
|
/**
|
|
31916
31916
|
* Format: uri
|
|
@@ -31926,6 +31926,32 @@ interface components$6 {
|
|
|
31926
31926
|
support?: {
|
|
31927
31927
|
[key: string]: string;
|
|
31928
31928
|
};
|
|
31929
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
31930
|
+
social?: {
|
|
31931
|
+
/**
|
|
31932
|
+
* Format: uri
|
|
31933
|
+
* @description URL of the organization's LinkedIn profile.
|
|
31934
|
+
*/
|
|
31935
|
+
linkedin?: string;
|
|
31936
|
+
/**
|
|
31937
|
+
* Format: uri
|
|
31938
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
31939
|
+
*/
|
|
31940
|
+
x?: string;
|
|
31941
|
+
};
|
|
31942
|
+
};
|
|
31943
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
31944
|
+
Social: {
|
|
31945
|
+
/**
|
|
31946
|
+
* Format: uri
|
|
31947
|
+
* @description URL of the organization's LinkedIn profile.
|
|
31948
|
+
*/
|
|
31949
|
+
linkedin?: string;
|
|
31950
|
+
/**
|
|
31951
|
+
* Format: uri
|
|
31952
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
31953
|
+
*/
|
|
31954
|
+
x?: string;
|
|
31929
31955
|
};
|
|
31930
31956
|
/** @description A single slide in the auth-page feature carousel. */
|
|
31931
31957
|
CarouselSlide: {
|
|
@@ -32039,7 +32065,7 @@ interface components$6 {
|
|
|
32039
32065
|
answer: string;
|
|
32040
32066
|
}[];
|
|
32041
32067
|
};
|
|
32042
|
-
/** @description Per-organization overrides for the legal and
|
|
32068
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32043
32069
|
links?: {
|
|
32044
32070
|
/**
|
|
32045
32071
|
* Format: uri
|
|
@@ -32055,6 +32081,19 @@ interface components$6 {
|
|
|
32055
32081
|
support?: {
|
|
32056
32082
|
[key: string]: string;
|
|
32057
32083
|
};
|
|
32084
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32085
|
+
social?: {
|
|
32086
|
+
/**
|
|
32087
|
+
* Format: uri
|
|
32088
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32089
|
+
*/
|
|
32090
|
+
linkedin?: string;
|
|
32091
|
+
/**
|
|
32092
|
+
* Format: uri
|
|
32093
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32094
|
+
*/
|
|
32095
|
+
x?: string;
|
|
32096
|
+
};
|
|
32058
32097
|
};
|
|
32059
32098
|
/**
|
|
32060
32099
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32135,7 +32174,7 @@ interface components$6 {
|
|
|
32135
32174
|
answer: string;
|
|
32136
32175
|
}[];
|
|
32137
32176
|
};
|
|
32138
|
-
/** @description Per-organization overrides for the legal and
|
|
32177
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32139
32178
|
links?: {
|
|
32140
32179
|
/**
|
|
32141
32180
|
* Format: uri
|
|
@@ -32151,6 +32190,19 @@ interface components$6 {
|
|
|
32151
32190
|
support?: {
|
|
32152
32191
|
[key: string]: string;
|
|
32153
32192
|
};
|
|
32193
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32194
|
+
social?: {
|
|
32195
|
+
/**
|
|
32196
|
+
* Format: uri
|
|
32197
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32198
|
+
*/
|
|
32199
|
+
linkedin?: string;
|
|
32200
|
+
/**
|
|
32201
|
+
* Format: uri
|
|
32202
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32203
|
+
*/
|
|
32204
|
+
x?: string;
|
|
32205
|
+
};
|
|
32154
32206
|
};
|
|
32155
32207
|
/**
|
|
32156
32208
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32291,7 +32343,7 @@ interface components$6 {
|
|
|
32291
32343
|
answer: string;
|
|
32292
32344
|
}[];
|
|
32293
32345
|
};
|
|
32294
|
-
/** @description Per-organization overrides for the legal and
|
|
32346
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32295
32347
|
links?: {
|
|
32296
32348
|
/**
|
|
32297
32349
|
* Format: uri
|
|
@@ -32307,6 +32359,19 @@ interface components$6 {
|
|
|
32307
32359
|
support?: {
|
|
32308
32360
|
[key: string]: string;
|
|
32309
32361
|
};
|
|
32362
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32363
|
+
social?: {
|
|
32364
|
+
/**
|
|
32365
|
+
* Format: uri
|
|
32366
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32367
|
+
*/
|
|
32368
|
+
linkedin?: string;
|
|
32369
|
+
/**
|
|
32370
|
+
* Format: uri
|
|
32371
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32372
|
+
*/
|
|
32373
|
+
x?: string;
|
|
32374
|
+
};
|
|
32310
32375
|
};
|
|
32311
32376
|
/**
|
|
32312
32377
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32431,7 +32496,7 @@ interface components$6 {
|
|
|
32431
32496
|
answer: string;
|
|
32432
32497
|
}[];
|
|
32433
32498
|
};
|
|
32434
|
-
/** @description Per-organization overrides for the legal and
|
|
32499
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32435
32500
|
links?: {
|
|
32436
32501
|
/**
|
|
32437
32502
|
* Format: uri
|
|
@@ -32447,6 +32512,19 @@ interface components$6 {
|
|
|
32447
32512
|
support?: {
|
|
32448
32513
|
[key: string]: string;
|
|
32449
32514
|
};
|
|
32515
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32516
|
+
social?: {
|
|
32517
|
+
/**
|
|
32518
|
+
* Format: uri
|
|
32519
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32520
|
+
*/
|
|
32521
|
+
linkedin?: string;
|
|
32522
|
+
/**
|
|
32523
|
+
* Format: uri
|
|
32524
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32525
|
+
*/
|
|
32526
|
+
x?: string;
|
|
32527
|
+
};
|
|
32450
32528
|
};
|
|
32451
32529
|
/**
|
|
32452
32530
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32572,7 +32650,7 @@ interface components$6 {
|
|
|
32572
32650
|
answer: string;
|
|
32573
32651
|
}[];
|
|
32574
32652
|
};
|
|
32575
|
-
/** @description Per-organization overrides for the legal and
|
|
32653
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32576
32654
|
links?: {
|
|
32577
32655
|
/**
|
|
32578
32656
|
* Format: uri
|
|
@@ -32588,6 +32666,19 @@ interface components$6 {
|
|
|
32588
32666
|
support?: {
|
|
32589
32667
|
[key: string]: string;
|
|
32590
32668
|
};
|
|
32669
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32670
|
+
social?: {
|
|
32671
|
+
/**
|
|
32672
|
+
* Format: uri
|
|
32673
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32674
|
+
*/
|
|
32675
|
+
linkedin?: string;
|
|
32676
|
+
/**
|
|
32677
|
+
* Format: uri
|
|
32678
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32679
|
+
*/
|
|
32680
|
+
x?: string;
|
|
32681
|
+
};
|
|
32591
32682
|
};
|
|
32592
32683
|
/**
|
|
32593
32684
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32696,7 +32787,7 @@ interface components$6 {
|
|
|
32696
32787
|
answer: string;
|
|
32697
32788
|
}[];
|
|
32698
32789
|
};
|
|
32699
|
-
/** @description Per-organization overrides for the legal and
|
|
32790
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32700
32791
|
links?: {
|
|
32701
32792
|
/**
|
|
32702
32793
|
* Format: uri
|
|
@@ -32712,6 +32803,19 @@ interface components$6 {
|
|
|
32712
32803
|
support?: {
|
|
32713
32804
|
[key: string]: string;
|
|
32714
32805
|
};
|
|
32806
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32807
|
+
social?: {
|
|
32808
|
+
/**
|
|
32809
|
+
* Format: uri
|
|
32810
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32811
|
+
*/
|
|
32812
|
+
linkedin?: string;
|
|
32813
|
+
/**
|
|
32814
|
+
* Format: uri
|
|
32815
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32816
|
+
*/
|
|
32817
|
+
x?: string;
|
|
32818
|
+
};
|
|
32715
32819
|
};
|
|
32716
32820
|
/**
|
|
32717
32821
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -33107,7 +33211,7 @@ interface components$6 {
|
|
|
33107
33211
|
answer: string;
|
|
33108
33212
|
}[];
|
|
33109
33213
|
};
|
|
33110
|
-
/** @description Per-organization overrides for the legal and
|
|
33214
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
33111
33215
|
links?: {
|
|
33112
33216
|
/**
|
|
33113
33217
|
* Format: uri
|
|
@@ -33123,6 +33227,19 @@ interface components$6 {
|
|
|
33123
33227
|
support?: {
|
|
33124
33228
|
[key: string]: string;
|
|
33125
33229
|
};
|
|
33230
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
33231
|
+
social?: {
|
|
33232
|
+
/**
|
|
33233
|
+
* Format: uri
|
|
33234
|
+
* @description URL of the organization's LinkedIn profile.
|
|
33235
|
+
*/
|
|
33236
|
+
linkedin?: string;
|
|
33237
|
+
/**
|
|
33238
|
+
* Format: uri
|
|
33239
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
33240
|
+
*/
|
|
33241
|
+
x?: string;
|
|
33242
|
+
};
|
|
33126
33243
|
};
|
|
33127
33244
|
/**
|
|
33128
33245
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
package/dist/index.d.ts
CHANGED
|
@@ -31910,7 +31910,7 @@ interface components$6 {
|
|
|
31910
31910
|
DashboardPrefs: {
|
|
31911
31911
|
[key: string]: unknown;
|
|
31912
31912
|
};
|
|
31913
|
-
/** @description Per-organization overrides for the legal and
|
|
31913
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
31914
31914
|
Links: {
|
|
31915
31915
|
/**
|
|
31916
31916
|
* Format: uri
|
|
@@ -31926,6 +31926,32 @@ interface components$6 {
|
|
|
31926
31926
|
support?: {
|
|
31927
31927
|
[key: string]: string;
|
|
31928
31928
|
};
|
|
31929
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
31930
|
+
social?: {
|
|
31931
|
+
/**
|
|
31932
|
+
* Format: uri
|
|
31933
|
+
* @description URL of the organization's LinkedIn profile.
|
|
31934
|
+
*/
|
|
31935
|
+
linkedin?: string;
|
|
31936
|
+
/**
|
|
31937
|
+
* Format: uri
|
|
31938
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
31939
|
+
*/
|
|
31940
|
+
x?: string;
|
|
31941
|
+
};
|
|
31942
|
+
};
|
|
31943
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
31944
|
+
Social: {
|
|
31945
|
+
/**
|
|
31946
|
+
* Format: uri
|
|
31947
|
+
* @description URL of the organization's LinkedIn profile.
|
|
31948
|
+
*/
|
|
31949
|
+
linkedin?: string;
|
|
31950
|
+
/**
|
|
31951
|
+
* Format: uri
|
|
31952
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
31953
|
+
*/
|
|
31954
|
+
x?: string;
|
|
31929
31955
|
};
|
|
31930
31956
|
/** @description A single slide in the auth-page feature carousel. */
|
|
31931
31957
|
CarouselSlide: {
|
|
@@ -32039,7 +32065,7 @@ interface components$6 {
|
|
|
32039
32065
|
answer: string;
|
|
32040
32066
|
}[];
|
|
32041
32067
|
};
|
|
32042
|
-
/** @description Per-organization overrides for the legal and
|
|
32068
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32043
32069
|
links?: {
|
|
32044
32070
|
/**
|
|
32045
32071
|
* Format: uri
|
|
@@ -32055,6 +32081,19 @@ interface components$6 {
|
|
|
32055
32081
|
support?: {
|
|
32056
32082
|
[key: string]: string;
|
|
32057
32083
|
};
|
|
32084
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32085
|
+
social?: {
|
|
32086
|
+
/**
|
|
32087
|
+
* Format: uri
|
|
32088
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32089
|
+
*/
|
|
32090
|
+
linkedin?: string;
|
|
32091
|
+
/**
|
|
32092
|
+
* Format: uri
|
|
32093
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32094
|
+
*/
|
|
32095
|
+
x?: string;
|
|
32096
|
+
};
|
|
32058
32097
|
};
|
|
32059
32098
|
/**
|
|
32060
32099
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32135,7 +32174,7 @@ interface components$6 {
|
|
|
32135
32174
|
answer: string;
|
|
32136
32175
|
}[];
|
|
32137
32176
|
};
|
|
32138
|
-
/** @description Per-organization overrides for the legal and
|
|
32177
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32139
32178
|
links?: {
|
|
32140
32179
|
/**
|
|
32141
32180
|
* Format: uri
|
|
@@ -32151,6 +32190,19 @@ interface components$6 {
|
|
|
32151
32190
|
support?: {
|
|
32152
32191
|
[key: string]: string;
|
|
32153
32192
|
};
|
|
32193
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32194
|
+
social?: {
|
|
32195
|
+
/**
|
|
32196
|
+
* Format: uri
|
|
32197
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32198
|
+
*/
|
|
32199
|
+
linkedin?: string;
|
|
32200
|
+
/**
|
|
32201
|
+
* Format: uri
|
|
32202
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32203
|
+
*/
|
|
32204
|
+
x?: string;
|
|
32205
|
+
};
|
|
32154
32206
|
};
|
|
32155
32207
|
/**
|
|
32156
32208
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32291,7 +32343,7 @@ interface components$6 {
|
|
|
32291
32343
|
answer: string;
|
|
32292
32344
|
}[];
|
|
32293
32345
|
};
|
|
32294
|
-
/** @description Per-organization overrides for the legal and
|
|
32346
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32295
32347
|
links?: {
|
|
32296
32348
|
/**
|
|
32297
32349
|
* Format: uri
|
|
@@ -32307,6 +32359,19 @@ interface components$6 {
|
|
|
32307
32359
|
support?: {
|
|
32308
32360
|
[key: string]: string;
|
|
32309
32361
|
};
|
|
32362
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32363
|
+
social?: {
|
|
32364
|
+
/**
|
|
32365
|
+
* Format: uri
|
|
32366
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32367
|
+
*/
|
|
32368
|
+
linkedin?: string;
|
|
32369
|
+
/**
|
|
32370
|
+
* Format: uri
|
|
32371
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32372
|
+
*/
|
|
32373
|
+
x?: string;
|
|
32374
|
+
};
|
|
32310
32375
|
};
|
|
32311
32376
|
/**
|
|
32312
32377
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32431,7 +32496,7 @@ interface components$6 {
|
|
|
32431
32496
|
answer: string;
|
|
32432
32497
|
}[];
|
|
32433
32498
|
};
|
|
32434
|
-
/** @description Per-organization overrides for the legal and
|
|
32499
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32435
32500
|
links?: {
|
|
32436
32501
|
/**
|
|
32437
32502
|
* Format: uri
|
|
@@ -32447,6 +32512,19 @@ interface components$6 {
|
|
|
32447
32512
|
support?: {
|
|
32448
32513
|
[key: string]: string;
|
|
32449
32514
|
};
|
|
32515
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32516
|
+
social?: {
|
|
32517
|
+
/**
|
|
32518
|
+
* Format: uri
|
|
32519
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32520
|
+
*/
|
|
32521
|
+
linkedin?: string;
|
|
32522
|
+
/**
|
|
32523
|
+
* Format: uri
|
|
32524
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32525
|
+
*/
|
|
32526
|
+
x?: string;
|
|
32527
|
+
};
|
|
32450
32528
|
};
|
|
32451
32529
|
/**
|
|
32452
32530
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32572,7 +32650,7 @@ interface components$6 {
|
|
|
32572
32650
|
answer: string;
|
|
32573
32651
|
}[];
|
|
32574
32652
|
};
|
|
32575
|
-
/** @description Per-organization overrides for the legal and
|
|
32653
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32576
32654
|
links?: {
|
|
32577
32655
|
/**
|
|
32578
32656
|
* Format: uri
|
|
@@ -32588,6 +32666,19 @@ interface components$6 {
|
|
|
32588
32666
|
support?: {
|
|
32589
32667
|
[key: string]: string;
|
|
32590
32668
|
};
|
|
32669
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32670
|
+
social?: {
|
|
32671
|
+
/**
|
|
32672
|
+
* Format: uri
|
|
32673
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32674
|
+
*/
|
|
32675
|
+
linkedin?: string;
|
|
32676
|
+
/**
|
|
32677
|
+
* Format: uri
|
|
32678
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32679
|
+
*/
|
|
32680
|
+
x?: string;
|
|
32681
|
+
};
|
|
32591
32682
|
};
|
|
32592
32683
|
/**
|
|
32593
32684
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -32696,7 +32787,7 @@ interface components$6 {
|
|
|
32696
32787
|
answer: string;
|
|
32697
32788
|
}[];
|
|
32698
32789
|
};
|
|
32699
|
-
/** @description Per-organization overrides for the legal and
|
|
32790
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
32700
32791
|
links?: {
|
|
32701
32792
|
/**
|
|
32702
32793
|
* Format: uri
|
|
@@ -32712,6 +32803,19 @@ interface components$6 {
|
|
|
32712
32803
|
support?: {
|
|
32713
32804
|
[key: string]: string;
|
|
32714
32805
|
};
|
|
32806
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
32807
|
+
social?: {
|
|
32808
|
+
/**
|
|
32809
|
+
* Format: uri
|
|
32810
|
+
* @description URL of the organization's LinkedIn profile.
|
|
32811
|
+
*/
|
|
32812
|
+
linkedin?: string;
|
|
32813
|
+
/**
|
|
32814
|
+
* Format: uri
|
|
32815
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
32816
|
+
*/
|
|
32817
|
+
x?: string;
|
|
32818
|
+
};
|
|
32715
32819
|
};
|
|
32716
32820
|
/**
|
|
32717
32821
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -33107,7 +33211,7 @@ interface components$6 {
|
|
|
33107
33211
|
answer: string;
|
|
33108
33212
|
}[];
|
|
33109
33213
|
};
|
|
33110
|
-
/** @description Per-organization overrides for the legal and
|
|
33214
|
+
/** @description Per-organization overrides for the legal, support, and social links shown on the auth pages and the error page. termsOfService and privacy are the named legal links; support is an open-ended set of named support contacts/links; social carries the organization's brand profiles. Empty or omitted fields fall back to the platform defaults. */
|
|
33111
33215
|
links?: {
|
|
33112
33216
|
/**
|
|
33113
33217
|
* Format: uri
|
|
@@ -33123,6 +33227,19 @@ interface components$6 {
|
|
|
33123
33227
|
support?: {
|
|
33124
33228
|
[key: string]: string;
|
|
33125
33229
|
};
|
|
33230
|
+
/** @description The organization's social brand profiles. Deliberately a sibling of support rather than an entry in it: support renders as support contacts on the auth and error pages, where a brand profile does not belong. Each platform is a named, individually validated URL so consumers can render the matching platform icon. Empty or omitted fields fall back to the platform defaults. */
|
|
33231
|
+
social?: {
|
|
33232
|
+
/**
|
|
33233
|
+
* Format: uri
|
|
33234
|
+
* @description URL of the organization's LinkedIn profile.
|
|
33235
|
+
*/
|
|
33236
|
+
linkedin?: string;
|
|
33237
|
+
/**
|
|
33238
|
+
* Format: uri
|
|
33239
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
33240
|
+
*/
|
|
33241
|
+
x?: string;
|
|
33242
|
+
};
|
|
33126
33243
|
};
|
|
33127
33244
|
/**
|
|
33128
33245
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|