@meshery/schemas 1.3.5 → 1.3.7

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.
@@ -937,6 +937,19 @@ type GetOrgsApiResponse = {
937
937
  dashboard: {
938
938
  [key: string]: any;
939
939
  };
940
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
941
+ links?: {
942
+ /** URL of the organization's Terms of Service page. */
943
+ termsOfService?: string;
944
+ /** URL of the organization's Privacy Policy page. */
945
+ privacy?: string;
946
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
947
+ support?: {
948
+ [key: string]: string;
949
+ };
950
+ };
951
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
952
+ showAuthCarousel?: boolean;
940
953
  };
941
954
  };
942
955
  /** Timestamp when the organization was created. */
@@ -1028,6 +1041,19 @@ type CreateOrgApiResponse = {
1028
1041
  dashboard: {
1029
1042
  [key: string]: any;
1030
1043
  };
1044
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1045
+ links?: {
1046
+ /** URL of the organization's Terms of Service page. */
1047
+ termsOfService?: string;
1048
+ /** URL of the organization's Privacy Policy page. */
1049
+ privacy?: string;
1050
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1051
+ support?: {
1052
+ [key: string]: string;
1053
+ };
1054
+ };
1055
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1056
+ showAuthCarousel?: boolean;
1031
1057
  };
1032
1058
  };
1033
1059
  /** Timestamp when the organization was created. */
@@ -1097,6 +1123,19 @@ type CreateOrgApiArg = {
1097
1123
  dashboard: {
1098
1124
  [key: string]: any;
1099
1125
  };
1126
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1127
+ links?: {
1128
+ /** URL of the organization's Terms of Service page. */
1129
+ termsOfService?: string;
1130
+ /** URL of the organization's Privacy Policy page. */
1131
+ privacy?: string;
1132
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1133
+ support?: {
1134
+ [key: string]: string;
1135
+ };
1136
+ };
1137
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1138
+ showAuthCarousel?: boolean;
1100
1139
  };
1101
1140
  };
1102
1141
  };
@@ -1197,6 +1236,19 @@ type GetOrgApiResponse = {
1197
1236
  dashboard: {
1198
1237
  [key: string]: any;
1199
1238
  };
1239
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1240
+ links?: {
1241
+ /** URL of the organization's Terms of Service page. */
1242
+ termsOfService?: string;
1243
+ /** URL of the organization's Privacy Policy page. */
1244
+ privacy?: string;
1245
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1246
+ support?: {
1247
+ [key: string]: string;
1248
+ };
1249
+ };
1250
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1251
+ showAuthCarousel?: boolean;
1200
1252
  };
1201
1253
  };
1202
1254
  /** Timestamp when the organization was created. */
@@ -1285,6 +1337,19 @@ type UpdateOrgApiResponse = {
1285
1337
  dashboard: {
1286
1338
  [key: string]: any;
1287
1339
  };
1340
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1341
+ links?: {
1342
+ /** URL of the organization's Terms of Service page. */
1343
+ termsOfService?: string;
1344
+ /** URL of the organization's Privacy Policy page. */
1345
+ privacy?: string;
1346
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1347
+ support?: {
1348
+ [key: string]: string;
1349
+ };
1350
+ };
1351
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1352
+ showAuthCarousel?: boolean;
1288
1353
  };
1289
1354
  };
1290
1355
  /** Timestamp when the organization was created. */
@@ -1356,6 +1421,19 @@ type UpdateOrgApiArg = {
1356
1421
  dashboard: {
1357
1422
  [key: string]: any;
1358
1423
  };
1424
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1425
+ links?: {
1426
+ /** URL of the organization's Terms of Service page. */
1427
+ termsOfService?: string;
1428
+ /** URL of the organization's Privacy Policy page. */
1429
+ privacy?: string;
1430
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1431
+ support?: {
1432
+ [key: string]: string;
1433
+ };
1434
+ };
1435
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1436
+ showAuthCarousel?: boolean;
1359
1437
  };
1360
1438
  };
1361
1439
  };
@@ -1406,6 +1484,19 @@ type GetOrgPreferencesApiResponse = {
1406
1484
  dashboard: {
1407
1485
  [key: string]: any;
1408
1486
  };
1487
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1488
+ links?: {
1489
+ /** URL of the organization's Terms of Service page. */
1490
+ termsOfService?: string;
1491
+ /** URL of the organization's Privacy Policy page. */
1492
+ privacy?: string;
1493
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1494
+ support?: {
1495
+ [key: string]: string;
1496
+ };
1497
+ };
1498
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1499
+ showAuthCarousel?: boolean;
1409
1500
  };
1410
1501
  };
1411
1502
  type GetOrgPreferencesApiArg = {
@@ -937,6 +937,19 @@ type GetOrgsApiResponse = {
937
937
  dashboard: {
938
938
  [key: string]: any;
939
939
  };
940
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
941
+ links?: {
942
+ /** URL of the organization's Terms of Service page. */
943
+ termsOfService?: string;
944
+ /** URL of the organization's Privacy Policy page. */
945
+ privacy?: string;
946
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
947
+ support?: {
948
+ [key: string]: string;
949
+ };
950
+ };
951
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
952
+ showAuthCarousel?: boolean;
940
953
  };
941
954
  };
942
955
  /** Timestamp when the organization was created. */
@@ -1028,6 +1041,19 @@ type CreateOrgApiResponse = {
1028
1041
  dashboard: {
1029
1042
  [key: string]: any;
1030
1043
  };
1044
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1045
+ links?: {
1046
+ /** URL of the organization's Terms of Service page. */
1047
+ termsOfService?: string;
1048
+ /** URL of the organization's Privacy Policy page. */
1049
+ privacy?: string;
1050
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1051
+ support?: {
1052
+ [key: string]: string;
1053
+ };
1054
+ };
1055
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1056
+ showAuthCarousel?: boolean;
1031
1057
  };
1032
1058
  };
1033
1059
  /** Timestamp when the organization was created. */
@@ -1097,6 +1123,19 @@ type CreateOrgApiArg = {
1097
1123
  dashboard: {
1098
1124
  [key: string]: any;
1099
1125
  };
1126
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1127
+ links?: {
1128
+ /** URL of the organization's Terms of Service page. */
1129
+ termsOfService?: string;
1130
+ /** URL of the organization's Privacy Policy page. */
1131
+ privacy?: string;
1132
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1133
+ support?: {
1134
+ [key: string]: string;
1135
+ };
1136
+ };
1137
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1138
+ showAuthCarousel?: boolean;
1100
1139
  };
1101
1140
  };
1102
1141
  };
@@ -1197,6 +1236,19 @@ type GetOrgApiResponse = {
1197
1236
  dashboard: {
1198
1237
  [key: string]: any;
1199
1238
  };
1239
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1240
+ links?: {
1241
+ /** URL of the organization's Terms of Service page. */
1242
+ termsOfService?: string;
1243
+ /** URL of the organization's Privacy Policy page. */
1244
+ privacy?: string;
1245
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1246
+ support?: {
1247
+ [key: string]: string;
1248
+ };
1249
+ };
1250
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1251
+ showAuthCarousel?: boolean;
1200
1252
  };
1201
1253
  };
1202
1254
  /** Timestamp when the organization was created. */
@@ -1285,6 +1337,19 @@ type UpdateOrgApiResponse = {
1285
1337
  dashboard: {
1286
1338
  [key: string]: any;
1287
1339
  };
1340
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1341
+ links?: {
1342
+ /** URL of the organization's Terms of Service page. */
1343
+ termsOfService?: string;
1344
+ /** URL of the organization's Privacy Policy page. */
1345
+ privacy?: string;
1346
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1347
+ support?: {
1348
+ [key: string]: string;
1349
+ };
1350
+ };
1351
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1352
+ showAuthCarousel?: boolean;
1288
1353
  };
1289
1354
  };
1290
1355
  /** Timestamp when the organization was created. */
@@ -1356,6 +1421,19 @@ type UpdateOrgApiArg = {
1356
1421
  dashboard: {
1357
1422
  [key: string]: any;
1358
1423
  };
1424
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1425
+ links?: {
1426
+ /** URL of the organization's Terms of Service page. */
1427
+ termsOfService?: string;
1428
+ /** URL of the organization's Privacy Policy page. */
1429
+ privacy?: string;
1430
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1431
+ support?: {
1432
+ [key: string]: string;
1433
+ };
1434
+ };
1435
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1436
+ showAuthCarousel?: boolean;
1359
1437
  };
1360
1438
  };
1361
1439
  };
@@ -1406,6 +1484,19 @@ type GetOrgPreferencesApiResponse = {
1406
1484
  dashboard: {
1407
1485
  [key: string]: any;
1408
1486
  };
1487
+ /** Per-organization overrides for the legal and support 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. Empty or omitted fields fall back to the platform defaults. */
1488
+ links?: {
1489
+ /** URL of the organization's Terms of Service page. */
1490
+ termsOfService?: string;
1491
+ /** URL of the organization's Privacy Policy page. */
1492
+ privacy?: string;
1493
+ /** Open-ended set of named support contacts/links rendered on the auth and error pages, keyed by display name with a value that is a URL, a mailto:/tel: link, or free text. For example a "slack" entry pointing at https://slack.meshery.io, a "discussion forum" entry, or a "support desk" entry holding a phone number. */
1494
+ support?: {
1495
+ [key: string]: string;
1496
+ };
1497
+ };
1498
+ /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
1499
+ showAuthCarousel?: boolean;
1409
1500
  };
1410
1501
  };
1411
1502
  type GetOrgPreferencesApiArg = {