@liaisongroup/assist-api-js-client 1.5.145 → 1.5.147
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/openapi.d.ts +1 -1
- package/dist/openapi.json +5 -4
- package/dist/openapi.zod.d.ts +14 -14
- package/dist/openapi.zod.js +1 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -918,7 +918,7 @@ declare namespace Components {
|
|
|
918
918
|
*/
|
|
919
919
|
interpolated_name?: string;
|
|
920
920
|
}
|
|
921
|
-
export type KnownConfigIDs = "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
921
|
+
export type KnownConfigIDs = "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
922
922
|
export interface Links {
|
|
923
923
|
self?: string;
|
|
924
924
|
current?: string;
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.373",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"name": "Sorting",
|
|
37
|
-
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-sorting).\n\nQuery param `sort` is used with `-` prefix for descending order - e.g. `sort=name` `sort=-name`.\n\nYou can only sort by attributes that are exposed for the resource on the resource attributes
|
|
37
|
+
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-sorting).\n\nQuery param `sort` is used with `-` prefix for descending order - e.g. `sort=name` `sort=-name`.\n\nYou can only sort by attributes that are exposed for the resource on the resource attributes endpoints.\n\nIf a sort param is not provided, the default sort order is `created_at` oldest to newest.\n\nYou can sort on multiple fields by comma separating them - e.g. `sort=name,email,-active`.\n"
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
"name": "Filtering",
|
|
41
|
-
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-filtering).\n\nQuery params `filter[<field>]` are used with [these matchers](https://activerecord-hackery.github.io/ransack/getting-started/search-matches/#search-matchers) - e.g. `filter[name_eq]=john`.\n\nYou can only filter by attributes that are exposed for the resource on the resource attributes
|
|
41
|
+
"description": "Is handled via [JSONAPI standard approach](https://jsonapi.org/format/#fetching-filtering).\n\nQuery params `filter[<field>]` are used with [these matchers](https://activerecord-hackery.github.io/ransack/getting-started/search-matches/#search-matchers) - e.g. `filter[name_eq]=john`.\n\nYou can only filter by attributes that are exposed for the resource on the resource attributes endpoints.\n\nTo apply multiple filters you can use `filter[<field>]` multiple times - e.g. `filter[name_eq]=john&filter[email_cont]=gmail.com`. Note that filters will be combined using AND (results will have to match ALL conditions).\n"
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "Inclusions",
|
|
@@ -15540,7 +15540,8 @@
|
|
|
15540
15540
|
"skip_rack_attack",
|
|
15541
15541
|
"task_cancellation_reasons",
|
|
15542
15542
|
"task_delete_reasons",
|
|
15543
|
-
"task_duration"
|
|
15543
|
+
"task_duration",
|
|
15544
|
+
"time_to_overdue"
|
|
15544
15545
|
]
|
|
15545
15546
|
},
|
|
15546
15547
|
"AccessToken": {
|
package/dist/openapi.zod.d.ts
CHANGED
|
@@ -154480,7 +154480,7 @@ export declare const ResourceAttribute: z.ZodObject<{
|
|
|
154480
154480
|
related?: string | undefined;
|
|
154481
154481
|
};
|
|
154482
154482
|
}>;
|
|
154483
|
-
export declare const KnownConfigIDs: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration"]>;
|
|
154483
|
+
export declare const KnownConfigIDs: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration", "time_to_overdue"]>;
|
|
154484
154484
|
export declare const ConfigAttributes: z.ZodObject<{
|
|
154485
154485
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodBoolean, z.ZodArray<z.ZodAny, "many">, z.ZodNumber]>>;
|
|
154486
154486
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -154490,7 +154490,7 @@ export declare const ConfigAttributes: z.ZodObject<{
|
|
|
154490
154490
|
}>;
|
|
154491
154491
|
export declare const ConfigData: z.ZodObject<{
|
|
154492
154492
|
type: z.ZodLiteral<"config">;
|
|
154493
|
-
id: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration"]>;
|
|
154493
|
+
id: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration", "time_to_overdue"]>;
|
|
154494
154494
|
attributes: z.ZodObject<{
|
|
154495
154495
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodBoolean, z.ZodArray<z.ZodAny, "many">, z.ZodNumber]>>;
|
|
154496
154496
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -154499,13 +154499,13 @@ export declare const ConfigData: z.ZodObject<{
|
|
|
154499
154499
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154500
154500
|
}>;
|
|
154501
154501
|
}, "strip", z.ZodTypeAny, {
|
|
154502
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154502
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154503
154503
|
attributes: {
|
|
154504
154504
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154505
154505
|
};
|
|
154506
154506
|
type: "config";
|
|
154507
154507
|
}, {
|
|
154508
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154508
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154509
154509
|
attributes: {
|
|
154510
154510
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154511
154511
|
};
|
|
@@ -154514,7 +154514,7 @@ export declare const ConfigData: z.ZodObject<{
|
|
|
154514
154514
|
export declare const Configs: z.ZodObject<{
|
|
154515
154515
|
data: z.ZodArray<z.ZodObject<{
|
|
154516
154516
|
type: z.ZodLiteral<"config">;
|
|
154517
|
-
id: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration"]>;
|
|
154517
|
+
id: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration", "time_to_overdue"]>;
|
|
154518
154518
|
attributes: z.ZodObject<{
|
|
154519
154519
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodBoolean, z.ZodArray<z.ZodAny, "many">, z.ZodNumber]>>;
|
|
154520
154520
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -154523,13 +154523,13 @@ export declare const Configs: z.ZodObject<{
|
|
|
154523
154523
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154524
154524
|
}>;
|
|
154525
154525
|
}, "strip", z.ZodTypeAny, {
|
|
154526
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154526
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154527
154527
|
attributes: {
|
|
154528
154528
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154529
154529
|
};
|
|
154530
154530
|
type: "config";
|
|
154531
154531
|
}, {
|
|
154532
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154532
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154533
154533
|
attributes: {
|
|
154534
154534
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154535
154535
|
};
|
|
@@ -154604,7 +154604,7 @@ export declare const Configs: z.ZodObject<{
|
|
|
154604
154604
|
}>;
|
|
154605
154605
|
}, "strip", z.ZodTypeAny, {
|
|
154606
154606
|
data: {
|
|
154607
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154607
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154608
154608
|
attributes: {
|
|
154609
154609
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154610
154610
|
};
|
|
@@ -154631,7 +154631,7 @@ export declare const Configs: z.ZodObject<{
|
|
|
154631
154631
|
};
|
|
154632
154632
|
}, {
|
|
154633
154633
|
data: {
|
|
154634
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154634
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154635
154635
|
attributes: {
|
|
154636
154636
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154637
154637
|
};
|
|
@@ -154660,7 +154660,7 @@ export declare const Configs: z.ZodObject<{
|
|
|
154660
154660
|
export declare const Config: z.ZodObject<{
|
|
154661
154661
|
data: z.ZodObject<{
|
|
154662
154662
|
type: z.ZodLiteral<"config">;
|
|
154663
|
-
id: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration"]>;
|
|
154663
|
+
id: z.ZodEnum<["action_resources", "admin_resources", "db_reset", "field_resources", "field_setting_restriction_constraints", "field_setting_restriction_operators", "hide_tasks", "hl7_message_lifespan", "password_regex", "password_regex_message", "role_resources", "skip_rack_attack", "task_cancellation_reasons", "task_delete_reasons", "task_duration", "time_to_overdue"]>;
|
|
154664
154664
|
attributes: z.ZodObject<{
|
|
154665
154665
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodBoolean, z.ZodArray<z.ZodAny, "many">, z.ZodNumber]>>;
|
|
154666
154666
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -154669,13 +154669,13 @@ export declare const Config: z.ZodObject<{
|
|
|
154669
154669
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154670
154670
|
}>;
|
|
154671
154671
|
}, "strip", z.ZodTypeAny, {
|
|
154672
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154672
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154673
154673
|
attributes: {
|
|
154674
154674
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154675
154675
|
};
|
|
154676
154676
|
type: "config";
|
|
154677
154677
|
}, {
|
|
154678
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154678
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154679
154679
|
attributes: {
|
|
154680
154680
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154681
154681
|
};
|
|
@@ -154708,7 +154708,7 @@ export declare const Config: z.ZodObject<{
|
|
|
154708
154708
|
}>;
|
|
154709
154709
|
}, "strip", z.ZodTypeAny, {
|
|
154710
154710
|
data: {
|
|
154711
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154711
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154712
154712
|
attributes: {
|
|
154713
154713
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154714
154714
|
};
|
|
@@ -154725,7 +154725,7 @@ export declare const Config: z.ZodObject<{
|
|
|
154725
154725
|
};
|
|
154726
154726
|
}, {
|
|
154727
154727
|
data: {
|
|
154728
|
-
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration";
|
|
154728
|
+
id: "action_resources" | "admin_resources" | "db_reset" | "field_resources" | "field_setting_restriction_constraints" | "field_setting_restriction_operators" | "hide_tasks" | "hl7_message_lifespan" | "password_regex" | "password_regex_message" | "role_resources" | "skip_rack_attack" | "task_cancellation_reasons" | "task_delete_reasons" | "task_duration" | "time_to_overdue";
|
|
154729
154729
|
attributes: {
|
|
154730
154730
|
value?: string | number | boolean | any[] | null | undefined;
|
|
154731
154731
|
};
|
package/dist/openapi.zod.js
CHANGED
package/package.json
CHANGED