@salesforce/lds-adapters-analytics-unifiedanalytics 1.387.0 → 1.388.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.
@@ -8330,6 +8330,13 @@ function validate$q(obj, path = 'SetupRecordShareUserOrGroupRepresentation') {
8330
8330
  return new TypeError('Expected "string" but received "' + typeof obj_email + '" (at "' + path_email + '")');
8331
8331
  }
8332
8332
  }
8333
+ if (obj.groupMemberCount !== undefined) {
8334
+ const obj_groupMemberCount = obj.groupMemberCount;
8335
+ const path_groupMemberCount = path + '.groupMemberCount';
8336
+ if (typeof obj_groupMemberCount !== 'number' || (typeof obj_groupMemberCount === 'number' && Math.floor(obj_groupMemberCount) !== obj_groupMemberCount)) {
8337
+ return new TypeError('Expected "integer" but received "' + typeof obj_groupMemberCount + '" (at "' + path_groupMemberCount + '")');
8338
+ }
8339
+ }
8333
8340
  if (obj.id !== undefined) {
8334
8341
  const obj_id = obj.id;
8335
8342
  const path_id = path + '.id';
@@ -8375,13 +8382,6 @@ function validate$p(obj, path = 'SetupRecordAccessRepresentation') {
8375
8382
  if (typeof obj_createdDate !== 'string') {
8376
8383
  return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
8377
8384
  }
8378
- if (obj.groupMemberCount !== undefined) {
8379
- const obj_groupMemberCount = obj.groupMemberCount;
8380
- const path_groupMemberCount = path + '.groupMemberCount';
8381
- if (typeof obj_groupMemberCount !== 'number' || (typeof obj_groupMemberCount === 'number' && Math.floor(obj_groupMemberCount) !== obj_groupMemberCount)) {
8382
- return new TypeError('Expected "integer" but received "' + typeof obj_groupMemberCount + '" (at "' + path_groupMemberCount + '")');
8383
- }
8384
- }
8385
8385
  const obj_userOrGroup = obj.userOrGroup;
8386
8386
  const path_userOrGroup = path + '.userOrGroup';
8387
8387
  const referencepath_userOrGroupValidationError = validate$q(obj_userOrGroup, path_userOrGroup);
@@ -1,7 +1,7 @@
1
1
  import { SetupRecordShareUserOrGroupRepresentation as SetupRecordShareUserOrGroupRepresentation_SetupRecordShareUserOrGroupRepresentation } from './SetupRecordShareUserOrGroupRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
3
  export declare const TTL = 500;
4
- export declare const VERSION = "f981fb6d754e309e2b466b70740e46f1";
4
+ export declare const VERSION = "3e64719fa22958fe475ca3695a82422a";
5
5
  export declare function validate(obj: any, path?: string): TypeError | null;
6
6
  export declare const RepresentationType: string;
7
7
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -31,8 +31,6 @@ export interface SetupRecordAccessRepresentationNormalized {
31
31
  applicationDomain: string;
32
32
  /** Created Date */
33
33
  createdDate: string;
34
- /** Count for groupMembers */
35
- groupMemberCount?: number;
36
34
  /** User/Group */
37
35
  userOrGroup: SetupRecordShareUserOrGroupRepresentation_SetupRecordShareUserOrGroupRepresentation;
38
36
  /** User/Group Id */
@@ -48,7 +46,6 @@ export interface SetupRecordAccessRepresentation {
48
46
  accessType: string;
49
47
  applicationDomain: string;
50
48
  createdDate: string;
51
- groupMemberCount?: number;
52
49
  userOrGroup: SetupRecordShareUserOrGroupRepresentation_SetupRecordShareUserOrGroupRepresentation;
53
50
  userOrGroupId: string;
54
51
  }
@@ -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 = "d1614bb2b4e44eba88be256d9176f648";
2
+ export declare const VERSION = "56cf7641df9c98fbbbcf8b438caa22e9";
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: SetupRecordShareUserOrGroupRepresentation, existing: SetupRecordShareUserOrGroupRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SetupRecordShareUserOrGroupRepresentationNormalized;
@@ -18,6 +18,8 @@ export interface SetupRecordShareUserOrGroupRepresentationNormalized {
18
18
  displayName?: string;
19
19
  /** Email of the User */
20
20
  email?: string;
21
+ /** Count of users in group */
22
+ groupMemberCount?: number;
21
23
  /** Id of the User or Group */
22
24
  id?: string;
23
25
  /** Profile Photo URL of the User */
@@ -34,6 +36,7 @@ export interface SetupRecordShareUserOrGroupRepresentationNormalized {
34
36
  export interface SetupRecordShareUserOrGroupRepresentation {
35
37
  displayName?: string;
36
38
  email?: string;
39
+ groupMemberCount?: number;
37
40
  id?: string;
38
41
  profilePhotoUrl?: string;
39
42
  username?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
3
- "version": "1.387.0",
3
+ "version": "1.388.0",
4
4
  "description": "Tableau Unified Analytics Platform",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/analytics-unifiedanalytics.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.387.0"
43
+ "@salesforce/lds-bindings": "^1.388.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.387.0"
46
+ "@salesforce/lds-compiler-plugins": "^1.388.0"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -4995,6 +4995,13 @@ function validate$F(obj, path = 'SetupRecordShareUserOrGroupRepresentation') {
4995
4995
  return new TypeError('Expected "string" but received "' + typeof obj_email + '" (at "' + path_email + '")');
4996
4996
  }
4997
4997
  }
4998
+ if (obj.groupMemberCount !== undefined) {
4999
+ const obj_groupMemberCount = obj.groupMemberCount;
5000
+ const path_groupMemberCount = path + '.groupMemberCount';
5001
+ if (typeof obj_groupMemberCount !== 'number' || (typeof obj_groupMemberCount === 'number' && Math.floor(obj_groupMemberCount) !== obj_groupMemberCount)) {
5002
+ return new TypeError('Expected "integer" but received "' + typeof obj_groupMemberCount + '" (at "' + path_groupMemberCount + '")');
5003
+ }
5004
+ }
4998
5005
  if (obj.id !== undefined) {
4999
5006
  const obj_id = obj.id;
5000
5007
  const path_id = path + '.id';
@@ -5040,13 +5047,6 @@ function validate$E(obj, path = 'SetupRecordAccessRepresentation') {
5040
5047
  if (typeof obj_createdDate !== 'string') {
5041
5048
  return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
5042
5049
  }
5043
- if (obj.groupMemberCount !== undefined) {
5044
- const obj_groupMemberCount = obj.groupMemberCount;
5045
- const path_groupMemberCount = path + '.groupMemberCount';
5046
- if (typeof obj_groupMemberCount !== 'number' || (typeof obj_groupMemberCount === 'number' && Math.floor(obj_groupMemberCount) !== obj_groupMemberCount)) {
5047
- return new TypeError('Expected "integer" but received "' + typeof obj_groupMemberCount + '" (at "' + path_groupMemberCount + '")');
5048
- }
5049
- }
5050
5050
  const obj_userOrGroup = obj.userOrGroup;
5051
5051
  const path_userOrGroup = path + '.userOrGroup';
5052
5052
  const referencepath_userOrGroupValidationError = validate$F(obj_userOrGroup, path_userOrGroup);
@@ -14914,4 +14914,4 @@ withDefaultLuvio((luvio) => {
14914
14914
  });
14915
14915
 
14916
14916
  export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_imperative, getDataAssetDependencies, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests, getDataAssetRequestsCount, getDataAssetRequestsCount_imperative, getDataAssetRequests_imperative, getFlowByName, getFlowByName_imperative, getFlows, getFlows_imperative, getFollowedAssets, getFollowedAssets_imperative, getFollowers, getFollowers_imperative, getMarketplaceListingInstallationProgress, getMarketplaceListingInstallationProgress_imperative, getOrg, getOrg_imperative, getShares, getSharesNotifyChange, getShares_imperative, getSlackAppInfo, getSlackAppInfo_imperative, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getSubscriptionDigestConfig_imperative, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getUniqueFollowerCount_imperative, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationBundle_imperative, getVisualizationNotifyChange, getVisualization_imperative, getVisualizations, getVisualizations_imperative, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaceByIdOrName_imperative, getWorkspaces, getWorkspaces_imperative, initiateMarketplaceListingInstallation, initiateMarketplaceListingInstallation_imperative, notifySharesUpdateAvailable, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
14917
- // version: 1.387.0-1c34f8f965
14917
+ // version: 1.388.0-fabb0e5a71
package/src/raml/api.raml CHANGED
@@ -2220,6 +2220,10 @@ types:
2220
2220
  description: Username of the User
2221
2221
  type: string
2222
2222
  required: false
2223
+ groupMemberCount:
2224
+ description: Count of users in group
2225
+ type: integer
2226
+ required: false
2223
2227
  SetupRecordAccessRepresentation:
2224
2228
  description: Record Access mapping for specific UserOrGroup
2225
2229
  discriminatorValue: RecordAccessMappingForUserOrGroup
@@ -2247,11 +2251,6 @@ types:
2247
2251
  createdDate:
2248
2252
  description: Created Date
2249
2253
  type: string
2250
- groupMemberCount:
2251
- description: Count for groupMembers
2252
- type: integer
2253
- required: false
2254
-
2255
2254
  SetupRecordShareCollectionRepresentation:
2256
2255
  description: A collection of shares for a record
2257
2256
  type: object