octopian-apis 1.0.28 → 1.0.29
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
CHANGED
|
@@ -684,7 +684,7 @@ export async function AddRequestAndSubmit(AddRequestDTO, AuthToken = null, Timeo
|
|
|
684
684
|
specificRequestIds: [APIResponse.Result.RequestId],
|
|
685
685
|
ShippingAddressId: 0,
|
|
686
686
|
BillingAddressId: 0,
|
|
687
|
-
PaymentMethod: "
|
|
687
|
+
PaymentMethod: "CashOnDelivery",
|
|
688
688
|
});
|
|
689
689
|
return APIResponse;
|
|
690
690
|
}
|
|
@@ -246,13 +246,103 @@ export interface CompositeRequestStep {
|
|
|
246
246
|
}
|
|
247
247
|
|
|
248
248
|
export interface RequestAttribute {
|
|
249
|
+
IsSystemGenerated: any
|
|
250
|
+
DtoState: number
|
|
249
251
|
RequestAttributeId: number
|
|
250
252
|
RequestId: number
|
|
251
253
|
Name: string
|
|
252
254
|
IsRequired: boolean
|
|
253
|
-
Value
|
|
255
|
+
Value?: string
|
|
254
256
|
AttributeTypeId: number
|
|
255
257
|
AttributeGroupId: number
|
|
258
|
+
IsRequesterVisible: boolean
|
|
259
|
+
IsProviderVisible: boolean
|
|
260
|
+
IsRequesterEditable: boolean
|
|
261
|
+
IsProviderEditable: boolean
|
|
262
|
+
RequestStepId: any
|
|
263
|
+
SequenceNo: number
|
|
264
|
+
IsComputed: boolean
|
|
265
|
+
Formula: string
|
|
266
|
+
SourceServiceAttributeId?: number
|
|
267
|
+
Group: string
|
|
268
|
+
GroupSequenceNo: number
|
|
269
|
+
ExtendedValue?: string
|
|
270
|
+
GroupId: number
|
|
271
|
+
AttachmentOriginalName: string
|
|
272
|
+
AlternateName?: string
|
|
273
|
+
AlternateValue?: string
|
|
274
|
+
AlternateGroup?: string
|
|
275
|
+
Alias: string
|
|
276
|
+
PlaceHolder?: string
|
|
277
|
+
ShowInReport: boolean
|
|
278
|
+
Description?: string
|
|
279
|
+
AlternateDescription: any
|
|
280
|
+
AlternatePlaceHolder: any
|
|
281
|
+
Prefix?: string
|
|
282
|
+
IsFiltered: boolean
|
|
283
|
+
FilterAttributeAlias?: string
|
|
284
|
+
IsParameter: boolean
|
|
285
|
+
Extra1: any
|
|
286
|
+
Extra2: any
|
|
287
|
+
BatchId: any
|
|
288
|
+
IsComputedInitialValue: boolean
|
|
289
|
+
InitialValueFormula?: string
|
|
290
|
+
IsValidationEnabled: boolean
|
|
291
|
+
ValidationRule?: string
|
|
292
|
+
ValidationRuleFailedComment?: string
|
|
293
|
+
IsIntegrationEditable: boolean
|
|
294
|
+
IsRequiredCondition?: string
|
|
295
|
+
OnChangeRecalculate: boolean
|
|
296
|
+
PageNumber: number
|
|
297
|
+
AttributeTypeValueTypeName: string
|
|
298
|
+
FormatCategoryId: number
|
|
299
|
+
FormatTypeName: string
|
|
300
|
+
Hint?: string
|
|
301
|
+
HideLabel: boolean
|
|
302
|
+
IsIntegration: boolean
|
|
303
|
+
IsRecord: boolean
|
|
304
|
+
IsRecordName: boolean
|
|
305
|
+
Regex?: string
|
|
306
|
+
ReturnType?: string
|
|
307
|
+
CounterMaxValue?: string
|
|
308
|
+
CounterMinValue?: string
|
|
309
|
+
CounterStepValue?: string
|
|
310
|
+
HideValue: boolean
|
|
311
|
+
IsPicker: boolean
|
|
312
|
+
AttributeLength?: string
|
|
313
|
+
ShowInQuestionnaire: boolean
|
|
314
|
+
IsMultipleChoice: boolean
|
|
315
|
+
AttributeDefinition: any
|
|
316
|
+
IsPasswordMask: boolean
|
|
317
|
+
IsEncryptionEnabled: boolean
|
|
318
|
+
AllowOthers: boolean
|
|
319
|
+
UseGridControl: boolean
|
|
320
|
+
UIControlAlias?: string
|
|
321
|
+
ShowInProfile: boolean
|
|
322
|
+
ObjectType: number
|
|
323
|
+
DocumentId: number
|
|
324
|
+
FormatTypeId: number
|
|
325
|
+
Translations?: string
|
|
326
|
+
DescriptionTranslations?: string
|
|
327
|
+
PlaceHolderTranslations?: string
|
|
328
|
+
ValueTranslations?: string
|
|
329
|
+
ValidationRuleFailedCommentTranslation?: string
|
|
330
|
+
GroupTranslations: any
|
|
331
|
+
HintTranslations: any
|
|
332
|
+
IsProfileDocument: any
|
|
333
|
+
IsRequesterEditableCondition?: string
|
|
334
|
+
IsProviderEditableCondition?: string
|
|
335
|
+
IsResetIf: boolean
|
|
336
|
+
ResetIfFormula?: string
|
|
337
|
+
FullFilePath: any
|
|
338
|
+
CopyToRequest: any
|
|
339
|
+
UseInService: boolean
|
|
340
|
+
IsPhantomVisible: any
|
|
341
|
+
IsAsynchronousIntegration: boolean
|
|
342
|
+
ApplyToExisting: boolean
|
|
343
|
+
FullImagePath: any
|
|
344
|
+
IsActionAttribute: any
|
|
345
|
+
ActionAttributeDetails: any
|
|
256
346
|
}
|
|
257
347
|
|
|
258
348
|
export interface RequestIntegrationTrigger {
|