@salesforce/lds-network-aura 1.404.0-dev1 → 1.404.0-dev11
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.
package/dist/ldsNetwork.js
CHANGED
|
@@ -81,7 +81,6 @@ const FUNDRAISING_BASE_URI = `${CONNECT_BASE_URI}/fundraising`;
|
|
|
81
81
|
const CDP_BASE_URI = `${BASE_URI}/ssot`;
|
|
82
82
|
const CDP_SALES_EXCELLENCE_BASE_URI = `${CONNECT_BASE_URI}/sales-excellence/cust-data-pfrm`;
|
|
83
83
|
const CDP_MACHINE_LEARNING_BASE_URI = `${CDP_BASE_URI}/machine-learning`;
|
|
84
|
-
const CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI = `${CDP_BASE_URI}/data-transforms-experience`;
|
|
85
84
|
const CDP_COMMUNICATION_CAPPING_BASE_URI = `${CDP_BASE_URI}/communication-cappings`;
|
|
86
85
|
const CDP_BYOC_BASE_URI = `${CDP_BASE_URI}/data-custom-code`;
|
|
87
86
|
const CDP_DOCUMENT_PROCESSING = `${CDP_BASE_URI}/document-processing`;
|
|
@@ -640,6 +639,9 @@ const DATAFLOW_JOBS_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs$`, 'i');
|
|
|
640
639
|
const DATAFLOW_JOB_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs/([A-Z0-9]){15,18}$`, 'i');
|
|
641
640
|
const DATAFLOW_JOB_NODES_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs/([A-Z0-9]){15,18}/nodes$`, 'i');
|
|
642
641
|
const DATAFLOW_JOB_NODE_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs/([A-Z0-9]){15,18}/nodes/([A-Z0-9]){15,18}$`, 'i');
|
|
642
|
+
const DATAFLOW_JOB_NODE_STAGES_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs/([A-Z0-9]){15,18}/nodes/([A-Z0-9]){15,18}/stages$`, 'i');
|
|
643
|
+
const DATAFLOW_JOB_NODE_STAGE_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs/([A-Z0-9]){15,18}/nodes/([A-Z0-9]){15,18}/stages/([^/]+)$`, 'i');
|
|
644
|
+
const DATAFLOW_JOB_NODE_STAGE_PARENTS_PATH = new RegExp(`${WAVE_BASE_URI}/dataflowjobs/([A-Z0-9]){15,18}/nodes/([A-Z0-9]){15,18}/stages/([^/]+)/parents$`, 'i');
|
|
643
645
|
const EXECUTE_QUERY_PATH = new RegExp(`${WAVE_BASE_URI}/query`, 'i');
|
|
644
646
|
const EXECUTE_SOQL_QUERY_PATH = new RegExp(`${WAVE_BASE_URI}/soql`, 'i');
|
|
645
647
|
const GET_JWT_TABLEAU_EMBEDDING = new RegExp(`${TABLEAU_EMBEDDING_BASE_URI}/jwt`, 'i');
|
|
@@ -1325,7 +1327,6 @@ const CDP_CONFIGURED_MODEL_COLLECTION = new RegExp(`${CDP_MACHINE_LEARNING_BASE_
|
|
|
1325
1327
|
const CDP_PREDICTION_COLLECTION = new RegExp(`${CDP_MACHINE_LEARNING_BASE_URI}/predict`, 'i');
|
|
1326
1328
|
// can be 15-18 char Id or developerName which max length is 255
|
|
1327
1329
|
const CDP_CONFIGURED_MODEL = new RegExp(`${CDP_MACHINE_LEARNING_BASE_URI}/configured-models/([A-Za-z0-9_]){1,255}`, 'i');
|
|
1328
|
-
const CDP_DATA_TRANSFORM_EXPERIENCE_CONFIGURATIONS = new RegExp(`${CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI}/configurations`, 'i');
|
|
1329
1330
|
const CDP_COMMUNICATION_CAPPING_CONFIGURATION = new RegExp(`${CDP_COMMUNICATION_CAPPING_BASE_URI}/([A-Za-z0-9_]){1,80}$`, 'i');
|
|
1330
1331
|
const CDP_COMMUNICATION_CAPPING_STATUS_RETRY = new RegExp(`${CDP_COMMUNICATION_CAPPING_BASE_URI}/([A-Za-z0-9_]){1,80}/actions/retry`, 'i');
|
|
1331
1332
|
// CDP Data Transform Endpoints
|
|
@@ -1373,7 +1374,9 @@ const EINSTEIN_PROMPT_TEMPLATE_TYPE_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prom
|
|
|
1373
1374
|
const EINSTEIN_PROMPT_TEMPLATE_OUTPUT_LANG_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-template/(?!.*__)[A-Za-z0-9](?:[A-Za-z0-9_]{0,253}[A-Za-z0-9])?/output-languages$`, 'i');
|
|
1374
1375
|
const EINSTEIN_LLM_FEEDBACK_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/feedback`, 'i');
|
|
1375
1376
|
const EINSTEIN_LLM_EMBEDDINGS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/embeddings`, 'i');
|
|
1377
|
+
const EINSTEIN_PROMPT_TEMPLATE_STATUS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/status(\\?.*)?$`, 'i');
|
|
1376
1378
|
const EINSTEIN_PROMPT_TEMPLATE_VERSION_STATUS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/versions/([A-Za-z0-9_]){1,255}/status(\\?.*)?$`, 'i');
|
|
1379
|
+
const EINSTEIN_PROMPT_TEMPLATE_REFERENCES_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/references(\\?.*)?$`, 'i');
|
|
1377
1380
|
const DOCUMENT_MATRIX_FETCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/document-matrix/document-decision/([A-Za-z0-9]){1,18}$`, 'i');
|
|
1378
1381
|
const NEXTGENSALESAGREEMENTPRICE_PATH = new RegExp(`${CONNECT_BASE_URI}/sales-agreements/([A-Za-z0-9]){1,255}/price`, 'i');
|
|
1379
1382
|
const SALES_AGREEMENT_UPDATE_PATH = new RegExp(`${CONNECT_BASE_URI}/sales-agreements/([A-Za-z0-9]){1,255}/product`, 'i');
|
|
@@ -2380,6 +2383,9 @@ const analytics = [
|
|
|
2380
2383
|
generateAdapter('patch', WAVE_BASE_URI, DATAFLOW_JOB_PATH, 'WaveController.updateDataflowJob'),
|
|
2381
2384
|
generateAdapter('get', WAVE_BASE_URI, DATAFLOW_JOB_NODES_PATH, 'WaveController.getDataflowJobNodes'),
|
|
2382
2385
|
generateAdapter('get', WAVE_BASE_URI, DATAFLOW_JOB_NODE_PATH, 'WaveController.getDataflowJobNode'),
|
|
2386
|
+
generateAdapter('get', WAVE_BASE_URI, DATAFLOW_JOB_NODE_STAGES_PATH, 'WaveController.getDataflowJobNodeStages'),
|
|
2387
|
+
generateAdapter('get', WAVE_BASE_URI, DATAFLOW_JOB_NODE_STAGE_PATH, 'WaveController.getDataflowJobNodeStage'),
|
|
2388
|
+
generateAdapter('get', WAVE_BASE_URI, DATAFLOW_JOB_NODE_STAGE_PARENTS_PATH, 'WaveController.getDataflowJobNodeStageParents'),
|
|
2383
2389
|
generateAdapter('get', WAVE_BASE_URI, RECIPE_PATH, 'WaveController.getRecipe'),
|
|
2384
2390
|
// eslint-disable-next-line @salesforce/lds/oas-body-name-required
|
|
2385
2391
|
generateAdapter('patch', WAVE_BASE_URI, RECIPE_PATH, 'WaveController.updateRecipe'),
|
|
@@ -3158,9 +3164,6 @@ const cdpMachineLearning = [
|
|
|
3158
3164
|
generateAdapter('get', CDP_MACHINE_LEARNING_BASE_URI, CDP_CONFIGURED_MODEL_COLLECTION, 'CdpMachineLearningController.getConfiguredModels'),
|
|
3159
3165
|
generateAdapter('post', CDP_MACHINE_LEARNING_BASE_URI, CDP_PREDICTION_COLLECTION, 'CdpMachineLearningController.makePrediction', 'CdpMlPredictInputRepresentation'),
|
|
3160
3166
|
];
|
|
3161
|
-
const cdpDataTransformExperience = [
|
|
3162
|
-
generateAdapter('get', CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI, CDP_DATA_TRANSFORM_EXPERIENCE_CONFIGURATIONS, 'CdpDataTransformExperienceController.getDataTransformsExperienceConfiguration'),
|
|
3163
|
-
];
|
|
3164
3167
|
const cdpCommunicationCapping = [
|
|
3165
3168
|
generateAdapter('get', CDP_COMMUNICATION_CAPPING_BASE_URI, CDP_COMMUNICATION_CAPPING_CONFIGURATION, 'CdpCommunicationCappingController.getCommunicationCappingRepresentation'),
|
|
3166
3169
|
// eslint-disable-next-line @salesforce/lds/oas-body-name-required
|
|
@@ -3237,6 +3240,8 @@ const einstein = [
|
|
|
3237
3240
|
generateAdapter('post', EINSTEIN_BASE_URI, EINSTEIN_DATA_PROVIDER_INSTANCE_CONFIG_PATH, 'EinsteinLLMController.getDataProviderInstanceConfig', 'dataProviderInstanceConfigInput'),
|
|
3238
3241
|
// eslint-disable-next-line @salesforce/lds/oas-body-name-required
|
|
3239
3242
|
generateAdapter('put', EINSTEIN_BASE_URI, EINSTEIN_PROMPT_TEMPLATE_VERSION_STATUS_PATH, 'EinsteinLLMController.putEinsteinPromptTemplateVersionStatus'),
|
|
3243
|
+
generateAdapter('put', EINSTEIN_BASE_URI, EINSTEIN_PROMPT_TEMPLATE_STATUS_PATH, 'EinsteinLLMController.putEinsteinPromptTemplateStatus'),
|
|
3244
|
+
generateAdapter('get', EINSTEIN_BASE_URI, EINSTEIN_PROMPT_TEMPLATE_REFERENCES_PATH, 'EinsteinLLMController.getEinsteinPromptTemplateReferences'),
|
|
3240
3245
|
generateAdapter('get', EINSTEIN_BASE_URI, EINSTEIN_DATA_PROVIDER_TYPE_CONFIG_PATH, 'EinsteinLLMController.getDataProviderTypeConfigs'),
|
|
3241
3246
|
];
|
|
3242
3247
|
const nextGenSalesAgreementPrice = [
|
|
@@ -3648,8 +3653,10 @@ const constraints = [
|
|
|
3648
3653
|
generateAdapter('patch', INDUSTRIES_BASE_URI, INDUSTRIES_CONSTRAINTS_PATH, 'IConstraintServiceResourceFamilyController.updateConstraintVersion', 'constraintInput'),
|
|
3649
3654
|
];
|
|
3650
3655
|
const SF_DRIVE_GET_CREDENTIALS_PATH = new RegExp(`${CDP_BASE_URI}/sf-drive/actions/generate-credential$`, 'i');
|
|
3656
|
+
const SF_DRIVE_GET_PRESIGNED_CREDENTIALS_PATH = new RegExp(`${CDP_BASE_URI}/sf-drive/actions/generate-presigned-credential$`, 'i');
|
|
3651
3657
|
const sfDrive = [
|
|
3652
3658
|
generateAdapter('post', CDP_BASE_URI, SF_DRIVE_GET_CREDENTIALS_PATH, 'SfDriveController.generateSFDriveCredentials', 'generateSFDriveCredentialsInput'),
|
|
3659
|
+
generateAdapter('post', CDP_BASE_URI, SF_DRIVE_GET_PRESIGNED_CREDENTIALS_PATH, 'SfDriveController.generateSFDrivePresignedCredentials', 'generateSFDrivePresignedCredentialsInput'),
|
|
3653
3660
|
];
|
|
3654
3661
|
const SALES_YUKON_POST_TELEMETRY_PATH = new RegExp(`${SALES_YUKON_BASE_URI}/telemetry`, 'i');
|
|
3655
3662
|
const SALES_YUKON_GET_SURFACE_NUDGES_PATH = new RegExp(`${SALES_YUKON_BASE_URI}/surfaces/([A-Za-z0-9_\\-]{1,255})/nudges$`, 'i');
|
|
@@ -3904,7 +3911,6 @@ registerApiFamilyRoutes(cdpMetadata);
|
|
|
3904
3911
|
registerApiFamilyRoutes(cdpQuery);
|
|
3905
3912
|
registerApiFamilyRoutes(cdpCalculatedInsights);
|
|
3906
3913
|
registerApiFamilyRoutes(cdpMachineLearning);
|
|
3907
|
-
registerApiFamilyRoutes(cdpDataTransformExperience);
|
|
3908
3914
|
registerApiFamilyRoutes(cdpCommunicationCapping);
|
|
3909
3915
|
registerApiFamilyRoutes(insurance);
|
|
3910
3916
|
registerApiFamilyRoutes(cdpSalesExcellence);
|
|
@@ -5837,4 +5843,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
5837
5843
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
5838
5844
|
|
|
5839
5845
|
export { CrudEventState, CrudEventType, UIAPI_GET_LAYOUT, UIAPI_GET_LAYOUT_USER_STATE, UIAPI_OBJECT_INFO_BATCH_PATH, UIAPI_OBJECT_INFO_PATH, UIAPI_RECORDS_PATH$1 as UIAPI_RECORDS_PATH, UIAPI_RELATED_LIST_RECORDS_BATCH_PATH, UIAPI_RELATED_LIST_RECORDS_PATH, createOkResponse$1 as createOkResponse, main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, getTransactionKey, instrument$1 as instrument, layoutStorage, layoutStorageStatsLogger, layoutUserStateStorage, layoutUserStateStorageStatsLogger, instrument as ldsNetworkAdapterInstrument, objectInfoStorage, objectInfoStorageStatsLogger, shouldForceRefresh };
|
|
5840
|
-
// version: 1.404.0-
|
|
5846
|
+
// version: 1.404.0-dev11-6f0e46e63f
|
|
@@ -61,7 +61,6 @@ export declare const FUNDRAISING_BASE_URI: string;
|
|
|
61
61
|
export declare const CDP_BASE_URI: string;
|
|
62
62
|
export declare const CDP_SALES_EXCELLENCE_BASE_URI: string;
|
|
63
63
|
export declare const CDP_MACHINE_LEARNING_BASE_URI: string;
|
|
64
|
-
export declare const CDP_DATA_TRANSFORM_EXPERIENCE_BASE_URI: string;
|
|
65
64
|
export declare const CDP_COMMUNICATION_CAPPING_BASE_URI: string;
|
|
66
65
|
export declare const CDP_BYOC_BASE_URI: string;
|
|
67
66
|
export declare const CDP_DOCUMENT_PROCESSING: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.404.0-
|
|
3
|
+
"version": "1.404.0-dev11",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@luvio/engine": "0.158.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.404.0-
|
|
41
|
-
"@salesforce/lds-aura-storage": "^1.404.0-
|
|
42
|
-
"@salesforce/lds-environment-settings": "^1.404.0-
|
|
43
|
-
"@salesforce/lds-instrumentation": "^1.404.0-
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.404.0-
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.404.0-dev11",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.404.0-dev11",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.404.0-dev11",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.404.0-dev11",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.404.0-dev11"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|