@meshery/schemas 1.3.6 → 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.
- package/dist/cloudApi.d.mts +1671 -1580
- package/dist/cloudApi.d.ts +1671 -1580
- package/dist/constructs/v1beta2/organization/Organization.d.ts +325 -0
- package/dist/constructs/v1beta2/organization/OrganizationSchema.js +1 -1
- package/dist/constructs/v1beta2/organization/OrganizationSchema.mjs +1 -1
- package/dist/index.d.mts +171 -0
- package/dist/index.d.ts +171 -0
- package/dist/mesheryApi.d.mts +762 -671
- package/dist/mesheryApi.d.ts +762 -671
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -30801,6 +30801,23 @@ interface components$5 {
|
|
|
30801
30801
|
DashboardPrefs: {
|
|
30802
30802
|
[key: string]: unknown;
|
|
30803
30803
|
};
|
|
30804
|
+
/** @description 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. */
|
|
30805
|
+
Links: {
|
|
30806
|
+
/**
|
|
30807
|
+
* Format: uri
|
|
30808
|
+
* @description URL of the organization's Terms of Service page.
|
|
30809
|
+
*/
|
|
30810
|
+
termsOfService?: string;
|
|
30811
|
+
/**
|
|
30812
|
+
* Format: uri
|
|
30813
|
+
* @description URL of the organization's Privacy Policy page.
|
|
30814
|
+
*/
|
|
30815
|
+
privacy?: string;
|
|
30816
|
+
/** @description 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. */
|
|
30817
|
+
support?: {
|
|
30818
|
+
[key: string]: string;
|
|
30819
|
+
};
|
|
30820
|
+
};
|
|
30804
30821
|
/** @description Organization-level user experience preferences. */
|
|
30805
30822
|
Preferences: {
|
|
30806
30823
|
/** @description UI theme configured for an organization. */
|
|
@@ -30850,6 +30867,28 @@ interface components$5 {
|
|
|
30850
30867
|
dashboard: {
|
|
30851
30868
|
[key: string]: unknown;
|
|
30852
30869
|
};
|
|
30870
|
+
/** @description 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. */
|
|
30871
|
+
links?: {
|
|
30872
|
+
/**
|
|
30873
|
+
* Format: uri
|
|
30874
|
+
* @description URL of the organization's Terms of Service page.
|
|
30875
|
+
*/
|
|
30876
|
+
termsOfService?: string;
|
|
30877
|
+
/**
|
|
30878
|
+
* Format: uri
|
|
30879
|
+
* @description URL of the organization's Privacy Policy page.
|
|
30880
|
+
*/
|
|
30881
|
+
privacy?: string;
|
|
30882
|
+
/** @description 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. */
|
|
30883
|
+
support?: {
|
|
30884
|
+
[key: string]: string;
|
|
30885
|
+
};
|
|
30886
|
+
};
|
|
30887
|
+
/**
|
|
30888
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
30889
|
+
* @default true
|
|
30890
|
+
*/
|
|
30891
|
+
showAuthCarousel: boolean;
|
|
30853
30892
|
};
|
|
30854
30893
|
/** @description Free-form metadata associated with an organization, including preferences. */
|
|
30855
30894
|
OrgMetadata: {
|
|
@@ -30902,6 +30941,28 @@ interface components$5 {
|
|
|
30902
30941
|
dashboard: {
|
|
30903
30942
|
[key: string]: unknown;
|
|
30904
30943
|
};
|
|
30944
|
+
/** @description 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. */
|
|
30945
|
+
links?: {
|
|
30946
|
+
/**
|
|
30947
|
+
* Format: uri
|
|
30948
|
+
* @description URL of the organization's Terms of Service page.
|
|
30949
|
+
*/
|
|
30950
|
+
termsOfService?: string;
|
|
30951
|
+
/**
|
|
30952
|
+
* Format: uri
|
|
30953
|
+
* @description URL of the organization's Privacy Policy page.
|
|
30954
|
+
*/
|
|
30955
|
+
privacy?: string;
|
|
30956
|
+
/** @description 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. */
|
|
30957
|
+
support?: {
|
|
30958
|
+
[key: string]: string;
|
|
30959
|
+
};
|
|
30960
|
+
};
|
|
30961
|
+
/**
|
|
30962
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
30963
|
+
* @default true
|
|
30964
|
+
*/
|
|
30965
|
+
showAuthCarousel: boolean;
|
|
30905
30966
|
};
|
|
30906
30967
|
};
|
|
30907
30968
|
/** @description An organization in Meshery Cloud. Organizations are the top-level tenancy boundary and own teams, workspaces, environments, designs, and other resources. Learn more at https://docs.meshery.io/concepts/logical/organizations */
|
|
@@ -31012,6 +31073,28 @@ interface components$5 {
|
|
|
31012
31073
|
dashboard: {
|
|
31013
31074
|
[key: string]: unknown;
|
|
31014
31075
|
};
|
|
31076
|
+
/** @description 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. */
|
|
31077
|
+
links?: {
|
|
31078
|
+
/**
|
|
31079
|
+
* Format: uri
|
|
31080
|
+
* @description URL of the organization's Terms of Service page.
|
|
31081
|
+
*/
|
|
31082
|
+
termsOfService?: string;
|
|
31083
|
+
/**
|
|
31084
|
+
* Format: uri
|
|
31085
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31086
|
+
*/
|
|
31087
|
+
privacy?: string;
|
|
31088
|
+
/** @description 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. */
|
|
31089
|
+
support?: {
|
|
31090
|
+
[key: string]: string;
|
|
31091
|
+
};
|
|
31092
|
+
};
|
|
31093
|
+
/**
|
|
31094
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31095
|
+
* @default true
|
|
31096
|
+
*/
|
|
31097
|
+
showAuthCarousel: boolean;
|
|
31015
31098
|
};
|
|
31016
31099
|
};
|
|
31017
31100
|
/**
|
|
@@ -31106,6 +31189,28 @@ interface components$5 {
|
|
|
31106
31189
|
dashboard: {
|
|
31107
31190
|
[key: string]: unknown;
|
|
31108
31191
|
};
|
|
31192
|
+
/** @description 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. */
|
|
31193
|
+
links?: {
|
|
31194
|
+
/**
|
|
31195
|
+
* Format: uri
|
|
31196
|
+
* @description URL of the organization's Terms of Service page.
|
|
31197
|
+
*/
|
|
31198
|
+
termsOfService?: string;
|
|
31199
|
+
/**
|
|
31200
|
+
* Format: uri
|
|
31201
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31202
|
+
*/
|
|
31203
|
+
privacy?: string;
|
|
31204
|
+
/** @description 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. */
|
|
31205
|
+
support?: {
|
|
31206
|
+
[key: string]: string;
|
|
31207
|
+
};
|
|
31208
|
+
};
|
|
31209
|
+
/**
|
|
31210
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31211
|
+
* @default true
|
|
31212
|
+
*/
|
|
31213
|
+
showAuthCarousel: boolean;
|
|
31109
31214
|
};
|
|
31110
31215
|
};
|
|
31111
31216
|
/**
|
|
@@ -31201,6 +31306,28 @@ interface components$5 {
|
|
|
31201
31306
|
dashboard: {
|
|
31202
31307
|
[key: string]: unknown;
|
|
31203
31308
|
};
|
|
31309
|
+
/** @description 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. */
|
|
31310
|
+
links?: {
|
|
31311
|
+
/**
|
|
31312
|
+
* Format: uri
|
|
31313
|
+
* @description URL of the organization's Terms of Service page.
|
|
31314
|
+
*/
|
|
31315
|
+
termsOfService?: string;
|
|
31316
|
+
/**
|
|
31317
|
+
* Format: uri
|
|
31318
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31319
|
+
*/
|
|
31320
|
+
privacy?: string;
|
|
31321
|
+
/** @description 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. */
|
|
31322
|
+
support?: {
|
|
31323
|
+
[key: string]: string;
|
|
31324
|
+
};
|
|
31325
|
+
};
|
|
31326
|
+
/**
|
|
31327
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31328
|
+
* @default true
|
|
31329
|
+
*/
|
|
31330
|
+
showAuthCarousel: boolean;
|
|
31204
31331
|
};
|
|
31205
31332
|
};
|
|
31206
31333
|
/**
|
|
@@ -31281,6 +31408,28 @@ interface components$5 {
|
|
|
31281
31408
|
dashboard: {
|
|
31282
31409
|
[key: string]: unknown;
|
|
31283
31410
|
};
|
|
31411
|
+
/** @description 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. */
|
|
31412
|
+
links?: {
|
|
31413
|
+
/**
|
|
31414
|
+
* Format: uri
|
|
31415
|
+
* @description URL of the organization's Terms of Service page.
|
|
31416
|
+
*/
|
|
31417
|
+
termsOfService?: string;
|
|
31418
|
+
/**
|
|
31419
|
+
* Format: uri
|
|
31420
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31421
|
+
*/
|
|
31422
|
+
privacy?: string;
|
|
31423
|
+
/** @description 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. */
|
|
31424
|
+
support?: {
|
|
31425
|
+
[key: string]: string;
|
|
31426
|
+
};
|
|
31427
|
+
};
|
|
31428
|
+
/**
|
|
31429
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31430
|
+
* @default true
|
|
31431
|
+
*/
|
|
31432
|
+
showAuthCarousel: boolean;
|
|
31284
31433
|
};
|
|
31285
31434
|
};
|
|
31286
31435
|
/** @description Team listing record used in team listings associated with an organization. */
|
|
@@ -31554,6 +31703,28 @@ interface components$5 {
|
|
|
31554
31703
|
dashboard: {
|
|
31555
31704
|
[key: string]: unknown;
|
|
31556
31705
|
};
|
|
31706
|
+
/** @description 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. */
|
|
31707
|
+
links?: {
|
|
31708
|
+
/**
|
|
31709
|
+
* Format: uri
|
|
31710
|
+
* @description URL of the organization's Terms of Service page.
|
|
31711
|
+
*/
|
|
31712
|
+
termsOfService?: string;
|
|
31713
|
+
/**
|
|
31714
|
+
* Format: uri
|
|
31715
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31716
|
+
*/
|
|
31717
|
+
privacy?: string;
|
|
31718
|
+
/** @description 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. */
|
|
31719
|
+
support?: {
|
|
31720
|
+
[key: string]: string;
|
|
31721
|
+
};
|
|
31722
|
+
};
|
|
31723
|
+
/**
|
|
31724
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31725
|
+
* @default true
|
|
31726
|
+
*/
|
|
31727
|
+
showAuthCarousel?: boolean;
|
|
31557
31728
|
};
|
|
31558
31729
|
};
|
|
31559
31730
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -30801,6 +30801,23 @@ interface components$5 {
|
|
|
30801
30801
|
DashboardPrefs: {
|
|
30802
30802
|
[key: string]: unknown;
|
|
30803
30803
|
};
|
|
30804
|
+
/** @description 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. */
|
|
30805
|
+
Links: {
|
|
30806
|
+
/**
|
|
30807
|
+
* Format: uri
|
|
30808
|
+
* @description URL of the organization's Terms of Service page.
|
|
30809
|
+
*/
|
|
30810
|
+
termsOfService?: string;
|
|
30811
|
+
/**
|
|
30812
|
+
* Format: uri
|
|
30813
|
+
* @description URL of the organization's Privacy Policy page.
|
|
30814
|
+
*/
|
|
30815
|
+
privacy?: string;
|
|
30816
|
+
/** @description 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. */
|
|
30817
|
+
support?: {
|
|
30818
|
+
[key: string]: string;
|
|
30819
|
+
};
|
|
30820
|
+
};
|
|
30804
30821
|
/** @description Organization-level user experience preferences. */
|
|
30805
30822
|
Preferences: {
|
|
30806
30823
|
/** @description UI theme configured for an organization. */
|
|
@@ -30850,6 +30867,28 @@ interface components$5 {
|
|
|
30850
30867
|
dashboard: {
|
|
30851
30868
|
[key: string]: unknown;
|
|
30852
30869
|
};
|
|
30870
|
+
/** @description 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. */
|
|
30871
|
+
links?: {
|
|
30872
|
+
/**
|
|
30873
|
+
* Format: uri
|
|
30874
|
+
* @description URL of the organization's Terms of Service page.
|
|
30875
|
+
*/
|
|
30876
|
+
termsOfService?: string;
|
|
30877
|
+
/**
|
|
30878
|
+
* Format: uri
|
|
30879
|
+
* @description URL of the organization's Privacy Policy page.
|
|
30880
|
+
*/
|
|
30881
|
+
privacy?: string;
|
|
30882
|
+
/** @description 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. */
|
|
30883
|
+
support?: {
|
|
30884
|
+
[key: string]: string;
|
|
30885
|
+
};
|
|
30886
|
+
};
|
|
30887
|
+
/**
|
|
30888
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
30889
|
+
* @default true
|
|
30890
|
+
*/
|
|
30891
|
+
showAuthCarousel: boolean;
|
|
30853
30892
|
};
|
|
30854
30893
|
/** @description Free-form metadata associated with an organization, including preferences. */
|
|
30855
30894
|
OrgMetadata: {
|
|
@@ -30902,6 +30941,28 @@ interface components$5 {
|
|
|
30902
30941
|
dashboard: {
|
|
30903
30942
|
[key: string]: unknown;
|
|
30904
30943
|
};
|
|
30944
|
+
/** @description 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. */
|
|
30945
|
+
links?: {
|
|
30946
|
+
/**
|
|
30947
|
+
* Format: uri
|
|
30948
|
+
* @description URL of the organization's Terms of Service page.
|
|
30949
|
+
*/
|
|
30950
|
+
termsOfService?: string;
|
|
30951
|
+
/**
|
|
30952
|
+
* Format: uri
|
|
30953
|
+
* @description URL of the organization's Privacy Policy page.
|
|
30954
|
+
*/
|
|
30955
|
+
privacy?: string;
|
|
30956
|
+
/** @description 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. */
|
|
30957
|
+
support?: {
|
|
30958
|
+
[key: string]: string;
|
|
30959
|
+
};
|
|
30960
|
+
};
|
|
30961
|
+
/**
|
|
30962
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
30963
|
+
* @default true
|
|
30964
|
+
*/
|
|
30965
|
+
showAuthCarousel: boolean;
|
|
30905
30966
|
};
|
|
30906
30967
|
};
|
|
30907
30968
|
/** @description An organization in Meshery Cloud. Organizations are the top-level tenancy boundary and own teams, workspaces, environments, designs, and other resources. Learn more at https://docs.meshery.io/concepts/logical/organizations */
|
|
@@ -31012,6 +31073,28 @@ interface components$5 {
|
|
|
31012
31073
|
dashboard: {
|
|
31013
31074
|
[key: string]: unknown;
|
|
31014
31075
|
};
|
|
31076
|
+
/** @description 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. */
|
|
31077
|
+
links?: {
|
|
31078
|
+
/**
|
|
31079
|
+
* Format: uri
|
|
31080
|
+
* @description URL of the organization's Terms of Service page.
|
|
31081
|
+
*/
|
|
31082
|
+
termsOfService?: string;
|
|
31083
|
+
/**
|
|
31084
|
+
* Format: uri
|
|
31085
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31086
|
+
*/
|
|
31087
|
+
privacy?: string;
|
|
31088
|
+
/** @description 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. */
|
|
31089
|
+
support?: {
|
|
31090
|
+
[key: string]: string;
|
|
31091
|
+
};
|
|
31092
|
+
};
|
|
31093
|
+
/**
|
|
31094
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31095
|
+
* @default true
|
|
31096
|
+
*/
|
|
31097
|
+
showAuthCarousel: boolean;
|
|
31015
31098
|
};
|
|
31016
31099
|
};
|
|
31017
31100
|
/**
|
|
@@ -31106,6 +31189,28 @@ interface components$5 {
|
|
|
31106
31189
|
dashboard: {
|
|
31107
31190
|
[key: string]: unknown;
|
|
31108
31191
|
};
|
|
31192
|
+
/** @description 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. */
|
|
31193
|
+
links?: {
|
|
31194
|
+
/**
|
|
31195
|
+
* Format: uri
|
|
31196
|
+
* @description URL of the organization's Terms of Service page.
|
|
31197
|
+
*/
|
|
31198
|
+
termsOfService?: string;
|
|
31199
|
+
/**
|
|
31200
|
+
* Format: uri
|
|
31201
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31202
|
+
*/
|
|
31203
|
+
privacy?: string;
|
|
31204
|
+
/** @description 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. */
|
|
31205
|
+
support?: {
|
|
31206
|
+
[key: string]: string;
|
|
31207
|
+
};
|
|
31208
|
+
};
|
|
31209
|
+
/**
|
|
31210
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31211
|
+
* @default true
|
|
31212
|
+
*/
|
|
31213
|
+
showAuthCarousel: boolean;
|
|
31109
31214
|
};
|
|
31110
31215
|
};
|
|
31111
31216
|
/**
|
|
@@ -31201,6 +31306,28 @@ interface components$5 {
|
|
|
31201
31306
|
dashboard: {
|
|
31202
31307
|
[key: string]: unknown;
|
|
31203
31308
|
};
|
|
31309
|
+
/** @description 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. */
|
|
31310
|
+
links?: {
|
|
31311
|
+
/**
|
|
31312
|
+
* Format: uri
|
|
31313
|
+
* @description URL of the organization's Terms of Service page.
|
|
31314
|
+
*/
|
|
31315
|
+
termsOfService?: string;
|
|
31316
|
+
/**
|
|
31317
|
+
* Format: uri
|
|
31318
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31319
|
+
*/
|
|
31320
|
+
privacy?: string;
|
|
31321
|
+
/** @description 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. */
|
|
31322
|
+
support?: {
|
|
31323
|
+
[key: string]: string;
|
|
31324
|
+
};
|
|
31325
|
+
};
|
|
31326
|
+
/**
|
|
31327
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31328
|
+
* @default true
|
|
31329
|
+
*/
|
|
31330
|
+
showAuthCarousel: boolean;
|
|
31204
31331
|
};
|
|
31205
31332
|
};
|
|
31206
31333
|
/**
|
|
@@ -31281,6 +31408,28 @@ interface components$5 {
|
|
|
31281
31408
|
dashboard: {
|
|
31282
31409
|
[key: string]: unknown;
|
|
31283
31410
|
};
|
|
31411
|
+
/** @description 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. */
|
|
31412
|
+
links?: {
|
|
31413
|
+
/**
|
|
31414
|
+
* Format: uri
|
|
31415
|
+
* @description URL of the organization's Terms of Service page.
|
|
31416
|
+
*/
|
|
31417
|
+
termsOfService?: string;
|
|
31418
|
+
/**
|
|
31419
|
+
* Format: uri
|
|
31420
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31421
|
+
*/
|
|
31422
|
+
privacy?: string;
|
|
31423
|
+
/** @description 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. */
|
|
31424
|
+
support?: {
|
|
31425
|
+
[key: string]: string;
|
|
31426
|
+
};
|
|
31427
|
+
};
|
|
31428
|
+
/**
|
|
31429
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31430
|
+
* @default true
|
|
31431
|
+
*/
|
|
31432
|
+
showAuthCarousel: boolean;
|
|
31284
31433
|
};
|
|
31285
31434
|
};
|
|
31286
31435
|
/** @description Team listing record used in team listings associated with an organization. */
|
|
@@ -31554,6 +31703,28 @@ interface components$5 {
|
|
|
31554
31703
|
dashboard: {
|
|
31555
31704
|
[key: string]: unknown;
|
|
31556
31705
|
};
|
|
31706
|
+
/** @description 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. */
|
|
31707
|
+
links?: {
|
|
31708
|
+
/**
|
|
31709
|
+
* Format: uri
|
|
31710
|
+
* @description URL of the organization's Terms of Service page.
|
|
31711
|
+
*/
|
|
31712
|
+
termsOfService?: string;
|
|
31713
|
+
/**
|
|
31714
|
+
* Format: uri
|
|
31715
|
+
* @description URL of the organization's Privacy Policy page.
|
|
31716
|
+
*/
|
|
31717
|
+
privacy?: string;
|
|
31718
|
+
/** @description 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. */
|
|
31719
|
+
support?: {
|
|
31720
|
+
[key: string]: string;
|
|
31721
|
+
};
|
|
31722
|
+
};
|
|
31723
|
+
/**
|
|
31724
|
+
* @description Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it.
|
|
31725
|
+
* @default true
|
|
31726
|
+
*/
|
|
31727
|
+
showAuthCarousel?: boolean;
|
|
31557
31728
|
};
|
|
31558
31729
|
};
|
|
31559
31730
|
};
|