@salesforce/lds-adapters-service-gis 1.370.0 → 1.372.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/src/raml/api.raml CHANGED
@@ -108,46 +108,160 @@ types:
108
108
  label:
109
109
  description: Label for External Auth Identity Provider
110
110
  type: string
111
- /gis/auth:
112
- /GisExternalAccessToken:
113
- get:
114
- displayName: getGisExternalAuthAccessToken
115
- description: Get an authentication access token for GIS services (e.g., 'esri')
116
- responses:
117
- '200':
118
- description: Success
119
- body:
120
- application/json:
121
- type: GisExternalAccessTokenOutputRepresentation
122
- queryParameters:
123
- authSettingsId:
124
- description: Authentication settings related
125
- type: string
126
- /GisExternalAuthIdentityProvider:
127
- post:
128
- displayName: createGisExternalAuthIdentityProvider
129
- description: Create Gis ExternalAuthIdentityProviders.
130
- responses:
131
- '200':
132
- description: Success
133
- body:
134
- application/json:
135
- type: GisExternalAuthIdentityProviderOutputRepresentation
136
- body:
137
- application/json:
138
- type: GisExternalAuthIdentityProviderInputRepresentation
139
- (oas-body-name): gisExternalAuthIdentityProviderInputRepresentation
140
- /GisExternalAuthIdentityProviders:
141
- get:
142
- displayName: getGisExternalAuthIdentityProviders
143
- description: Gets Gis ExternalAuthIdentityProviders.
144
- responses:
145
- '200':
146
- description: Success
147
- body:
148
- application/json:
149
- type: GisExternalAuthIdentityProviderCollectionRepresentation
150
- queryParameters:
151
- limitByProfile:
152
- description: Limits the settings for profile or not
153
- type: boolean
111
+ GisExtlMapObjectConfigCollectionRepresentation:
112
+ description: Represents collection of GIS External Map Object Configurations
113
+ type: object
114
+ properties:
115
+ count:
116
+ description: Total count of GIS External Map Object Configurations
117
+ type: integer
118
+ gisExtlMapObjectConfigs:
119
+ description: List of GIS External Map Object Configurations
120
+ type: array
121
+ items:
122
+ type: GisExtlMapObjectConfigOutputRepresentation
123
+ GisExtlMapObjectConfigOutputRepresentation:
124
+ description: Output representation for GIS External Map Object Configuration
125
+ type: object
126
+ properties:
127
+ defaultMapId:
128
+ description: Default map ID for the object
129
+ type: string
130
+ id:
131
+ description: Entity ID
132
+ type: string
133
+ mapIdFieldName:
134
+ description: Field name for the map ID
135
+ type: string | nil
136
+ objectName:
137
+ description: Name of the object (e.g., "WorkOrder")
138
+ type: string
139
+ recordType:
140
+ description: Type of the record (e.g., "All")
141
+ type: string | nil
142
+ GisRelatedObjectConfigCollectionRepresentation:
143
+ description: Represents collection of Map Object Configurations
144
+ type: object
145
+ properties:
146
+ count:
147
+ description: Map Object Configurations total count
148
+ type: integer
149
+ gisRelatedObjectConfigOutputRepresentation:
150
+ description: Map Object Configurations list
151
+ type: array
152
+ items:
153
+ type: GisRelatedObjectConfigOutputRepresentation
154
+ GisRelatedObjectConfigOutputRepresentation:
155
+ description: Output representation for Map Object Configuration
156
+ type: object
157
+ properties:
158
+ defaultColor:
159
+ description: Default color for map objects
160
+ type: string
161
+ defaultIcon:
162
+ description: Default icon for map objects
163
+ type: string
164
+ fieldName:
165
+ description: Field name for location data
166
+ type: string
167
+ fieldType:
168
+ description: Type of location field (geographic data type)
169
+ type: string
170
+ id:
171
+ description: Entity ID
172
+ type: string
173
+ objectName:
174
+ description: Name of the object to be configured
175
+ type: string
176
+ recordType:
177
+ description: Record type for the map object configuration
178
+ type: string
179
+ referenceObjectName:
180
+ description: Reference object name for location data
181
+ type: string
182
+ /gis:
183
+ /auth:
184
+ /GisExternalAccessToken:
185
+ get:
186
+ displayName: getGisExternalAuthAccessToken
187
+ description: Get an authentication access token for GIS services (e.g., 'esri')
188
+ responses:
189
+ '200':
190
+ description: Success
191
+ body:
192
+ application/json:
193
+ type: GisExternalAccessTokenOutputRepresentation
194
+ queryParameters:
195
+ authSettingsId:
196
+ description: Authentication settings related
197
+ type: string
198
+ /GisExternalAuthIdentityProvider:
199
+ post:
200
+ displayName: createGisExternalAuthIdentityProvider
201
+ description: Create Gis ExternalAuthIdentityProviders.
202
+ responses:
203
+ '200':
204
+ description: Success
205
+ body:
206
+ application/json:
207
+ type: GisExternalAuthIdentityProviderOutputRepresentation
208
+ body:
209
+ application/json:
210
+ type: GisExternalAuthIdentityProviderInputRepresentation
211
+ (oas-body-name): gisExternalAuthIdentityProviderInputRepresentation
212
+ /GisExternalAuthIdentityProviders:
213
+ get:
214
+ displayName: getGisExternalAuthIdentityProviders
215
+ description: Gets Gis ExternalAuthIdentityProviders.
216
+ responses:
217
+ '200':
218
+ description: Success
219
+ body:
220
+ application/json:
221
+ type: GisExternalAuthIdentityProviderCollectionRepresentation
222
+ queryParameters:
223
+ limitByProfile:
224
+ description: Limits the settings for profile or not
225
+ type: boolean
226
+ /config:
227
+ /GisExtlMapObjectConfig:
228
+ get:
229
+ displayName: getGisExtlMapObjectConfig
230
+ description: Fetches the display mapping configuration for a specific object
231
+ and record type.
232
+ responses:
233
+ '200':
234
+ description: Success
235
+ body:
236
+ application/json:
237
+ type: GisExtlMapObjectConfigCollectionRepresentation
238
+ queryParameters:
239
+ id:
240
+ description: Filter by object id
241
+ type: string
242
+ required: false
243
+ objectName:
244
+ description: The name of the object to get mapping configuration for (e.g.,
245
+ "WorkOrder")
246
+ type: string
247
+ required: false
248
+ /GisRelatedObjectConfig:
249
+ get:
250
+ displayName: getGisRelatedObjectConfig
251
+ description: Get a list of all map object configurations, optionally filtered
252
+ by objectName.
253
+ responses:
254
+ '200':
255
+ description: Success
256
+ body:
257
+ application/json:
258
+ type: GisRelatedObjectConfigCollectionRepresentation
259
+ queryParameters:
260
+ id:
261
+ description: Filter by object id
262
+ type: string
263
+ required: false
264
+ objectName:
265
+ description: Filter by object name
266
+ type: string
267
+ required: false
@@ -1,10 +1,15 @@
1
1
  #%RAML 1.0 Overlay
2
+ title: GIS Service API Overlay
2
3
  extends: ./api.raml
3
4
  uses:
4
5
  luvio: luvio://annotations.raml
6
+
5
7
  (luvio.keyPrefix): 'gis'
6
8
  (luvio.ttl): 1000
9
+
10
+ # Type definitions with TTL
7
11
  types:
12
+ # GIS External Auth Identity Provider types
8
13
  GisExternalAuthIdentityProviderCollectionRepresentation:
9
14
  (luvio.ttl): 300
10
15
 
@@ -22,7 +27,29 @@ types:
22
27
  GisExternalAuthIdentityProviderParameter:
23
28
  (luvio.ttl): 300
24
29
 
30
+ GisExternalAccessTokenOutputRepresentation:
31
+ (luvio.ttl): 300
32
+
33
+ # GIS Config types
34
+ GisExtlMapObjectConfigOutputRepresentation:
35
+ (luvio.ttl): 300
36
+ (luvio.key):
37
+ id: id
38
+
39
+ GisExtlMapObjectConfigCollectionRepresentation:
40
+ (luvio.ttl): 300
41
+
42
+ GisRelatedObjectConfigOutputRepresentation:
43
+ (luvio.ttl): 300
44
+ (luvio.key):
45
+ id: id
46
+
47
+ GisRelatedObjectConfigCollectionRepresentation:
48
+ (luvio.ttl): 300
49
+
50
+ # Endpoint configurations - Only include customizations that don't override base endpoints
25
51
  /gis/auth:
52
+ # GisExternalAuthIdentityProvider endpoints
26
53
  /GisExternalAuthIdentityProvider:
27
54
  post:
28
55
  (luvio.adapter):
@@ -32,3 +59,19 @@ types:
32
59
  get:
33
60
  (luvio.adapter):
34
61
  name: getGisExternalAuthIdentityProviders
62
+
63
+ /GisExternalAccessToken:
64
+ get:
65
+ (luvio.adapter):
66
+ name: getGisExternalAuthAccessToken
67
+
68
+ /gis/config:
69
+ /GisExtlMapObjectConfig:
70
+ get:
71
+ (luvio.adapter):
72
+ name: getGisExtlMapObjectConfig
73
+
74
+ /GisRelatedObjectConfig:
75
+ get:
76
+ (luvio.adapter):
77
+ name: getGisRelatedObjectConfig