@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.
@@ -8354,6 +8354,8 @@ type GetUserCredentialsApiResponse = {
8354
8354
  name: string;
8355
8355
  /** UUID of the user who owns this credential. */
8356
8356
  userId: string;
8357
+ /** 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. */
8358
+ orgOwner?: string;
8357
8359
  /** Credential type (e.g. token, basic, AWS). */
8358
8360
  type: string;
8359
8361
  /** Key-value pairs containing the sensitive credential data. */
@@ -8391,6 +8393,8 @@ type SaveUserCredentialApiResponse = {
8391
8393
  name: string;
8392
8394
  /** UUID of the user who owns this credential. */
8393
8395
  userId: string;
8396
+ /** 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. */
8397
+ orgOwner?: string;
8394
8398
  /** Credential type (e.g. token, basic, AWS). */
8395
8399
  type: string;
8396
8400
  /** Key-value pairs containing the sensitive credential data. */
@@ -8410,6 +8414,8 @@ type SaveUserCredentialApiArg = {
8410
8414
  name: string;
8411
8415
  /** UUID of the user who owns this credential. */
8412
8416
  userId?: string;
8417
+ /** 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. */
8418
+ orgOwner?: string;
8413
8419
  /** Credential type (e.g. token, basic, AWS). */
8414
8420
  type: string;
8415
8421
  /** Key-value pairs containing the sensitive credential data. */
@@ -8423,6 +8429,8 @@ type UpdateUserCredentialApiResponse = {
8423
8429
  name: string;
8424
8430
  /** UUID of the user who owns this credential. */
8425
8431
  userId: string;
8432
+ /** 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. */
8433
+ orgOwner?: string;
8426
8434
  /** Credential type (e.g. token, basic, AWS). */
8427
8435
  type: string;
8428
8436
  /** Key-value pairs containing the sensitive credential data. */
@@ -8442,6 +8450,8 @@ type UpdateUserCredentialApiArg = {
8442
8450
  name: string;
8443
8451
  /** UUID of the user who owns this credential. */
8444
8452
  userId?: string;
8453
+ /** 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. */
8454
+ orgOwner?: string;
8445
8455
  /** Credential type (e.g. token, basic, AWS). */
8446
8456
  type: string;
8447
8457
  /** Key-value pairs containing the sensitive credential data. */
@@ -8460,6 +8470,8 @@ type GetCredentialByIdApiResponse = {
8460
8470
  name: string;
8461
8471
  /** UUID of the user who owns this credential. */
8462
8472
  userId: string;
8473
+ /** 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. */
8474
+ orgOwner?: string;
8463
8475
  /** Credential type (e.g. token, basic, AWS). */
8464
8476
  type: string;
8465
8477
  /** Key-value pairs containing the sensitive credential data. */
@@ -8604,7 +8616,7 @@ type GetOrgsApiResponse = {
8604
8616
  answer: string;
8605
8617
  }[];
8606
8618
  };
8607
- /** 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. */
8619
+ /** 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. */
8608
8620
  links?: {
8609
8621
  /** URL of the organization's Terms of Service page. */
8610
8622
  termsOfService?: string;
@@ -8614,6 +8626,13 @@ type GetOrgsApiResponse = {
8614
8626
  support?: {
8615
8627
  [key: string]: string;
8616
8628
  };
8629
+ /** 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. */
8630
+ social?: {
8631
+ /** URL of the organization's LinkedIn profile. */
8632
+ linkedin?: string;
8633
+ /** URL of the organization's X (formerly Twitter) profile. */
8634
+ x?: string;
8635
+ };
8617
8636
  };
8618
8637
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8619
8638
  showAuthCarousel?: boolean;
@@ -8729,7 +8748,7 @@ type CreateOrgApiResponse = {
8729
8748
  answer: string;
8730
8749
  }[];
8731
8750
  };
8732
- /** 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. */
8751
+ /** 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. */
8733
8752
  links?: {
8734
8753
  /** URL of the organization's Terms of Service page. */
8735
8754
  termsOfService?: string;
@@ -8739,6 +8758,13 @@ type CreateOrgApiResponse = {
8739
8758
  support?: {
8740
8759
  [key: string]: string;
8741
8760
  };
8761
+ /** 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. */
8762
+ social?: {
8763
+ /** URL of the organization's LinkedIn profile. */
8764
+ linkedin?: string;
8765
+ /** URL of the organization's X (formerly Twitter) profile. */
8766
+ x?: string;
8767
+ };
8742
8768
  };
8743
8769
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8744
8770
  showAuthCarousel?: boolean;
@@ -8830,7 +8856,7 @@ type CreateOrgApiArg = {
8830
8856
  answer: string;
8831
8857
  }[];
8832
8858
  };
8833
- /** 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. */
8859
+ /** 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. */
8834
8860
  links?: {
8835
8861
  /** URL of the organization's Terms of Service page. */
8836
8862
  termsOfService?: string;
@@ -8840,6 +8866,13 @@ type CreateOrgApiArg = {
8840
8866
  support?: {
8841
8867
  [key: string]: string;
8842
8868
  };
8869
+ /** 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. */
8870
+ social?: {
8871
+ /** URL of the organization's LinkedIn profile. */
8872
+ linkedin?: string;
8873
+ /** URL of the organization's X (formerly Twitter) profile. */
8874
+ x?: string;
8875
+ };
8843
8876
  };
8844
8877
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8845
8878
  showAuthCarousel?: boolean;
@@ -8964,7 +8997,7 @@ type GetOrgApiResponse = {
8964
8997
  answer: string;
8965
8998
  }[];
8966
8999
  };
8967
- /** 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. */
9000
+ /** 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. */
8968
9001
  links?: {
8969
9002
  /** URL of the organization's Terms of Service page. */
8970
9003
  termsOfService?: string;
@@ -8974,6 +9007,13 @@ type GetOrgApiResponse = {
8974
9007
  support?: {
8975
9008
  [key: string]: string;
8976
9009
  };
9010
+ /** 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. */
9011
+ social?: {
9012
+ /** URL of the organization's LinkedIn profile. */
9013
+ linkedin?: string;
9014
+ /** URL of the organization's X (formerly Twitter) profile. */
9015
+ x?: string;
9016
+ };
8977
9017
  };
8978
9018
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8979
9019
  showAuthCarousel?: boolean;
@@ -9086,7 +9126,7 @@ type UpdateOrgApiResponse = {
9086
9126
  answer: string;
9087
9127
  }[];
9088
9128
  };
9089
- /** 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. */
9129
+ /** 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. */
9090
9130
  links?: {
9091
9131
  /** URL of the organization's Terms of Service page. */
9092
9132
  termsOfService?: string;
@@ -9096,6 +9136,13 @@ type UpdateOrgApiResponse = {
9096
9136
  support?: {
9097
9137
  [key: string]: string;
9098
9138
  };
9139
+ /** 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. */
9140
+ social?: {
9141
+ /** URL of the organization's LinkedIn profile. */
9142
+ linkedin?: string;
9143
+ /** URL of the organization's X (formerly Twitter) profile. */
9144
+ x?: string;
9145
+ };
9099
9146
  };
9100
9147
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
9101
9148
  showAuthCarousel?: boolean;
@@ -9189,7 +9236,7 @@ type UpdateOrgApiArg = {
9189
9236
  answer: string;
9190
9237
  }[];
9191
9238
  };
9192
- /** 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. */
9239
+ /** 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. */
9193
9240
  links?: {
9194
9241
  /** URL of the organization's Terms of Service page. */
9195
9242
  termsOfService?: string;
@@ -9199,6 +9246,13 @@ type UpdateOrgApiArg = {
9199
9246
  support?: {
9200
9247
  [key: string]: string;
9201
9248
  };
9249
+ /** 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. */
9250
+ social?: {
9251
+ /** URL of the organization's LinkedIn profile. */
9252
+ linkedin?: string;
9253
+ /** URL of the organization's X (formerly Twitter) profile. */
9254
+ x?: string;
9255
+ };
9202
9256
  };
9203
9257
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
9204
9258
  showAuthCarousel?: boolean;
@@ -9271,7 +9325,7 @@ type GetOrgPreferencesApiResponse = {
9271
9325
  answer: string;
9272
9326
  }[];
9273
9327
  };
9274
- /** 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. */
9328
+ /** 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. */
9275
9329
  links?: {
9276
9330
  /** URL of the organization's Terms of Service page. */
9277
9331
  termsOfService?: string;
@@ -9281,6 +9335,13 @@ type GetOrgPreferencesApiResponse = {
9281
9335
  support?: {
9282
9336
  [key: string]: string;
9283
9337
  };
9338
+ /** 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. */
9339
+ social?: {
9340
+ /** URL of the organization's LinkedIn profile. */
9341
+ linkedin?: string;
9342
+ /** URL of the organization's X (formerly Twitter) profile. */
9343
+ x?: string;
9344
+ };
9284
9345
  };
9285
9346
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
9286
9347
  showAuthCarousel?: boolean;
@@ -8354,6 +8354,8 @@ type GetUserCredentialsApiResponse = {
8354
8354
  name: string;
8355
8355
  /** UUID of the user who owns this credential. */
8356
8356
  userId: string;
8357
+ /** 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. */
8358
+ orgOwner?: string;
8357
8359
  /** Credential type (e.g. token, basic, AWS). */
8358
8360
  type: string;
8359
8361
  /** Key-value pairs containing the sensitive credential data. */
@@ -8391,6 +8393,8 @@ type SaveUserCredentialApiResponse = {
8391
8393
  name: string;
8392
8394
  /** UUID of the user who owns this credential. */
8393
8395
  userId: string;
8396
+ /** 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. */
8397
+ orgOwner?: string;
8394
8398
  /** Credential type (e.g. token, basic, AWS). */
8395
8399
  type: string;
8396
8400
  /** Key-value pairs containing the sensitive credential data. */
@@ -8410,6 +8414,8 @@ type SaveUserCredentialApiArg = {
8410
8414
  name: string;
8411
8415
  /** UUID of the user who owns this credential. */
8412
8416
  userId?: string;
8417
+ /** 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. */
8418
+ orgOwner?: string;
8413
8419
  /** Credential type (e.g. token, basic, AWS). */
8414
8420
  type: string;
8415
8421
  /** Key-value pairs containing the sensitive credential data. */
@@ -8423,6 +8429,8 @@ type UpdateUserCredentialApiResponse = {
8423
8429
  name: string;
8424
8430
  /** UUID of the user who owns this credential. */
8425
8431
  userId: string;
8432
+ /** 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. */
8433
+ orgOwner?: string;
8426
8434
  /** Credential type (e.g. token, basic, AWS). */
8427
8435
  type: string;
8428
8436
  /** Key-value pairs containing the sensitive credential data. */
@@ -8442,6 +8450,8 @@ type UpdateUserCredentialApiArg = {
8442
8450
  name: string;
8443
8451
  /** UUID of the user who owns this credential. */
8444
8452
  userId?: string;
8453
+ /** 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. */
8454
+ orgOwner?: string;
8445
8455
  /** Credential type (e.g. token, basic, AWS). */
8446
8456
  type: string;
8447
8457
  /** Key-value pairs containing the sensitive credential data. */
@@ -8460,6 +8470,8 @@ type GetCredentialByIdApiResponse = {
8460
8470
  name: string;
8461
8471
  /** UUID of the user who owns this credential. */
8462
8472
  userId: string;
8473
+ /** 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. */
8474
+ orgOwner?: string;
8463
8475
  /** Credential type (e.g. token, basic, AWS). */
8464
8476
  type: string;
8465
8477
  /** Key-value pairs containing the sensitive credential data. */
@@ -8604,7 +8616,7 @@ type GetOrgsApiResponse = {
8604
8616
  answer: string;
8605
8617
  }[];
8606
8618
  };
8607
- /** 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. */
8619
+ /** 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. */
8608
8620
  links?: {
8609
8621
  /** URL of the organization's Terms of Service page. */
8610
8622
  termsOfService?: string;
@@ -8614,6 +8626,13 @@ type GetOrgsApiResponse = {
8614
8626
  support?: {
8615
8627
  [key: string]: string;
8616
8628
  };
8629
+ /** 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. */
8630
+ social?: {
8631
+ /** URL of the organization's LinkedIn profile. */
8632
+ linkedin?: string;
8633
+ /** URL of the organization's X (formerly Twitter) profile. */
8634
+ x?: string;
8635
+ };
8617
8636
  };
8618
8637
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8619
8638
  showAuthCarousel?: boolean;
@@ -8729,7 +8748,7 @@ type CreateOrgApiResponse = {
8729
8748
  answer: string;
8730
8749
  }[];
8731
8750
  };
8732
- /** 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. */
8751
+ /** 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. */
8733
8752
  links?: {
8734
8753
  /** URL of the organization's Terms of Service page. */
8735
8754
  termsOfService?: string;
@@ -8739,6 +8758,13 @@ type CreateOrgApiResponse = {
8739
8758
  support?: {
8740
8759
  [key: string]: string;
8741
8760
  };
8761
+ /** 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. */
8762
+ social?: {
8763
+ /** URL of the organization's LinkedIn profile. */
8764
+ linkedin?: string;
8765
+ /** URL of the organization's X (formerly Twitter) profile. */
8766
+ x?: string;
8767
+ };
8742
8768
  };
8743
8769
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8744
8770
  showAuthCarousel?: boolean;
@@ -8830,7 +8856,7 @@ type CreateOrgApiArg = {
8830
8856
  answer: string;
8831
8857
  }[];
8832
8858
  };
8833
- /** 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. */
8859
+ /** 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. */
8834
8860
  links?: {
8835
8861
  /** URL of the organization's Terms of Service page. */
8836
8862
  termsOfService?: string;
@@ -8840,6 +8866,13 @@ type CreateOrgApiArg = {
8840
8866
  support?: {
8841
8867
  [key: string]: string;
8842
8868
  };
8869
+ /** 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. */
8870
+ social?: {
8871
+ /** URL of the organization's LinkedIn profile. */
8872
+ linkedin?: string;
8873
+ /** URL of the organization's X (formerly Twitter) profile. */
8874
+ x?: string;
8875
+ };
8843
8876
  };
8844
8877
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8845
8878
  showAuthCarousel?: boolean;
@@ -8964,7 +8997,7 @@ type GetOrgApiResponse = {
8964
8997
  answer: string;
8965
8998
  }[];
8966
8999
  };
8967
- /** 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. */
9000
+ /** 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. */
8968
9001
  links?: {
8969
9002
  /** URL of the organization's Terms of Service page. */
8970
9003
  termsOfService?: string;
@@ -8974,6 +9007,13 @@ type GetOrgApiResponse = {
8974
9007
  support?: {
8975
9008
  [key: string]: string;
8976
9009
  };
9010
+ /** 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. */
9011
+ social?: {
9012
+ /** URL of the organization's LinkedIn profile. */
9013
+ linkedin?: string;
9014
+ /** URL of the organization's X (formerly Twitter) profile. */
9015
+ x?: string;
9016
+ };
8977
9017
  };
8978
9018
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
8979
9019
  showAuthCarousel?: boolean;
@@ -9086,7 +9126,7 @@ type UpdateOrgApiResponse = {
9086
9126
  answer: string;
9087
9127
  }[];
9088
9128
  };
9089
- /** 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. */
9129
+ /** 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. */
9090
9130
  links?: {
9091
9131
  /** URL of the organization's Terms of Service page. */
9092
9132
  termsOfService?: string;
@@ -9096,6 +9136,13 @@ type UpdateOrgApiResponse = {
9096
9136
  support?: {
9097
9137
  [key: string]: string;
9098
9138
  };
9139
+ /** 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. */
9140
+ social?: {
9141
+ /** URL of the organization's LinkedIn profile. */
9142
+ linkedin?: string;
9143
+ /** URL of the organization's X (formerly Twitter) profile. */
9144
+ x?: string;
9145
+ };
9099
9146
  };
9100
9147
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
9101
9148
  showAuthCarousel?: boolean;
@@ -9189,7 +9236,7 @@ type UpdateOrgApiArg = {
9189
9236
  answer: string;
9190
9237
  }[];
9191
9238
  };
9192
- /** 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. */
9239
+ /** 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. */
9193
9240
  links?: {
9194
9241
  /** URL of the organization's Terms of Service page. */
9195
9242
  termsOfService?: string;
@@ -9199,6 +9246,13 @@ type UpdateOrgApiArg = {
9199
9246
  support?: {
9200
9247
  [key: string]: string;
9201
9248
  };
9249
+ /** 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. */
9250
+ social?: {
9251
+ /** URL of the organization's LinkedIn profile. */
9252
+ linkedin?: string;
9253
+ /** URL of the organization's X (formerly Twitter) profile. */
9254
+ x?: string;
9255
+ };
9202
9256
  };
9203
9257
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
9204
9258
  showAuthCarousel?: boolean;
@@ -9271,7 +9325,7 @@ type GetOrgPreferencesApiResponse = {
9271
9325
  answer: string;
9272
9326
  }[];
9273
9327
  };
9274
- /** 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. */
9328
+ /** 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. */
9275
9329
  links?: {
9276
9330
  /** URL of the organization's Terms of Service page. */
9277
9331
  termsOfService?: string;
@@ -9281,6 +9335,13 @@ type GetOrgPreferencesApiResponse = {
9281
9335
  support?: {
9282
9336
  [key: string]: string;
9283
9337
  };
9338
+ /** 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. */
9339
+ social?: {
9340
+ /** URL of the organization's LinkedIn profile. */
9341
+ linkedin?: string;
9342
+ /** URL of the organization's X (formerly Twitter) profile. */
9343
+ x?: string;
9344
+ };
9284
9345
  };
9285
9346
  /** Whether the feature carousel renders on the organization's auth pages. Unset is treated as true (shown); set false to hide it. */
9286
9347
  showAuthCarousel?: boolean;