@integry/sdk 3.2.20-beta.1 → 3.2.21-beta.1
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/THIRD_PARTY_LICENSES +40 -0
- package/dist/esm/index.csm.d.ts +6 -6
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +5 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +2 -1
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -441,6 +441,46 @@ furnished to do so, subject to the following conditions:
|
|
|
441
441
|
The above copyright notice and this permission notice shall be included in all
|
|
442
442
|
copies or substantial portions of the Software.
|
|
443
443
|
|
|
444
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
445
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
446
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
447
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
448
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
449
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
450
|
+
SOFTWARE.
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
---
|
|
454
|
+
|
|
455
|
+
Name: fast-sort
|
|
456
|
+
Version: 3.2.1
|
|
457
|
+
License: MIT
|
|
458
|
+
Private: false
|
|
459
|
+
Description: Fast easy to use and flexible sorting with TypeScript support
|
|
460
|
+
Repository: git+https://github.com/snovakovic/fast-sort.git
|
|
461
|
+
Homepage: https://github.com/snovakovic/fast-sort
|
|
462
|
+
Author: Stefan Novakovic <stefan.novakovich@gmail.com>
|
|
463
|
+
Contributors:
|
|
464
|
+
Linus Unnebäck: https://github.com/LinusU
|
|
465
|
+
Luca Ban: https://github.com/mesqueeb
|
|
466
|
+
Tony Gutierrez: https://github.com/tony-gutierrez
|
|
467
|
+
License Copyright:
|
|
468
|
+
===
|
|
469
|
+
|
|
470
|
+
MIT License
|
|
471
|
+
|
|
472
|
+
Copyright (c) 2017 Stefan Novaković
|
|
473
|
+
|
|
474
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
475
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
476
|
+
in the Software without restriction, including without limitation the rights
|
|
477
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
478
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
479
|
+
furnished to do so, subject to the following conditions:
|
|
480
|
+
|
|
481
|
+
The above copyright notice and this permission notice shall be included in all
|
|
482
|
+
copies or substantial portions of the Software.
|
|
483
|
+
|
|
444
484
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
445
485
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
446
486
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -42,6 +42,11 @@ type IntegrySDKEventPayloads = {
|
|
|
42
42
|
flowId: number;
|
|
43
43
|
status: string;
|
|
44
44
|
callbackUrl: string | null;
|
|
45
|
+
callbackUrlArray: {
|
|
46
|
+
templateStepId: number;
|
|
47
|
+
activityId: number;
|
|
48
|
+
callbackUrl: string | null;
|
|
49
|
+
}[];
|
|
45
50
|
authorizations: {
|
|
46
51
|
authorizationId: number;
|
|
47
52
|
userIdentity: string;
|
|
@@ -257,12 +262,7 @@ interface TemplateField {
|
|
|
257
262
|
regex_msg: string | null;
|
|
258
263
|
is_visible: boolean;
|
|
259
264
|
app_user_data?: {
|
|
260
|
-
app_user:
|
|
261
|
-
/**
|
|
262
|
-
* Render the template form we ship
|
|
263
|
-
* @param data
|
|
264
|
-
*/
|
|
265
|
-
number;
|
|
265
|
+
app_user: number;
|
|
266
266
|
id: number;
|
|
267
267
|
value: string | number;
|
|
268
268
|
is_changed: boolean;
|