@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
|
@@ -261,7 +261,7 @@ export interface components {
|
|
|
261
261
|
DashboardPrefs: {
|
|
262
262
|
[key: string]: unknown;
|
|
263
263
|
};
|
|
264
|
-
/** @description Per-organization overrides for the legal and
|
|
264
|
+
/** @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. */
|
|
265
265
|
Links: {
|
|
266
266
|
/**
|
|
267
267
|
* Format: uri
|
|
@@ -277,6 +277,32 @@ export interface components {
|
|
|
277
277
|
support?: {
|
|
278
278
|
[key: string]: string;
|
|
279
279
|
};
|
|
280
|
+
/** @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. */
|
|
281
|
+
social?: {
|
|
282
|
+
/**
|
|
283
|
+
* Format: uri
|
|
284
|
+
* @description URL of the organization's LinkedIn profile.
|
|
285
|
+
*/
|
|
286
|
+
linkedin?: string;
|
|
287
|
+
/**
|
|
288
|
+
* Format: uri
|
|
289
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
290
|
+
*/
|
|
291
|
+
x?: string;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
/** @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. */
|
|
295
|
+
Social: {
|
|
296
|
+
/**
|
|
297
|
+
* Format: uri
|
|
298
|
+
* @description URL of the organization's LinkedIn profile.
|
|
299
|
+
*/
|
|
300
|
+
linkedin?: string;
|
|
301
|
+
/**
|
|
302
|
+
* Format: uri
|
|
303
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
304
|
+
*/
|
|
305
|
+
x?: string;
|
|
280
306
|
};
|
|
281
307
|
/** @description A single slide in the auth-page feature carousel. */
|
|
282
308
|
CarouselSlide: {
|
|
@@ -390,7 +416,7 @@ export interface components {
|
|
|
390
416
|
answer: string;
|
|
391
417
|
}[];
|
|
392
418
|
};
|
|
393
|
-
/** @description Per-organization overrides for the legal and
|
|
419
|
+
/** @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. */
|
|
394
420
|
links?: {
|
|
395
421
|
/**
|
|
396
422
|
* Format: uri
|
|
@@ -406,6 +432,19 @@ export interface components {
|
|
|
406
432
|
support?: {
|
|
407
433
|
[key: string]: string;
|
|
408
434
|
};
|
|
435
|
+
/** @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. */
|
|
436
|
+
social?: {
|
|
437
|
+
/**
|
|
438
|
+
* Format: uri
|
|
439
|
+
* @description URL of the organization's LinkedIn profile.
|
|
440
|
+
*/
|
|
441
|
+
linkedin?: string;
|
|
442
|
+
/**
|
|
443
|
+
* Format: uri
|
|
444
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
445
|
+
*/
|
|
446
|
+
x?: string;
|
|
447
|
+
};
|
|
409
448
|
};
|
|
410
449
|
/**
|
|
411
450
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -486,7 +525,7 @@ export interface components {
|
|
|
486
525
|
answer: string;
|
|
487
526
|
}[];
|
|
488
527
|
};
|
|
489
|
-
/** @description Per-organization overrides for the legal and
|
|
528
|
+
/** @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. */
|
|
490
529
|
links?: {
|
|
491
530
|
/**
|
|
492
531
|
* Format: uri
|
|
@@ -502,6 +541,19 @@ export interface components {
|
|
|
502
541
|
support?: {
|
|
503
542
|
[key: string]: string;
|
|
504
543
|
};
|
|
544
|
+
/** @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. */
|
|
545
|
+
social?: {
|
|
546
|
+
/**
|
|
547
|
+
* Format: uri
|
|
548
|
+
* @description URL of the organization's LinkedIn profile.
|
|
549
|
+
*/
|
|
550
|
+
linkedin?: string;
|
|
551
|
+
/**
|
|
552
|
+
* Format: uri
|
|
553
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
554
|
+
*/
|
|
555
|
+
x?: string;
|
|
556
|
+
};
|
|
505
557
|
};
|
|
506
558
|
/**
|
|
507
559
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -642,7 +694,7 @@ export interface components {
|
|
|
642
694
|
answer: string;
|
|
643
695
|
}[];
|
|
644
696
|
};
|
|
645
|
-
/** @description Per-organization overrides for the legal and
|
|
697
|
+
/** @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. */
|
|
646
698
|
links?: {
|
|
647
699
|
/**
|
|
648
700
|
* Format: uri
|
|
@@ -658,6 +710,19 @@ export interface components {
|
|
|
658
710
|
support?: {
|
|
659
711
|
[key: string]: string;
|
|
660
712
|
};
|
|
713
|
+
/** @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. */
|
|
714
|
+
social?: {
|
|
715
|
+
/**
|
|
716
|
+
* Format: uri
|
|
717
|
+
* @description URL of the organization's LinkedIn profile.
|
|
718
|
+
*/
|
|
719
|
+
linkedin?: string;
|
|
720
|
+
/**
|
|
721
|
+
* Format: uri
|
|
722
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
723
|
+
*/
|
|
724
|
+
x?: string;
|
|
725
|
+
};
|
|
661
726
|
};
|
|
662
727
|
/**
|
|
663
728
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -782,7 +847,7 @@ export interface components {
|
|
|
782
847
|
answer: string;
|
|
783
848
|
}[];
|
|
784
849
|
};
|
|
785
|
-
/** @description Per-organization overrides for the legal and
|
|
850
|
+
/** @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. */
|
|
786
851
|
links?: {
|
|
787
852
|
/**
|
|
788
853
|
* Format: uri
|
|
@@ -798,6 +863,19 @@ export interface components {
|
|
|
798
863
|
support?: {
|
|
799
864
|
[key: string]: string;
|
|
800
865
|
};
|
|
866
|
+
/** @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. */
|
|
867
|
+
social?: {
|
|
868
|
+
/**
|
|
869
|
+
* Format: uri
|
|
870
|
+
* @description URL of the organization's LinkedIn profile.
|
|
871
|
+
*/
|
|
872
|
+
linkedin?: string;
|
|
873
|
+
/**
|
|
874
|
+
* Format: uri
|
|
875
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
876
|
+
*/
|
|
877
|
+
x?: string;
|
|
878
|
+
};
|
|
801
879
|
};
|
|
802
880
|
/**
|
|
803
881
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -923,7 +1001,7 @@ export interface components {
|
|
|
923
1001
|
answer: string;
|
|
924
1002
|
}[];
|
|
925
1003
|
};
|
|
926
|
-
/** @description Per-organization overrides for the legal and
|
|
1004
|
+
/** @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. */
|
|
927
1005
|
links?: {
|
|
928
1006
|
/**
|
|
929
1007
|
* Format: uri
|
|
@@ -939,6 +1017,19 @@ export interface components {
|
|
|
939
1017
|
support?: {
|
|
940
1018
|
[key: string]: string;
|
|
941
1019
|
};
|
|
1020
|
+
/** @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. */
|
|
1021
|
+
social?: {
|
|
1022
|
+
/**
|
|
1023
|
+
* Format: uri
|
|
1024
|
+
* @description URL of the organization's LinkedIn profile.
|
|
1025
|
+
*/
|
|
1026
|
+
linkedin?: string;
|
|
1027
|
+
/**
|
|
1028
|
+
* Format: uri
|
|
1029
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
1030
|
+
*/
|
|
1031
|
+
x?: string;
|
|
1032
|
+
};
|
|
942
1033
|
};
|
|
943
1034
|
/**
|
|
944
1035
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -1047,7 +1138,7 @@ export interface components {
|
|
|
1047
1138
|
answer: string;
|
|
1048
1139
|
}[];
|
|
1049
1140
|
};
|
|
1050
|
-
/** @description Per-organization overrides for the legal and
|
|
1141
|
+
/** @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. */
|
|
1051
1142
|
links?: {
|
|
1052
1143
|
/**
|
|
1053
1144
|
* Format: uri
|
|
@@ -1063,6 +1154,19 @@ export interface components {
|
|
|
1063
1154
|
support?: {
|
|
1064
1155
|
[key: string]: string;
|
|
1065
1156
|
};
|
|
1157
|
+
/** @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. */
|
|
1158
|
+
social?: {
|
|
1159
|
+
/**
|
|
1160
|
+
* Format: uri
|
|
1161
|
+
* @description URL of the organization's LinkedIn profile.
|
|
1162
|
+
*/
|
|
1163
|
+
linkedin?: string;
|
|
1164
|
+
/**
|
|
1165
|
+
* Format: uri
|
|
1166
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
1167
|
+
*/
|
|
1168
|
+
x?: string;
|
|
1169
|
+
};
|
|
1066
1170
|
};
|
|
1067
1171
|
/**
|
|
1068
1172
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -1458,7 +1562,7 @@ export interface components {
|
|
|
1458
1562
|
answer: string;
|
|
1459
1563
|
}[];
|
|
1460
1564
|
};
|
|
1461
|
-
/** @description Per-organization overrides for the legal and
|
|
1565
|
+
/** @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. */
|
|
1462
1566
|
links?: {
|
|
1463
1567
|
/**
|
|
1464
1568
|
* Format: uri
|
|
@@ -1474,6 +1578,19 @@ export interface components {
|
|
|
1474
1578
|
support?: {
|
|
1475
1579
|
[key: string]: string;
|
|
1476
1580
|
};
|
|
1581
|
+
/** @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. */
|
|
1582
|
+
social?: {
|
|
1583
|
+
/**
|
|
1584
|
+
* Format: uri
|
|
1585
|
+
* @description URL of the organization's LinkedIn profile.
|
|
1586
|
+
*/
|
|
1587
|
+
linkedin?: string;
|
|
1588
|
+
/**
|
|
1589
|
+
* Format: uri
|
|
1590
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
1591
|
+
*/
|
|
1592
|
+
x?: string;
|
|
1593
|
+
};
|
|
1477
1594
|
};
|
|
1478
1595
|
/**
|
|
1479
1596
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -1615,7 +1732,7 @@ export interface operations {
|
|
|
1615
1732
|
answer: string;
|
|
1616
1733
|
}[];
|
|
1617
1734
|
};
|
|
1618
|
-
/** @description Per-organization overrides for the legal and
|
|
1735
|
+
/** @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. */
|
|
1619
1736
|
links?: {
|
|
1620
1737
|
/**
|
|
1621
1738
|
* Format: uri
|
|
@@ -1631,6 +1748,19 @@ export interface operations {
|
|
|
1631
1748
|
support?: {
|
|
1632
1749
|
[key: string]: string;
|
|
1633
1750
|
};
|
|
1751
|
+
/** @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. */
|
|
1752
|
+
social?: {
|
|
1753
|
+
/**
|
|
1754
|
+
* Format: uri
|
|
1755
|
+
* @description URL of the organization's LinkedIn profile.
|
|
1756
|
+
*/
|
|
1757
|
+
linkedin?: string;
|
|
1758
|
+
/**
|
|
1759
|
+
* Format: uri
|
|
1760
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
1761
|
+
*/
|
|
1762
|
+
x?: string;
|
|
1763
|
+
};
|
|
1634
1764
|
};
|
|
1635
1765
|
/**
|
|
1636
1766
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -1777,7 +1907,7 @@ export interface operations {
|
|
|
1777
1907
|
answer: string;
|
|
1778
1908
|
}[];
|
|
1779
1909
|
};
|
|
1780
|
-
/** @description Per-organization overrides for the legal and
|
|
1910
|
+
/** @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. */
|
|
1781
1911
|
links?: {
|
|
1782
1912
|
/**
|
|
1783
1913
|
* Format: uri
|
|
@@ -1793,6 +1923,19 @@ export interface operations {
|
|
|
1793
1923
|
support?: {
|
|
1794
1924
|
[key: string]: string;
|
|
1795
1925
|
};
|
|
1926
|
+
/** @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. */
|
|
1927
|
+
social?: {
|
|
1928
|
+
/**
|
|
1929
|
+
* Format: uri
|
|
1930
|
+
* @description URL of the organization's LinkedIn profile.
|
|
1931
|
+
*/
|
|
1932
|
+
linkedin?: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* Format: uri
|
|
1935
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
1936
|
+
*/
|
|
1937
|
+
x?: string;
|
|
1938
|
+
};
|
|
1796
1939
|
};
|
|
1797
1940
|
/**
|
|
1798
1941
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -1909,7 +2052,7 @@ export interface operations {
|
|
|
1909
2052
|
answer: string;
|
|
1910
2053
|
}[];
|
|
1911
2054
|
};
|
|
1912
|
-
/** @description Per-organization overrides for the legal and
|
|
2055
|
+
/** @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. */
|
|
1913
2056
|
links?: {
|
|
1914
2057
|
/**
|
|
1915
2058
|
* Format: uri
|
|
@@ -1925,6 +2068,19 @@ export interface operations {
|
|
|
1925
2068
|
support?: {
|
|
1926
2069
|
[key: string]: string;
|
|
1927
2070
|
};
|
|
2071
|
+
/** @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. */
|
|
2072
|
+
social?: {
|
|
2073
|
+
/**
|
|
2074
|
+
* Format: uri
|
|
2075
|
+
* @description URL of the organization's LinkedIn profile.
|
|
2076
|
+
*/
|
|
2077
|
+
linkedin?: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* Format: uri
|
|
2080
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
2081
|
+
*/
|
|
2082
|
+
x?: string;
|
|
2083
|
+
};
|
|
1928
2084
|
};
|
|
1929
2085
|
/**
|
|
1930
2086
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -2191,7 +2347,7 @@ export interface operations {
|
|
|
2191
2347
|
answer: string;
|
|
2192
2348
|
}[];
|
|
2193
2349
|
};
|
|
2194
|
-
/** @description Per-organization overrides for the legal and
|
|
2350
|
+
/** @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. */
|
|
2195
2351
|
links?: {
|
|
2196
2352
|
/**
|
|
2197
2353
|
* Format: uri
|
|
@@ -2207,6 +2363,19 @@ export interface operations {
|
|
|
2207
2363
|
support?: {
|
|
2208
2364
|
[key: string]: string;
|
|
2209
2365
|
};
|
|
2366
|
+
/** @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. */
|
|
2367
|
+
social?: {
|
|
2368
|
+
/**
|
|
2369
|
+
* Format: uri
|
|
2370
|
+
* @description URL of the organization's LinkedIn profile.
|
|
2371
|
+
*/
|
|
2372
|
+
linkedin?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* Format: uri
|
|
2375
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
2376
|
+
*/
|
|
2377
|
+
x?: string;
|
|
2378
|
+
};
|
|
2210
2379
|
};
|
|
2211
2380
|
/**
|
|
2212
2381
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -2367,7 +2536,7 @@ export interface operations {
|
|
|
2367
2536
|
answer: string;
|
|
2368
2537
|
}[];
|
|
2369
2538
|
};
|
|
2370
|
-
/** @description Per-organization overrides for the legal and
|
|
2539
|
+
/** @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. */
|
|
2371
2540
|
links?: {
|
|
2372
2541
|
/**
|
|
2373
2542
|
* Format: uri
|
|
@@ -2383,6 +2552,19 @@ export interface operations {
|
|
|
2383
2552
|
support?: {
|
|
2384
2553
|
[key: string]: string;
|
|
2385
2554
|
};
|
|
2555
|
+
/** @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. */
|
|
2556
|
+
social?: {
|
|
2557
|
+
/**
|
|
2558
|
+
* Format: uri
|
|
2559
|
+
* @description URL of the organization's LinkedIn profile.
|
|
2560
|
+
*/
|
|
2561
|
+
linkedin?: string;
|
|
2562
|
+
/**
|
|
2563
|
+
* Format: uri
|
|
2564
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
2565
|
+
*/
|
|
2566
|
+
x?: string;
|
|
2567
|
+
};
|
|
2386
2568
|
};
|
|
2387
2569
|
/**
|
|
2388
2570
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -2499,7 +2681,7 @@ export interface operations {
|
|
|
2499
2681
|
answer: string;
|
|
2500
2682
|
}[];
|
|
2501
2683
|
};
|
|
2502
|
-
/** @description Per-organization overrides for the legal and
|
|
2684
|
+
/** @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. */
|
|
2503
2685
|
links?: {
|
|
2504
2686
|
/**
|
|
2505
2687
|
* Format: uri
|
|
@@ -2515,6 +2697,19 @@ export interface operations {
|
|
|
2515
2697
|
support?: {
|
|
2516
2698
|
[key: string]: string;
|
|
2517
2699
|
};
|
|
2700
|
+
/** @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. */
|
|
2701
|
+
social?: {
|
|
2702
|
+
/**
|
|
2703
|
+
* Format: uri
|
|
2704
|
+
* @description URL of the organization's LinkedIn profile.
|
|
2705
|
+
*/
|
|
2706
|
+
linkedin?: string;
|
|
2707
|
+
/**
|
|
2708
|
+
* Format: uri
|
|
2709
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
2710
|
+
*/
|
|
2711
|
+
x?: string;
|
|
2712
|
+
};
|
|
2518
2713
|
};
|
|
2519
2714
|
/**
|
|
2520
2715
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
@@ -2745,7 +2940,7 @@ export interface operations {
|
|
|
2745
2940
|
answer: string;
|
|
2746
2941
|
}[];
|
|
2747
2942
|
};
|
|
2748
|
-
/** @description Per-organization overrides for the legal and
|
|
2943
|
+
/** @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. */
|
|
2749
2944
|
links?: {
|
|
2750
2945
|
/**
|
|
2751
2946
|
* Format: uri
|
|
@@ -2761,6 +2956,19 @@ export interface operations {
|
|
|
2761
2956
|
support?: {
|
|
2762
2957
|
[key: string]: string;
|
|
2763
2958
|
};
|
|
2959
|
+
/** @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. */
|
|
2960
|
+
social?: {
|
|
2961
|
+
/**
|
|
2962
|
+
* Format: uri
|
|
2963
|
+
* @description URL of the organization's LinkedIn profile.
|
|
2964
|
+
*/
|
|
2965
|
+
linkedin?: string;
|
|
2966
|
+
/**
|
|
2967
|
+
* Format: uri
|
|
2968
|
+
* @description URL of the organization's X (formerly Twitter) profile.
|
|
2969
|
+
*/
|
|
2970
|
+
x?: string;
|
|
2971
|
+
};
|
|
2764
2972
|
};
|
|
2765
2973
|
/**
|
|
2766
2974
|
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|