@salesforce/lds-adapters-platform-external-connectivity 1.327.0 → 1.329.0

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.
@@ -1146,6 +1146,32 @@ function validate$a(obj, path = 'AuthenticationParameterDefinitionRepresentation
1146
1146
  if (typeof obj_description !== 'string') {
1147
1147
  return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
1148
1148
  }
1149
+ const obj_helpText = obj.helpText;
1150
+ const path_helpText = path + '.helpText';
1151
+ let obj_helpText_union0 = null;
1152
+ const obj_helpText_union0_error = (() => {
1153
+ if (typeof obj_helpText !== 'string') {
1154
+ return new TypeError('Expected "string" but received "' + typeof obj_helpText + '" (at "' + path_helpText + '")');
1155
+ }
1156
+ })();
1157
+ if (obj_helpText_union0_error != null) {
1158
+ obj_helpText_union0 = obj_helpText_union0_error.message;
1159
+ }
1160
+ let obj_helpText_union1 = null;
1161
+ const obj_helpText_union1_error = (() => {
1162
+ if (obj_helpText !== null) {
1163
+ return new TypeError('Expected "null" but received "' + typeof obj_helpText + '" (at "' + path_helpText + '")');
1164
+ }
1165
+ })();
1166
+ if (obj_helpText_union1_error != null) {
1167
+ obj_helpText_union1 = obj_helpText_union1_error.message;
1168
+ }
1169
+ if (obj_helpText_union0 && obj_helpText_union1) {
1170
+ let message = 'Object doesn\'t match union (at "' + path_helpText + '")';
1171
+ message += '\n' + obj_helpText_union0.split('\n').map((line) => '\t' + line).join('\n');
1172
+ message += '\n' + obj_helpText_union1.split('\n').map((line) => '\t' + line).join('\n');
1173
+ return new TypeError(message);
1174
+ }
1149
1175
  const obj_label = obj.label;
1150
1176
  const path_label = path + '.label';
1151
1177
  if (typeof obj_label !== 'string') {
@@ -2559,6 +2585,11 @@ function validate$1(obj, path = 'IcStandardExternalIdentityProviderRepresentatio
2559
2585
  if (typeof obj_label !== 'string') {
2560
2586
  return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
2561
2587
  }
2588
+ const obj_prefixedFullName = obj.prefixedFullName;
2589
+ const path_prefixedFullName = path + '.prefixedFullName';
2590
+ if (typeof obj_prefixedFullName !== 'string') {
2591
+ return new TypeError('Expected "string" but received "' + typeof obj_prefixedFullName + '" (at "' + path_prefixedFullName + '")');
2592
+ }
2562
2593
  })();
2563
2594
  return v_error === undefined ? null : v_error;
2564
2595
  }
@@ -1,5 +1,5 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "66295146e074f20bfc229bd375d6664b";
2
+ export declare const VERSION = "daafc7db8fe4ae9f78b3528d687912b0";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export declare function normalize(input: AuthenticationParameterDefinitionRepresentation, existing: AuthenticationParameterDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AuthenticationParameterDefinitionRepresentationNormalized;
@@ -16,6 +16,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
16
  export interface AuthenticationParameterDefinitionRepresentationNormalized {
17
17
  /** External Connectivity Connector Authentication Parameter Definition Description */
18
18
  description: string;
19
+ /** External Connectivity Connector Authentication Parameter Definition Help Text */
20
+ helpText: string | null;
19
21
  /** External Connectivity Connector Authentication Parameter Definition Label */
20
22
  label: string;
21
23
  /** External Connectivity Connector Authentication Parameter Definition Max Length */
@@ -37,6 +39,7 @@ export interface AuthenticationParameterDefinitionRepresentationNormalized {
37
39
  */
38
40
  export interface AuthenticationParameterDefinitionRepresentation {
39
41
  description: string;
42
+ helpText: string | null;
40
43
  label: string;
41
44
  maxLength: number;
42
45
  name: string;
@@ -1,6 +1,6 @@
1
1
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
2
  export declare const TTL = 500;
3
- export declare const VERSION = "2ed73892fc6e4143a3fc965f7e47d2d7";
3
+ export declare const VERSION = "d034280fb236e2927cc856638976bef1";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: IcStandardExternalIdentityProviderRepresentation, existing: IcStandardExternalIdentityProviderRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IcStandardExternalIdentityProviderRepresentationNormalized;
@@ -21,6 +21,8 @@ export interface IcStandardExternalIdentityProviderRepresentationNormalized {
21
21
  fullName: string;
22
22
  /** Ic Standard External Identity Provider Label */
23
23
  label: string;
24
+ /** Ic Standard External Identity Provider Prefixed Full Name */
25
+ prefixedFullName: string;
24
26
  }
25
27
  /**
26
28
  * Output representation for Ic Standard External Identity Provider
@@ -32,4 +34,5 @@ export interface IcStandardExternalIdentityProviderRepresentation {
32
34
  environment: string;
33
35
  fullName: string;
34
36
  label: string;
37
+ prefixedFullName: string;
35
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-platform-external-connectivity",
3
- "version": "1.327.0",
3
+ "version": "1.329.0",
4
4
  "description": "A set of API for external connectivity",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/platform-external-connectivity.js",
@@ -41,10 +41,10 @@
41
41
  "test:unit:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand"
42
42
  },
43
43
  "dependencies": {
44
- "@salesforce/lds-bindings": "^1.327.0"
44
+ "@salesforce/lds-bindings": "^1.329.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@salesforce/lds-compiler-plugins": "^1.327.0"
47
+ "@salesforce/lds-compiler-plugins": "^1.329.0"
48
48
  },
49
49
  "nx": {
50
50
  "targets": {
package/sfdc/index.js CHANGED
@@ -538,6 +538,32 @@ function validate$e(obj, path = 'AuthenticationParameterDefinitionRepresentation
538
538
  if (typeof obj_description !== 'string') {
539
539
  return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
540
540
  }
541
+ const obj_helpText = obj.helpText;
542
+ const path_helpText = path + '.helpText';
543
+ let obj_helpText_union0 = null;
544
+ const obj_helpText_union0_error = (() => {
545
+ if (typeof obj_helpText !== 'string') {
546
+ return new TypeError('Expected "string" but received "' + typeof obj_helpText + '" (at "' + path_helpText + '")');
547
+ }
548
+ })();
549
+ if (obj_helpText_union0_error != null) {
550
+ obj_helpText_union0 = obj_helpText_union0_error.message;
551
+ }
552
+ let obj_helpText_union1 = null;
553
+ const obj_helpText_union1_error = (() => {
554
+ if (obj_helpText !== null) {
555
+ return new TypeError('Expected "null" but received "' + typeof obj_helpText + '" (at "' + path_helpText + '")');
556
+ }
557
+ })();
558
+ if (obj_helpText_union1_error != null) {
559
+ obj_helpText_union1 = obj_helpText_union1_error.message;
560
+ }
561
+ if (obj_helpText_union0 && obj_helpText_union1) {
562
+ let message = 'Object doesn\'t match union (at "' + path_helpText + '")';
563
+ message += '\n' + obj_helpText_union0.split('\n').map((line) => '\t' + line).join('\n');
564
+ message += '\n' + obj_helpText_union1.split('\n').map((line) => '\t' + line).join('\n');
565
+ return new TypeError(message);
566
+ }
541
567
  const obj_label = obj.label;
542
568
  const path_label = path + '.label';
543
569
  if (typeof obj_label !== 'string') {
@@ -2044,6 +2070,11 @@ function validate$3(obj, path = 'IcStandardExternalIdentityProviderRepresentatio
2044
2070
  if (typeof obj_label !== 'string') {
2045
2071
  return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
2046
2072
  }
2073
+ const obj_prefixedFullName = obj.prefixedFullName;
2074
+ const path_prefixedFullName = path + '.prefixedFullName';
2075
+ if (typeof obj_prefixedFullName !== 'string') {
2076
+ return new TypeError('Expected "string" but received "' + typeof obj_prefixedFullName + '" (at "' + path_prefixedFullName + '")');
2077
+ }
2047
2078
  })();
2048
2079
  return v_error === undefined ? null : v_error;
2049
2080
  }
@@ -2871,4 +2902,4 @@ withDefaultLuvio((luvio) => {
2871
2902
  });
2872
2903
 
2873
2904
  export { createConnection, deleteConnection, getConnectionDetails, getConnectionDetails_imperative, getConnections, getConnections_imperative, getConnectorDetails, getConnectorDetails_imperative, getConnectors, getConnectors_imperative, getExternalIdentityProviders, getExternalIdentityProviders_imperative, refreshMetadata, testConnection, updateConnection };
2874
- // version: 1.327.0-a29a47f236
2905
+ // version: 1.329.0-beac2bb064
package/src/raml/api.raml CHANGED
@@ -34,6 +34,10 @@ types:
34
34
  description: External Connectivity Connector Authentication Parameter Definition
35
35
  Description
36
36
  type: string
37
+ helpText:
38
+ description: External Connectivity Connector Authentication Parameter Definition
39
+ Help Text
40
+ type: string | nil
37
41
  label:
38
42
  description: External Connectivity Connector Authentication Parameter Definition
39
43
  Label
@@ -407,6 +411,9 @@ types:
407
411
  label:
408
412
  description: Ic Standard External Identity Provider Label
409
413
  type: string
414
+ prefixedFullName:
415
+ description: Ic Standard External Identity Provider Prefixed Full Name
416
+ type: string
410
417
 
411
418
  /external-connectivity:
412
419
  /connections: