@salesforce/lds-adapters-industries-education 1.325.0 → 1.327.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.
@@ -1444,6 +1444,13 @@ function validate$14(obj, path = 'Application') {
1444
1444
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
1445
1445
  }
1446
1446
  }
1447
+ if (obj.statusLabel !== undefined) {
1448
+ const obj_statusLabel = obj.statusLabel;
1449
+ const path_statusLabel = path + '.statusLabel';
1450
+ if (typeof obj_statusLabel !== 'string') {
1451
+ return new TypeError('Expected "string" but received "' + typeof obj_statusLabel + '" (at "' + path_statusLabel + '")');
1452
+ }
1453
+ }
1447
1454
  if (obj.submitter !== undefined) {
1448
1455
  const obj_submitter = obj.submitter;
1449
1456
  const path_submitter = path + '.submitter';
@@ -1822,6 +1829,13 @@ function validate$10(obj, path = 'IndividualApplicationTask') {
1822
1829
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
1823
1830
  }
1824
1831
  }
1832
+ if (obj.statusLabel !== undefined) {
1833
+ const obj_statusLabel = obj.statusLabel;
1834
+ const path_statusLabel = path + '.statusLabel';
1835
+ if (typeof obj_statusLabel !== 'string') {
1836
+ return new TypeError('Expected "string" but received "' + typeof obj_statusLabel + '" (at "' + path_statusLabel + '")');
1837
+ }
1838
+ }
1825
1839
  })();
1826
1840
  return v_error === undefined ? null : v_error;
1827
1841
  }
@@ -1914,6 +1928,13 @@ function validate$$(obj, path = 'GetApplicationDetailsResult') {
1914
1928
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
1915
1929
  }
1916
1930
  }
1931
+ if (obj.statusLabel !== undefined) {
1932
+ const obj_statusLabel = obj.statusLabel;
1933
+ const path_statusLabel = path + '.statusLabel';
1934
+ if (typeof obj_statusLabel !== 'string') {
1935
+ return new TypeError('Expected "string" but received "' + typeof obj_statusLabel + '" (at "' + path_statusLabel + '")');
1936
+ }
1937
+ }
1917
1938
  if (obj.submitter !== undefined) {
1918
1939
  const obj_submitter = obj.submitter;
1919
1940
  const path_submitter = path + '.submitter';
@@ -1,7 +1,7 @@
1
1
  import { Applicant as Applicant_Applicant } from './Applicant';
2
2
  import { Submitter as Submitter_Submitter } from './Submitter';
3
3
  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';
4
- export declare const VERSION = "49723c0ed8366f48b6fe753d9d739f02";
4
+ export declare const VERSION = "fd2a66c5e3ae4a72f669b79e22d913d6";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export declare function normalize(input: Application, existing: ApplicationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ApplicationNormalized;
@@ -34,6 +34,8 @@ export interface ApplicationNormalized {
34
34
  requiredItemsCompleted?: number;
35
35
  /** The status of an application. */
36
36
  status?: string;
37
+ /** The status label of an application. */
38
+ statusLabel?: string;
37
39
  submitter?: Submitter_Submitter;
38
40
  /** The name of the academic term associated with an application. */
39
41
  termName?: string;
@@ -56,6 +58,7 @@ export interface Application {
56
58
  programName?: string;
57
59
  requiredItemsCompleted?: number;
58
60
  status?: string;
61
+ statusLabel?: string;
59
62
  submitter?: Submitter_Submitter;
60
63
  termName?: string;
61
64
  totalRequiredItems?: number;
@@ -2,7 +2,7 @@ import { Applicant as Applicant_Applicant } from './Applicant';
2
2
  import { IndividualApplicationTask as IndividualApplicationTask_IndividualApplicationTask } from './IndividualApplicationTask';
3
3
  import { Submitter as Submitter_Submitter } from './Submitter';
4
4
  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';
5
- export declare const VERSION = "c4b190c65532d5014d1cbda0ef2f86b1";
5
+ export declare const VERSION = "79f5579a6614569e6ab06e0b1112c470";
6
6
  export declare function validate(obj: any, path?: string): TypeError | null;
7
7
  export declare const RepresentationType: string;
8
8
  export declare function normalize(input: GetApplicationDetailsResult, existing: GetApplicationDetailsResultNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): GetApplicationDetailsResultNormalized;
@@ -37,6 +37,8 @@ export interface GetApplicationDetailsResultNormalized {
37
37
  requiredItemsCompleted?: number;
38
38
  /** The status of an application. */
39
39
  status?: string;
40
+ /** The status label of an application. */
41
+ statusLabel?: string;
40
42
  submitter?: Submitter_Submitter;
41
43
  /** The name of the academic term associated with an application. */
42
44
  termName?: string;
@@ -60,6 +62,7 @@ export interface GetApplicationDetailsResult {
60
62
  programName?: string;
61
63
  requiredItemsCompleted?: number;
62
64
  status?: string;
65
+ statusLabel?: string;
63
66
  submitter?: Submitter_Submitter;
64
67
  termName?: string;
65
68
  totalRequiredItems?: number;
@@ -1,6 +1,6 @@
1
1
  import { ApplicationRenderMethod as ApplicationRenderMethod_ApplicationRenderMethod } from './ApplicationRenderMethod';
2
2
  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';
3
- export declare const VERSION = "64b194a3d9505f8e2f1a9d39dc830308";
3
+ export declare const VERSION = "7b00d7b23bee729e6e252161c9451837";
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: IndividualApplicationTask, existing: IndividualApplicationTaskNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IndividualApplicationTaskNormalized;
@@ -37,6 +37,8 @@ export interface IndividualApplicationTaskNormalized {
37
37
  stageName?: string;
38
38
  /** The status of the Individual Application Task. */
39
39
  status?: string;
40
+ /** The translated status label of an individual application task. */
41
+ statusLabel?: string;
40
42
  }
41
43
  /**
42
44
  * Representation of the individual application task.
@@ -56,4 +58,5 @@ export interface IndividualApplicationTask {
56
58
  stageDescription?: string;
57
59
  stageName?: string;
58
60
  status?: string;
61
+ statusLabel?: string;
59
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-education",
3
- "version": "1.325.0",
3
+ "version": "1.327.0",
4
4
  "description": "Education Cloud related actions",
5
5
  "license": "MIT",
6
6
  "main": "dist/es/es2018/industries-education.js",
@@ -46,11 +46,11 @@
46
46
  "test:unit": "jest --config=./jest.config.js"
47
47
  },
48
48
  "dependencies": {
49
- "@salesforce/lds-bindings": "^1.325.0"
49
+ "@salesforce/lds-bindings": "^1.327.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@salesforce/lds-compiler-plugins": "^1.325.0",
53
- "@salesforce/lds-karma": "^1.325.0"
52
+ "@salesforce/lds-compiler-plugins": "^1.327.0",
53
+ "@salesforce/lds-karma": "^1.327.0"
54
54
  },
55
55
  "nx": {
56
56
  "targets": {
package/sfdc/index.js CHANGED
@@ -2247,6 +2247,13 @@ function validate$U(obj, path = 'IndividualApplicationTask') {
2247
2247
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
2248
2248
  }
2249
2249
  }
2250
+ if (obj.statusLabel !== undefined) {
2251
+ const obj_statusLabel = obj.statusLabel;
2252
+ const path_statusLabel = path + '.statusLabel';
2253
+ if (typeof obj_statusLabel !== 'string') {
2254
+ return new TypeError('Expected "string" but received "' + typeof obj_statusLabel + '" (at "' + path_statusLabel + '")');
2255
+ }
2256
+ }
2250
2257
  })();
2251
2258
  return v_error === undefined ? null : v_error;
2252
2259
  }
@@ -2362,6 +2369,13 @@ function validate$S(obj, path = 'GetApplicationDetailsResult') {
2362
2369
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
2363
2370
  }
2364
2371
  }
2372
+ if (obj.statusLabel !== undefined) {
2373
+ const obj_statusLabel = obj.statusLabel;
2374
+ const path_statusLabel = path + '.statusLabel';
2375
+ if (typeof obj_statusLabel !== 'string') {
2376
+ return new TypeError('Expected "string" but received "' + typeof obj_statusLabel + '" (at "' + path_statusLabel + '")');
2377
+ }
2378
+ }
2365
2379
  if (obj.submitter !== undefined) {
2366
2380
  const obj_submitter = obj.submitter;
2367
2381
  const path_submitter = path + '.submitter';
@@ -2659,6 +2673,13 @@ function validate$Q(obj, path = 'Application') {
2659
2673
  return new TypeError('Expected "string" but received "' + typeof obj_status + '" (at "' + path_status + '")');
2660
2674
  }
2661
2675
  }
2676
+ if (obj.statusLabel !== undefined) {
2677
+ const obj_statusLabel = obj.statusLabel;
2678
+ const path_statusLabel = path + '.statusLabel';
2679
+ if (typeof obj_statusLabel !== 'string') {
2680
+ return new TypeError('Expected "string" but received "' + typeof obj_statusLabel + '" (at "' + path_statusLabel + '")');
2681
+ }
2682
+ }
2662
2683
  if (obj.submitter !== undefined) {
2663
2684
  const obj_submitter = obj.submitter;
2664
2685
  const path_submitter = path + '.submitter';
@@ -10248,4 +10269,4 @@ withDefaultLuvio((luvio) => {
10248
10269
  });
10249
10270
 
10250
10271
  export { createCarePlans, createLearnings, createPreliminaryApplicationReferences, createTask, getAcademicTerms, getAcademicTerms_imperative, getApplicationDetails, getApplicationDetails_imperative, getApplications, getApplications_imperative, getAptsTasksPlans, getAptsTasksPlans_imperative, getAvailableTimeSlots, getAvailableTimeSlots_imperative, getAvailableTopics, getAvailableTopics_imperative, getIndividualApplicationTask, getIndividualApplicationTask_imperative, getLearnerProgress, getLearnerProgress_imperative, getLearning, getLearning_imperative, getNewApplicationPreliminaryData, getNewApplicationPreliminaryData_imperative, getPersonPublicProfile, getPersonPublicProfile_imperative, getPicklistValues, getPicklistValues_imperative, getPreviewLearningProgramPlan, getPreviewLearningProgramPlan_imperative, getProgramTermApplicationTimelines, getProgramTermApplicationTimelines_imperative, getSuccessTeam, getSuccessTeam_imperative, postBenefitAssignment, postMatchingSelector, postMatchingSelector_imperative, postPublishLearningProgramPlan, postValidateLearningFoundationList, postValidateLearningFoundationList_imperative, updateLearnings, updateTaskStatus };
10251
- // version: 1.325.0-19eed1b9b8
10272
+ // version: 1.327.0-a29a47f236
package/src/raml/api.raml CHANGED
@@ -303,6 +303,10 @@ types:
303
303
  description: The status of an application.
304
304
  type: string
305
305
  required: false
306
+ statusLabel:
307
+ description: The status label of an application.
308
+ type: string
309
+ required: false
306
310
  submitter:
307
311
  description: Data for the submitter of an application.
308
312
  type: Submitter
@@ -1216,6 +1220,10 @@ types:
1216
1220
  description: The status of an application.
1217
1221
  type: string
1218
1222
  required: false
1223
+ statusLabel:
1224
+ description: The status label of an application.
1225
+ type: string
1226
+ required: false
1219
1227
  submitter:
1220
1228
  description: Data for the submitter of an application.
1221
1229
  type: Submitter
@@ -1366,6 +1374,10 @@ types:
1366
1374
  description: The status of the Individual Application Task.
1367
1375
  type: string
1368
1376
  required: false
1377
+ statusLabel:
1378
+ description: The translated status label of an individual application task.
1379
+ type: string
1380
+ required: false
1369
1381
  IndividualApplicationTaskOutputRepresentation:
1370
1382
  description: Representation of the output for the get individual application task
1371
1383
  request.