o11y_schema 260.5.0 → 260.6.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.
- package/package.json +3 -1
- package/sf_pdp/index.js +1 -0
- package/sf_pdp/pdp_event.js +1 -0
- package/sf_pdp/sf_pdp.js +1 -0
- package/sf_pdp/sf_pdp.js-meta.xml +7 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"./sf_payments": "./sf_payments/sf_payments.js",
|
|
89
89
|
"./sf_nimbus": "./sf_nimbus/sf_nimbus.js",
|
|
90
90
|
"./sf_lds": "./sf_lds/sf_lds.js",
|
|
91
|
+
"./sf_pdp": "./sf_pdp/sf_pdp.js",
|
|
91
92
|
"./sf_semanticModel": "./sf_semanticModel/sf_semanticModel.js",
|
|
92
93
|
"./sf_ai4mCampaignDesigner": "./sf_ai4mCampaignDesigner/sf_ai4mCampaignDesigner.js",
|
|
93
94
|
"./sf_selfService": "./sf_selfService/sf_selfService.js",
|
|
@@ -121,7 +122,7 @@
|
|
|
121
122
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
122
123
|
},
|
|
123
124
|
"type": "module",
|
|
124
|
-
"version": "260.
|
|
125
|
+
"version": "260.6.0",
|
|
125
126
|
"license": "BSD-3-Clause",
|
|
126
127
|
"volta": {
|
|
127
128
|
"node": "18.17.1",
|
|
@@ -195,6 +196,7 @@
|
|
|
195
196
|
"o11y_schema/sf_omniStudio",
|
|
196
197
|
"o11y_schema/sf_p13n",
|
|
197
198
|
"o11y_schema/sf_payments",
|
|
199
|
+
"o11y_schema/sf_pdp",
|
|
198
200
|
"o11y_schema/sf_policyCenter",
|
|
199
201
|
"o11y_schema/sf_prm",
|
|
200
202
|
"o11y_schema/sf_promptStudio",
|
package/sf_pdp/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { pdp_event as pdpEventSchema } from './pdp_event.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const pdp_event={namespace:"sf.pdp",name:"PdpEvent",pbjsSchema:{"nested":{"sf":{"nested":{"pdp":{"nested":{"PdpEvent":{"fields":{"elementId":{"id":1,"type":"string"},"attribute1":{"id":2,"type":"string"},"num1":{"id":5,"type":"int32"},"attribute3":{"id":4,"type":"string"},"attribute2":{"id":3,"type":"string"},"num3":{"id":7,"type":"int32"},"num2":{"id":6,"type":"int32"}}}}}}}}}};
|
package/sf_pdp/sf_pdp.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { pdp_event as pdpEventSchema } from './pdp_event.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='260.
|
|
1
|
+
export const version='260.6.0'
|