@meshery/schemas 1.3.46 → 1.3.48
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/constructs/v1beta3/invitation/Invitation.d.ts +27 -0
- package/dist/constructs/v1beta3/invitation/InvitationSchema.js +1 -1
- package/dist/constructs/v1beta3/invitation/InvitationSchema.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 +1 -15
- package/dist/permissions.d.ts +1 -15
- package/dist/permissions.js +1 -1
- package/dist/permissions.mjs +1 -1
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -453,6 +453,8 @@ type GetUserCredentialsApiResponse = {
|
|
|
453
453
|
name: string;
|
|
454
454
|
/** UUID of the user who owns this credential. */
|
|
455
455
|
userId: string;
|
|
456
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
457
|
+
orgOwner?: string;
|
|
456
458
|
/** Credential type (e.g. token, basic, AWS). */
|
|
457
459
|
type: string;
|
|
458
460
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -490,6 +492,8 @@ type SaveUserCredentialApiResponse = {
|
|
|
490
492
|
name: string;
|
|
491
493
|
/** UUID of the user who owns this credential. */
|
|
492
494
|
userId: string;
|
|
495
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
496
|
+
orgOwner?: string;
|
|
493
497
|
/** Credential type (e.g. token, basic, AWS). */
|
|
494
498
|
type: string;
|
|
495
499
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -509,6 +513,8 @@ type SaveUserCredentialApiArg = {
|
|
|
509
513
|
name: string;
|
|
510
514
|
/** UUID of the user who owns this credential. */
|
|
511
515
|
userId?: string;
|
|
516
|
+
/** UUID of the organization to designate as the owner of this credential. A caller may supply this field; the server authorizes it against the authenticated principal and rejects the request when that principal may not write for the named organization. */
|
|
517
|
+
orgOwner?: string;
|
|
512
518
|
/** Credential type (e.g. token, basic, AWS). */
|
|
513
519
|
type: string;
|
|
514
520
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -522,6 +528,8 @@ type UpdateUserCredentialApiResponse = {
|
|
|
522
528
|
name: string;
|
|
523
529
|
/** UUID of the user who owns this credential. */
|
|
524
530
|
userId: string;
|
|
531
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
532
|
+
orgOwner?: string;
|
|
525
533
|
/** Credential type (e.g. token, basic, AWS). */
|
|
526
534
|
type: string;
|
|
527
535
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -541,6 +549,8 @@ type UpdateUserCredentialApiArg = {
|
|
|
541
549
|
name: string;
|
|
542
550
|
/** UUID of the user who owns this credential. */
|
|
543
551
|
userId?: string;
|
|
552
|
+
/** UUID of the organization to designate as the owner of this credential. A caller may supply this field; the server authorizes it against the authenticated principal and rejects the request when that principal may not write for the named organization. */
|
|
553
|
+
orgOwner?: string;
|
|
544
554
|
/** Credential type (e.g. token, basic, AWS). */
|
|
545
555
|
type: string;
|
|
546
556
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -559,6 +569,8 @@ type GetCredentialByIdApiResponse = {
|
|
|
559
569
|
name: string;
|
|
560
570
|
/** UUID of the user who owns this credential. */
|
|
561
571
|
userId: string;
|
|
572
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
573
|
+
orgOwner?: string;
|
|
562
574
|
/** Credential type (e.g. token, basic, AWS). */
|
|
563
575
|
type: string;
|
|
564
576
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -1134,7 +1146,7 @@ type GetOrgsApiResponse = {
|
|
|
1134
1146
|
answer: string;
|
|
1135
1147
|
}[];
|
|
1136
1148
|
};
|
|
1137
|
-
/** Per-organization overrides for the legal and
|
|
1149
|
+
/** 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. */
|
|
1138
1150
|
links?: {
|
|
1139
1151
|
/** URL of the organization's Terms of Service page. */
|
|
1140
1152
|
termsOfService?: string;
|
|
@@ -1144,6 +1156,13 @@ type GetOrgsApiResponse = {
|
|
|
1144
1156
|
support?: {
|
|
1145
1157
|
[key: string]: string;
|
|
1146
1158
|
};
|
|
1159
|
+
/** 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. */
|
|
1160
|
+
social?: {
|
|
1161
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1162
|
+
linkedin?: string;
|
|
1163
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1164
|
+
x?: string;
|
|
1165
|
+
};
|
|
1147
1166
|
};
|
|
1148
1167
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1149
1168
|
showAuthCarousel?: boolean;
|
|
@@ -1259,7 +1278,7 @@ type CreateOrgApiResponse = {
|
|
|
1259
1278
|
answer: string;
|
|
1260
1279
|
}[];
|
|
1261
1280
|
};
|
|
1262
|
-
/** Per-organization overrides for the legal and
|
|
1281
|
+
/** 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. */
|
|
1263
1282
|
links?: {
|
|
1264
1283
|
/** URL of the organization's Terms of Service page. */
|
|
1265
1284
|
termsOfService?: string;
|
|
@@ -1269,6 +1288,13 @@ type CreateOrgApiResponse = {
|
|
|
1269
1288
|
support?: {
|
|
1270
1289
|
[key: string]: string;
|
|
1271
1290
|
};
|
|
1291
|
+
/** 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. */
|
|
1292
|
+
social?: {
|
|
1293
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1294
|
+
linkedin?: string;
|
|
1295
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1296
|
+
x?: string;
|
|
1297
|
+
};
|
|
1272
1298
|
};
|
|
1273
1299
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1274
1300
|
showAuthCarousel?: boolean;
|
|
@@ -1360,7 +1386,7 @@ type CreateOrgApiArg = {
|
|
|
1360
1386
|
answer: string;
|
|
1361
1387
|
}[];
|
|
1362
1388
|
};
|
|
1363
|
-
/** Per-organization overrides for the legal and
|
|
1389
|
+
/** 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. */
|
|
1364
1390
|
links?: {
|
|
1365
1391
|
/** URL of the organization's Terms of Service page. */
|
|
1366
1392
|
termsOfService?: string;
|
|
@@ -1370,6 +1396,13 @@ type CreateOrgApiArg = {
|
|
|
1370
1396
|
support?: {
|
|
1371
1397
|
[key: string]: string;
|
|
1372
1398
|
};
|
|
1399
|
+
/** 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. */
|
|
1400
|
+
social?: {
|
|
1401
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1402
|
+
linkedin?: string;
|
|
1403
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1404
|
+
x?: string;
|
|
1405
|
+
};
|
|
1373
1406
|
};
|
|
1374
1407
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1375
1408
|
showAuthCarousel?: boolean;
|
|
@@ -1494,7 +1527,7 @@ type GetOrgApiResponse = {
|
|
|
1494
1527
|
answer: string;
|
|
1495
1528
|
}[];
|
|
1496
1529
|
};
|
|
1497
|
-
/** Per-organization overrides for the legal and
|
|
1530
|
+
/** 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. */
|
|
1498
1531
|
links?: {
|
|
1499
1532
|
/** URL of the organization's Terms of Service page. */
|
|
1500
1533
|
termsOfService?: string;
|
|
@@ -1504,6 +1537,13 @@ type GetOrgApiResponse = {
|
|
|
1504
1537
|
support?: {
|
|
1505
1538
|
[key: string]: string;
|
|
1506
1539
|
};
|
|
1540
|
+
/** 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. */
|
|
1541
|
+
social?: {
|
|
1542
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1543
|
+
linkedin?: string;
|
|
1544
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1545
|
+
x?: string;
|
|
1546
|
+
};
|
|
1507
1547
|
};
|
|
1508
1548
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1509
1549
|
showAuthCarousel?: boolean;
|
|
@@ -1616,7 +1656,7 @@ type UpdateOrgApiResponse = {
|
|
|
1616
1656
|
answer: string;
|
|
1617
1657
|
}[];
|
|
1618
1658
|
};
|
|
1619
|
-
/** Per-organization overrides for the legal and
|
|
1659
|
+
/** 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. */
|
|
1620
1660
|
links?: {
|
|
1621
1661
|
/** URL of the organization's Terms of Service page. */
|
|
1622
1662
|
termsOfService?: string;
|
|
@@ -1626,6 +1666,13 @@ type UpdateOrgApiResponse = {
|
|
|
1626
1666
|
support?: {
|
|
1627
1667
|
[key: string]: string;
|
|
1628
1668
|
};
|
|
1669
|
+
/** 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. */
|
|
1670
|
+
social?: {
|
|
1671
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1672
|
+
linkedin?: string;
|
|
1673
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1674
|
+
x?: string;
|
|
1675
|
+
};
|
|
1629
1676
|
};
|
|
1630
1677
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1631
1678
|
showAuthCarousel?: boolean;
|
|
@@ -1719,7 +1766,7 @@ type UpdateOrgApiArg = {
|
|
|
1719
1766
|
answer: string;
|
|
1720
1767
|
}[];
|
|
1721
1768
|
};
|
|
1722
|
-
/** Per-organization overrides for the legal and
|
|
1769
|
+
/** 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. */
|
|
1723
1770
|
links?: {
|
|
1724
1771
|
/** URL of the organization's Terms of Service page. */
|
|
1725
1772
|
termsOfService?: string;
|
|
@@ -1729,6 +1776,13 @@ type UpdateOrgApiArg = {
|
|
|
1729
1776
|
support?: {
|
|
1730
1777
|
[key: string]: string;
|
|
1731
1778
|
};
|
|
1779
|
+
/** 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. */
|
|
1780
|
+
social?: {
|
|
1781
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1782
|
+
linkedin?: string;
|
|
1783
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1784
|
+
x?: string;
|
|
1785
|
+
};
|
|
1732
1786
|
};
|
|
1733
1787
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1734
1788
|
showAuthCarousel?: boolean;
|
|
@@ -1801,7 +1855,7 @@ type GetOrgPreferencesApiResponse = {
|
|
|
1801
1855
|
answer: string;
|
|
1802
1856
|
}[];
|
|
1803
1857
|
};
|
|
1804
|
-
/** Per-organization overrides for the legal and
|
|
1858
|
+
/** 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. */
|
|
1805
1859
|
links?: {
|
|
1806
1860
|
/** URL of the organization's Terms of Service page. */
|
|
1807
1861
|
termsOfService?: string;
|
|
@@ -1811,6 +1865,13 @@ type GetOrgPreferencesApiResponse = {
|
|
|
1811
1865
|
support?: {
|
|
1812
1866
|
[key: string]: string;
|
|
1813
1867
|
};
|
|
1868
|
+
/** 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. */
|
|
1869
|
+
social?: {
|
|
1870
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1871
|
+
linkedin?: string;
|
|
1872
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1873
|
+
x?: string;
|
|
1874
|
+
};
|
|
1814
1875
|
};
|
|
1815
1876
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1816
1877
|
showAuthCarousel?: boolean;
|
package/dist/cloudApi.d.ts
CHANGED
|
@@ -453,6 +453,8 @@ type GetUserCredentialsApiResponse = {
|
|
|
453
453
|
name: string;
|
|
454
454
|
/** UUID of the user who owns this credential. */
|
|
455
455
|
userId: string;
|
|
456
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
457
|
+
orgOwner?: string;
|
|
456
458
|
/** Credential type (e.g. token, basic, AWS). */
|
|
457
459
|
type: string;
|
|
458
460
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -490,6 +492,8 @@ type SaveUserCredentialApiResponse = {
|
|
|
490
492
|
name: string;
|
|
491
493
|
/** UUID of the user who owns this credential. */
|
|
492
494
|
userId: string;
|
|
495
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
496
|
+
orgOwner?: string;
|
|
493
497
|
/** Credential type (e.g. token, basic, AWS). */
|
|
494
498
|
type: string;
|
|
495
499
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -509,6 +513,8 @@ type SaveUserCredentialApiArg = {
|
|
|
509
513
|
name: string;
|
|
510
514
|
/** UUID of the user who owns this credential. */
|
|
511
515
|
userId?: string;
|
|
516
|
+
/** UUID of the organization to designate as the owner of this credential. A caller may supply this field; the server authorizes it against the authenticated principal and rejects the request when that principal may not write for the named organization. */
|
|
517
|
+
orgOwner?: string;
|
|
512
518
|
/** Credential type (e.g. token, basic, AWS). */
|
|
513
519
|
type: string;
|
|
514
520
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -522,6 +528,8 @@ type UpdateUserCredentialApiResponse = {
|
|
|
522
528
|
name: string;
|
|
523
529
|
/** UUID of the user who owns this credential. */
|
|
524
530
|
userId: string;
|
|
531
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
532
|
+
orgOwner?: string;
|
|
525
533
|
/** Credential type (e.g. token, basic, AWS). */
|
|
526
534
|
type: string;
|
|
527
535
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -541,6 +549,8 @@ type UpdateUserCredentialApiArg = {
|
|
|
541
549
|
name: string;
|
|
542
550
|
/** UUID of the user who owns this credential. */
|
|
543
551
|
userId?: string;
|
|
552
|
+
/** UUID of the organization to designate as the owner of this credential. A caller may supply this field; the server authorizes it against the authenticated principal and rejects the request when that principal may not write for the named organization. */
|
|
553
|
+
orgOwner?: string;
|
|
544
554
|
/** Credential type (e.g. token, basic, AWS). */
|
|
545
555
|
type: string;
|
|
546
556
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -559,6 +569,8 @@ type GetCredentialByIdApiResponse = {
|
|
|
559
569
|
name: string;
|
|
560
570
|
/** UUID of the user who owns this credential. */
|
|
561
571
|
userId: string;
|
|
572
|
+
/** UUID of the organization designated as the owner of this credential, for credentials that belong to a brand profile rather than to a person. Optional and independent of userId: userId continues to identify the user who created and owns the record, while orgOwner designates the organization the credential is for. */
|
|
573
|
+
orgOwner?: string;
|
|
562
574
|
/** Credential type (e.g. token, basic, AWS). */
|
|
563
575
|
type: string;
|
|
564
576
|
/** Key-value pairs containing the sensitive credential data. */
|
|
@@ -1134,7 +1146,7 @@ type GetOrgsApiResponse = {
|
|
|
1134
1146
|
answer: string;
|
|
1135
1147
|
}[];
|
|
1136
1148
|
};
|
|
1137
|
-
/** Per-organization overrides for the legal and
|
|
1149
|
+
/** 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. */
|
|
1138
1150
|
links?: {
|
|
1139
1151
|
/** URL of the organization's Terms of Service page. */
|
|
1140
1152
|
termsOfService?: string;
|
|
@@ -1144,6 +1156,13 @@ type GetOrgsApiResponse = {
|
|
|
1144
1156
|
support?: {
|
|
1145
1157
|
[key: string]: string;
|
|
1146
1158
|
};
|
|
1159
|
+
/** 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. */
|
|
1160
|
+
social?: {
|
|
1161
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1162
|
+
linkedin?: string;
|
|
1163
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1164
|
+
x?: string;
|
|
1165
|
+
};
|
|
1147
1166
|
};
|
|
1148
1167
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1149
1168
|
showAuthCarousel?: boolean;
|
|
@@ -1259,7 +1278,7 @@ type CreateOrgApiResponse = {
|
|
|
1259
1278
|
answer: string;
|
|
1260
1279
|
}[];
|
|
1261
1280
|
};
|
|
1262
|
-
/** Per-organization overrides for the legal and
|
|
1281
|
+
/** 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. */
|
|
1263
1282
|
links?: {
|
|
1264
1283
|
/** URL of the organization's Terms of Service page. */
|
|
1265
1284
|
termsOfService?: string;
|
|
@@ -1269,6 +1288,13 @@ type CreateOrgApiResponse = {
|
|
|
1269
1288
|
support?: {
|
|
1270
1289
|
[key: string]: string;
|
|
1271
1290
|
};
|
|
1291
|
+
/** 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. */
|
|
1292
|
+
social?: {
|
|
1293
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1294
|
+
linkedin?: string;
|
|
1295
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1296
|
+
x?: string;
|
|
1297
|
+
};
|
|
1272
1298
|
};
|
|
1273
1299
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1274
1300
|
showAuthCarousel?: boolean;
|
|
@@ -1360,7 +1386,7 @@ type CreateOrgApiArg = {
|
|
|
1360
1386
|
answer: string;
|
|
1361
1387
|
}[];
|
|
1362
1388
|
};
|
|
1363
|
-
/** Per-organization overrides for the legal and
|
|
1389
|
+
/** 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. */
|
|
1364
1390
|
links?: {
|
|
1365
1391
|
/** URL of the organization's Terms of Service page. */
|
|
1366
1392
|
termsOfService?: string;
|
|
@@ -1370,6 +1396,13 @@ type CreateOrgApiArg = {
|
|
|
1370
1396
|
support?: {
|
|
1371
1397
|
[key: string]: string;
|
|
1372
1398
|
};
|
|
1399
|
+
/** 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. */
|
|
1400
|
+
social?: {
|
|
1401
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1402
|
+
linkedin?: string;
|
|
1403
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1404
|
+
x?: string;
|
|
1405
|
+
};
|
|
1373
1406
|
};
|
|
1374
1407
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1375
1408
|
showAuthCarousel?: boolean;
|
|
@@ -1494,7 +1527,7 @@ type GetOrgApiResponse = {
|
|
|
1494
1527
|
answer: string;
|
|
1495
1528
|
}[];
|
|
1496
1529
|
};
|
|
1497
|
-
/** Per-organization overrides for the legal and
|
|
1530
|
+
/** 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. */
|
|
1498
1531
|
links?: {
|
|
1499
1532
|
/** URL of the organization's Terms of Service page. */
|
|
1500
1533
|
termsOfService?: string;
|
|
@@ -1504,6 +1537,13 @@ type GetOrgApiResponse = {
|
|
|
1504
1537
|
support?: {
|
|
1505
1538
|
[key: string]: string;
|
|
1506
1539
|
};
|
|
1540
|
+
/** 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. */
|
|
1541
|
+
social?: {
|
|
1542
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1543
|
+
linkedin?: string;
|
|
1544
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1545
|
+
x?: string;
|
|
1546
|
+
};
|
|
1507
1547
|
};
|
|
1508
1548
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1509
1549
|
showAuthCarousel?: boolean;
|
|
@@ -1616,7 +1656,7 @@ type UpdateOrgApiResponse = {
|
|
|
1616
1656
|
answer: string;
|
|
1617
1657
|
}[];
|
|
1618
1658
|
};
|
|
1619
|
-
/** Per-organization overrides for the legal and
|
|
1659
|
+
/** 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. */
|
|
1620
1660
|
links?: {
|
|
1621
1661
|
/** URL of the organization's Terms of Service page. */
|
|
1622
1662
|
termsOfService?: string;
|
|
@@ -1626,6 +1666,13 @@ type UpdateOrgApiResponse = {
|
|
|
1626
1666
|
support?: {
|
|
1627
1667
|
[key: string]: string;
|
|
1628
1668
|
};
|
|
1669
|
+
/** 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. */
|
|
1670
|
+
social?: {
|
|
1671
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1672
|
+
linkedin?: string;
|
|
1673
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1674
|
+
x?: string;
|
|
1675
|
+
};
|
|
1629
1676
|
};
|
|
1630
1677
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1631
1678
|
showAuthCarousel?: boolean;
|
|
@@ -1719,7 +1766,7 @@ type UpdateOrgApiArg = {
|
|
|
1719
1766
|
answer: string;
|
|
1720
1767
|
}[];
|
|
1721
1768
|
};
|
|
1722
|
-
/** Per-organization overrides for the legal and
|
|
1769
|
+
/** 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. */
|
|
1723
1770
|
links?: {
|
|
1724
1771
|
/** URL of the organization's Terms of Service page. */
|
|
1725
1772
|
termsOfService?: string;
|
|
@@ -1729,6 +1776,13 @@ type UpdateOrgApiArg = {
|
|
|
1729
1776
|
support?: {
|
|
1730
1777
|
[key: string]: string;
|
|
1731
1778
|
};
|
|
1779
|
+
/** 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. */
|
|
1780
|
+
social?: {
|
|
1781
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1782
|
+
linkedin?: string;
|
|
1783
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1784
|
+
x?: string;
|
|
1785
|
+
};
|
|
1732
1786
|
};
|
|
1733
1787
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1734
1788
|
showAuthCarousel?: boolean;
|
|
@@ -1801,7 +1855,7 @@ type GetOrgPreferencesApiResponse = {
|
|
|
1801
1855
|
answer: string;
|
|
1802
1856
|
}[];
|
|
1803
1857
|
};
|
|
1804
|
-
/** Per-organization overrides for the legal and
|
|
1858
|
+
/** 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. */
|
|
1805
1859
|
links?: {
|
|
1806
1860
|
/** URL of the organization's Terms of Service page. */
|
|
1807
1861
|
termsOfService?: string;
|
|
@@ -1811,6 +1865,13 @@ type GetOrgPreferencesApiResponse = {
|
|
|
1811
1865
|
support?: {
|
|
1812
1866
|
[key: string]: string;
|
|
1813
1867
|
};
|
|
1868
|
+
/** 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. */
|
|
1869
|
+
social?: {
|
|
1870
|
+
/** URL of the organization's LinkedIn profile. */
|
|
1871
|
+
linkedin?: string;
|
|
1872
|
+
/** URL of the organization's X (formerly Twitter) profile. */
|
|
1873
|
+
x?: string;
|
|
1874
|
+
};
|
|
1814
1875
|
};
|
|
1815
1876
|
/** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
|
|
1816
1877
|
showAuthCarousel?: boolean;
|