@salesforce/lds-adapters-cdp-data-clean-room 1.428.0-dev1 → 1.428.0-dev10

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.
Files changed (20) hide show
  1. package/dist/es/es2018/cdp-data-clean-room.js +147 -79
  2. package/dist/es/es2018/types/src/generated/adapters/acceptDataCleanRoomInvitation.d.ts +1 -0
  3. package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomCollaboration.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/adapters/createDataCleanRoomSpecification.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborations.d.ts +1 -0
  6. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomCollaborationsActionsAcceptInvitationByCollaborationIdOrApiName.d.ts +1 -0
  7. package/dist/es/es2018/types/src/generated/resources/postSsotDataCleanRoomSpecifications.d.ts +1 -0
  8. package/dist/es/es2018/types/src/generated/types/DataCleanRoomAcceptInvitationInputRepresentation.d.ts +4 -1
  9. package/dist/es/es2018/types/src/generated/types/DataCleanRoomAwsS3OutputDestinationConfigRepresentation.d.ts +34 -0
  10. package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationInputRepresentation.d.ts +4 -1
  11. package/dist/es/es2018/types/src/generated/types/DataCleanRoomCollaborationRepresentation.d.ts +4 -1
  12. package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationInputRepresentation.d.ts +4 -1
  13. package/dist/es/es2018/types/src/generated/types/DataCleanRoomDataSpecificationRepresentation.d.ts +4 -1
  14. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberConfigRepresentation.d.ts +5 -1
  15. package/dist/es/es2018/types/src/generated/types/DataCleanRoomMemberRepresentation.d.ts +4 -1
  16. package/dist/es/es2018/types/src/generated/types/DataCleanRoomOutputDestinationConfigRepresentation.d.ts +28 -0
  17. package/dist/es/es2018/types/src/generated/types/DataCleanRoomSnowflakeOutputDestinationConfigRepresentation.d.ts +43 -0
  18. package/package.json +3 -3
  19. package/sfdc/index.js +76 -8
  20. package/src/raml/api.raml +91 -0
package/src/raml/api.raml CHANGED
@@ -410,6 +410,10 @@ types:
410
410
  description: Dictates whether useCase provided is of type Overlap/Activation/Custom
411
411
  type: string
412
412
  required: false
413
+ providerName:
414
+ description: Provider package for which the mapping is associated to.
415
+ type: string
416
+ required: false
413
417
  DataCleanRoomDataSpecificationRepresentation:
414
418
  description: Represents Cdp Data Clean Room Specification
415
419
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -478,6 +482,12 @@ types:
478
482
  description: Reference key to DataCleanRoomProvider record
479
483
  type: string
480
484
  required: false
485
+ templateVersions:
486
+ description: List of template versions to which the collaboration is associated to
487
+ type: array
488
+ items:
489
+ type: DataCleanRoomTemplateRepresentation
490
+ required: false
481
491
  DataCleanRoomMemberRepresentation:
482
492
  description: Represents Cdp Data Clean Room Members
483
493
  type: object
@@ -530,6 +540,10 @@ types:
530
540
  items:
531
541
  type: DataCleanRoomMemberConfigRepresentation
532
542
  required: false
543
+ memberDataCloudRegion:
544
+ description: Consumer Datacloud region
545
+ type: string
546
+ required: false
533
547
  DataCleanRoomSpecificationCollectionRepresentation:
534
548
  description: Represents Data Clean Room Specification Collection
535
549
  # TODO Hand-rolled: discriminator fix, flattening CdpPaginatedResponseBaseRepresentation
@@ -593,6 +607,10 @@ types:
593
607
  description: Id of the template version
594
608
  type: string
595
609
  required: false
610
+ useCaseType:
611
+ description: useCaseType for which the collaboration is getting created.
612
+ type: string
613
+ required: false
596
614
  DataCleanRoomCollaborationRepresentation:
597
615
  description: Represents Cdp Data Clean Room Collaboration
598
616
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -653,6 +671,12 @@ types:
653
671
  apiKey?:
654
672
  description: Api key for collaboration
655
673
  type: string
674
+ templateVersions:
675
+ description: List of template versions to which the collaboration is associated to
676
+ type: array
677
+ items:
678
+ type: DataCleanRoomTemplateRepresentation
679
+ required: false
656
680
  DataCleanRoomTemplateRepresentation:
657
681
  description: Represents Cdp Data Clean Room Template
658
682
  # TODO Hand-rolled: mulitple inheritance fix, unrolling CdpAssetBaseRepresentation
@@ -788,6 +812,10 @@ types:
788
812
  description: Name of data space to which the collaboration is associated
789
813
  type: string
790
814
  required: false
815
+ memberDataCloudRegion:
816
+ description: Consumer Datacloud region
817
+ type: string
818
+ required: false
791
819
 
792
820
  DataCleanRoomOutputConfigurationRepresentation:
793
821
  description: Represents data clean room output configuration representation
@@ -865,6 +893,65 @@ types:
865
893
  type: string
866
894
  required: true
867
895
 
896
+ DataCleanRoomOutputDestinationConfigRepresentation:
897
+ description: Output destination attributes based on the connector type. Base representation extended by connector-specific implementations (Connect API pattern). Structure varies by connectorType.
898
+ type: object
899
+ properties:
900
+ connectorType:
901
+ description: Type of the connector (MetadataConnectorTypeEnum)
902
+ type: string
903
+ required: true
904
+
905
+ DataCleanRoomAwsS3OutputDestinationConfigRepresentation:
906
+ description: AWS S3 output destination config for member config, extends DataCleanRoomOutputDestinationConfigRepresentation
907
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomOutputDestinationConfigRepresentation
908
+ # type: DataCleanRoomOutputDestinationConfigRepresentation
909
+ type: object
910
+ properties:
911
+ connectorType:
912
+ description: Type of the connector
913
+ type: string
914
+ required: true
915
+ roleArn:
916
+ description: IAM role used to connect to the s3 url provided
917
+ type: string
918
+ required: true
919
+ s3Url:
920
+ description: Full path of the s3 bucket with folders where the user wants the data to be shared
921
+ type: string
922
+ required: true
923
+
924
+ DataCleanRoomSnowflakeOutputDestinationConfigRepresentation:
925
+ description: Snowflake output destination config for member config, extends DataCleanRoomOutputDestinationConfigRepresentation
926
+ # TODO Hand-rolled: discriminator fix, unrolling DataCleanRoomOutputDestinationConfigRepresentation
927
+ # type: DataCleanRoomOutputDestinationConfigRepresentation
928
+ type: object
929
+ properties:
930
+ connectorType:
931
+ description: Type of the connector
932
+ type: string
933
+ required: true
934
+ accountUrl:
935
+ description: Snowflake account url of the provider's account
936
+ type: string
937
+ required: true
938
+ schemaName:
939
+ description: Schema name of the provider's the final dataset
940
+ type: string
941
+ required: true
942
+ databaseName:
943
+ description: Database name of the provider's the final dataset
944
+ type: string
945
+ required: true
946
+ warehouseName:
947
+ description: Warehouse name of the provider's the final dataset
948
+ type: string
949
+ required: true
950
+ serviceUser:
951
+ description: Service user with the relevant access to the provided database and warehouse
952
+ type: string
953
+ required: true
954
+
868
955
  DataCleanRoomRejectInvitationInputRepresentation:
869
956
  description: Represents Cdp Data clean room Reject invitation input
870
957
  type: object
@@ -1322,6 +1409,10 @@ types:
1322
1409
  description: Unique identifier for the output destination connection
1323
1410
  type: string
1324
1411
  required: false
1412
+ outputDestinationConfig:
1413
+ description: Output destination attributes for the connector type (260+)
1414
+ type: DataCleanRoomOutputDestinationConfigRepresentation
1415
+ required: false
1325
1416
 
1326
1417
  DataCleanRoomMetadataConfigurationRepresentation:
1327
1418
  description: Represents metadata configruation associated with template