@seamapi/types 1.451.0 → 1.452.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/dist/connect.cjs +65 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +155 -4
- package/dist/index.cjs +65 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +128 -2
- package/lib/seam/connect/openapi.js +57 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +64 -2
- package/src/lib/seam/connect/route-types.ts +24 -2
package/dist/connect.d.cts
CHANGED
|
@@ -3625,12 +3625,14 @@ declare const access_grant: z.ZodObject<{
|
|
|
3625
3625
|
}>, "many">;
|
|
3626
3626
|
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
3627
3627
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
3628
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3628
3629
|
display_name: z.ZodString;
|
|
3629
3630
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3630
3631
|
created_at: z.ZodString;
|
|
3631
3632
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
3632
3633
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
3633
3634
|
}, "strip", z.ZodTypeAny, {
|
|
3635
|
+
name: string | null;
|
|
3634
3636
|
display_name: string;
|
|
3635
3637
|
workspace_id: string;
|
|
3636
3638
|
created_at: string;
|
|
@@ -3651,6 +3653,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3651
3653
|
client_session_token?: string | undefined;
|
|
3652
3654
|
instant_key_url?: string | undefined;
|
|
3653
3655
|
}, {
|
|
3656
|
+
name: string | null;
|
|
3654
3657
|
display_name: string;
|
|
3655
3658
|
workspace_id: string;
|
|
3656
3659
|
created_at: string;
|
|
@@ -28471,6 +28474,11 @@ declare const _default: {
|
|
|
28471
28474
|
type: string;
|
|
28472
28475
|
'x-deprecated': string;
|
|
28473
28476
|
};
|
|
28477
|
+
name: {
|
|
28478
|
+
description: string;
|
|
28479
|
+
nullable: boolean;
|
|
28480
|
+
type: string;
|
|
28481
|
+
};
|
|
28474
28482
|
requested_access_methods: {
|
|
28475
28483
|
description: string;
|
|
28476
28484
|
items: {
|
|
@@ -44431,6 +44439,11 @@ declare const _default: {
|
|
|
44431
44439
|
type: string;
|
|
44432
44440
|
'x-deprecated': string;
|
|
44433
44441
|
};
|
|
44442
|
+
name: {
|
|
44443
|
+
description: string;
|
|
44444
|
+
nullable: boolean;
|
|
44445
|
+
type: string;
|
|
44446
|
+
};
|
|
44434
44447
|
requested_access_methods: {
|
|
44435
44448
|
items: {
|
|
44436
44449
|
properties: {
|
|
@@ -45037,6 +45050,11 @@ declare const _default: {
|
|
|
45037
45050
|
nullable: boolean;
|
|
45038
45051
|
type: string;
|
|
45039
45052
|
};
|
|
45053
|
+
name: {
|
|
45054
|
+
description: string;
|
|
45055
|
+
nullable: boolean;
|
|
45056
|
+
type: string;
|
|
45057
|
+
};
|
|
45040
45058
|
starts_at: {
|
|
45041
45059
|
description: string;
|
|
45042
45060
|
format: string;
|
|
@@ -45122,6 +45140,11 @@ declare const _default: {
|
|
|
45122
45140
|
nullable: boolean;
|
|
45123
45141
|
type: string;
|
|
45124
45142
|
};
|
|
45143
|
+
name: {
|
|
45144
|
+
description: string;
|
|
45145
|
+
nullable: boolean;
|
|
45146
|
+
type: string;
|
|
45147
|
+
};
|
|
45125
45148
|
starts_at: {
|
|
45126
45149
|
description: string;
|
|
45127
45150
|
format: string;
|
|
@@ -49835,21 +49858,31 @@ declare const _default: {
|
|
|
49835
49858
|
client_session?: never;
|
|
49836
49859
|
pat_with_workspace?: never;
|
|
49837
49860
|
console_session_with_workspace?: never;
|
|
49861
|
+
client_session_with_customer?: never;
|
|
49838
49862
|
} | {
|
|
49839
49863
|
client_session: never[];
|
|
49840
49864
|
api_key?: never;
|
|
49841
49865
|
pat_with_workspace?: never;
|
|
49842
49866
|
console_session_with_workspace?: never;
|
|
49867
|
+
client_session_with_customer?: never;
|
|
49843
49868
|
} | {
|
|
49844
49869
|
pat_with_workspace: never[];
|
|
49845
49870
|
api_key?: never;
|
|
49846
49871
|
client_session?: never;
|
|
49847
49872
|
console_session_with_workspace?: never;
|
|
49873
|
+
client_session_with_customer?: never;
|
|
49848
49874
|
} | {
|
|
49849
49875
|
console_session_with_workspace: never[];
|
|
49850
49876
|
api_key?: never;
|
|
49851
49877
|
client_session?: never;
|
|
49852
49878
|
pat_with_workspace?: never;
|
|
49879
|
+
client_session_with_customer?: never;
|
|
49880
|
+
} | {
|
|
49881
|
+
client_session_with_customer: never[];
|
|
49882
|
+
api_key?: never;
|
|
49883
|
+
client_session?: never;
|
|
49884
|
+
pat_with_workspace?: never;
|
|
49885
|
+
console_session_with_workspace?: never;
|
|
49853
49886
|
})[];
|
|
49854
49887
|
summary: string;
|
|
49855
49888
|
tags: string[];
|
|
@@ -49958,21 +49991,31 @@ declare const _default: {
|
|
|
49958
49991
|
client_session?: never;
|
|
49959
49992
|
pat_with_workspace?: never;
|
|
49960
49993
|
console_session_with_workspace?: never;
|
|
49994
|
+
client_session_with_customer?: never;
|
|
49961
49995
|
} | {
|
|
49962
49996
|
client_session: never[];
|
|
49963
49997
|
api_key?: never;
|
|
49964
49998
|
pat_with_workspace?: never;
|
|
49965
49999
|
console_session_with_workspace?: never;
|
|
50000
|
+
client_session_with_customer?: never;
|
|
49966
50001
|
} | {
|
|
49967
50002
|
pat_with_workspace: never[];
|
|
49968
50003
|
api_key?: never;
|
|
49969
50004
|
client_session?: never;
|
|
49970
50005
|
console_session_with_workspace?: never;
|
|
50006
|
+
client_session_with_customer?: never;
|
|
49971
50007
|
} | {
|
|
49972
50008
|
console_session_with_workspace: never[];
|
|
49973
50009
|
api_key?: never;
|
|
49974
50010
|
client_session?: never;
|
|
49975
50011
|
pat_with_workspace?: never;
|
|
50012
|
+
client_session_with_customer?: never;
|
|
50013
|
+
} | {
|
|
50014
|
+
client_session_with_customer: never[];
|
|
50015
|
+
api_key?: never;
|
|
50016
|
+
client_session?: never;
|
|
50017
|
+
pat_with_workspace?: never;
|
|
50018
|
+
console_session_with_workspace?: never;
|
|
49976
50019
|
})[];
|
|
49977
50020
|
summary: string;
|
|
49978
50021
|
tags: string[];
|
|
@@ -66436,14 +66479,22 @@ declare const _default: {
|
|
|
66436
66479
|
pat_with_workspace: never[];
|
|
66437
66480
|
console_session_with_workspace?: never;
|
|
66438
66481
|
api_key?: never;
|
|
66482
|
+
client_session_with_customer?: never;
|
|
66439
66483
|
} | {
|
|
66440
66484
|
console_session_with_workspace: never[];
|
|
66441
66485
|
pat_with_workspace?: never;
|
|
66442
66486
|
api_key?: never;
|
|
66487
|
+
client_session_with_customer?: never;
|
|
66443
66488
|
} | {
|
|
66444
66489
|
api_key: never[];
|
|
66445
66490
|
pat_with_workspace?: never;
|
|
66446
66491
|
console_session_with_workspace?: never;
|
|
66492
|
+
client_session_with_customer?: never;
|
|
66493
|
+
} | {
|
|
66494
|
+
client_session_with_customer: never[];
|
|
66495
|
+
pat_with_workspace?: never;
|
|
66496
|
+
console_session_with_workspace?: never;
|
|
66497
|
+
api_key?: never;
|
|
66447
66498
|
})[];
|
|
66448
66499
|
summary: string;
|
|
66449
66500
|
tags: never[];
|
|
@@ -66509,14 +66560,22 @@ declare const _default: {
|
|
|
66509
66560
|
pat_with_workspace: never[];
|
|
66510
66561
|
console_session_with_workspace?: never;
|
|
66511
66562
|
api_key?: never;
|
|
66563
|
+
client_session_with_customer?: never;
|
|
66512
66564
|
} | {
|
|
66513
66565
|
console_session_with_workspace: never[];
|
|
66514
66566
|
pat_with_workspace?: never;
|
|
66515
66567
|
api_key?: never;
|
|
66568
|
+
client_session_with_customer?: never;
|
|
66516
66569
|
} | {
|
|
66517
66570
|
api_key: never[];
|
|
66518
66571
|
pat_with_workspace?: never;
|
|
66519
66572
|
console_session_with_workspace?: never;
|
|
66573
|
+
client_session_with_customer?: never;
|
|
66574
|
+
} | {
|
|
66575
|
+
client_session_with_customer: never[];
|
|
66576
|
+
pat_with_workspace?: never;
|
|
66577
|
+
console_session_with_workspace?: never;
|
|
66578
|
+
api_key?: never;
|
|
66520
66579
|
})[];
|
|
66521
66580
|
summary: string;
|
|
66522
66581
|
tags: never[];
|
|
@@ -66583,14 +66642,22 @@ declare const _default: {
|
|
|
66583
66642
|
pat_with_workspace: never[];
|
|
66584
66643
|
console_session_with_workspace?: never;
|
|
66585
66644
|
api_key?: never;
|
|
66645
|
+
client_session_with_customer?: never;
|
|
66586
66646
|
} | {
|
|
66587
66647
|
console_session_with_workspace: never[];
|
|
66588
66648
|
pat_with_workspace?: never;
|
|
66589
66649
|
api_key?: never;
|
|
66650
|
+
client_session_with_customer?: never;
|
|
66590
66651
|
} | {
|
|
66591
66652
|
api_key: never[];
|
|
66592
66653
|
pat_with_workspace?: never;
|
|
66593
66654
|
console_session_with_workspace?: never;
|
|
66655
|
+
client_session_with_customer?: never;
|
|
66656
|
+
} | {
|
|
66657
|
+
client_session_with_customer: never[];
|
|
66658
|
+
pat_with_workspace?: never;
|
|
66659
|
+
console_session_with_workspace?: never;
|
|
66660
|
+
api_key?: never;
|
|
66594
66661
|
})[];
|
|
66595
66662
|
summary: string;
|
|
66596
66663
|
tags: never[];
|
|
@@ -66656,14 +66723,22 @@ declare const _default: {
|
|
|
66656
66723
|
pat_with_workspace: never[];
|
|
66657
66724
|
console_session_with_workspace?: never;
|
|
66658
66725
|
api_key?: never;
|
|
66726
|
+
client_session_with_customer?: never;
|
|
66659
66727
|
} | {
|
|
66660
66728
|
console_session_with_workspace: never[];
|
|
66661
66729
|
pat_with_workspace?: never;
|
|
66662
66730
|
api_key?: never;
|
|
66731
|
+
client_session_with_customer?: never;
|
|
66663
66732
|
} | {
|
|
66664
66733
|
api_key: never[];
|
|
66665
66734
|
pat_with_workspace?: never;
|
|
66666
66735
|
console_session_with_workspace?: never;
|
|
66736
|
+
client_session_with_customer?: never;
|
|
66737
|
+
} | {
|
|
66738
|
+
client_session_with_customer: never[];
|
|
66739
|
+
pat_with_workspace?: never;
|
|
66740
|
+
console_session_with_workspace?: never;
|
|
66741
|
+
api_key?: never;
|
|
66667
66742
|
})[];
|
|
66668
66743
|
summary: string;
|
|
66669
66744
|
tags: never[];
|
|
@@ -66683,6 +66758,22 @@ declare const _default: {
|
|
|
66683
66758
|
'application/json': {
|
|
66684
66759
|
schema: {
|
|
66685
66760
|
properties: {
|
|
66761
|
+
acs_entrance_ids: {
|
|
66762
|
+
description: string;
|
|
66763
|
+
items: {
|
|
66764
|
+
format: string;
|
|
66765
|
+
type: string;
|
|
66766
|
+
};
|
|
66767
|
+
type: string;
|
|
66768
|
+
};
|
|
66769
|
+
device_ids: {
|
|
66770
|
+
description: string;
|
|
66771
|
+
items: {
|
|
66772
|
+
format: string;
|
|
66773
|
+
type: string;
|
|
66774
|
+
};
|
|
66775
|
+
type: string;
|
|
66776
|
+
};
|
|
66686
66777
|
name: {
|
|
66687
66778
|
description: string;
|
|
66688
66779
|
type: string;
|
|
@@ -66692,8 +66783,11 @@ declare const _default: {
|
|
|
66692
66783
|
format: string;
|
|
66693
66784
|
type: string;
|
|
66694
66785
|
};
|
|
66786
|
+
space_key: {
|
|
66787
|
+
description: string;
|
|
66788
|
+
type: string;
|
|
66789
|
+
};
|
|
66695
66790
|
};
|
|
66696
|
-
required: string[];
|
|
66697
66791
|
type: string;
|
|
66698
66792
|
};
|
|
66699
66793
|
};
|
|
@@ -66730,14 +66824,22 @@ declare const _default: {
|
|
|
66730
66824
|
pat_with_workspace: never[];
|
|
66731
66825
|
console_session_with_workspace?: never;
|
|
66732
66826
|
api_key?: never;
|
|
66827
|
+
client_session_with_customer?: never;
|
|
66733
66828
|
} | {
|
|
66734
66829
|
console_session_with_workspace: never[];
|
|
66735
66830
|
pat_with_workspace?: never;
|
|
66736
66831
|
api_key?: never;
|
|
66832
|
+
client_session_with_customer?: never;
|
|
66737
66833
|
} | {
|
|
66738
66834
|
api_key: never[];
|
|
66739
66835
|
pat_with_workspace?: never;
|
|
66740
66836
|
console_session_with_workspace?: never;
|
|
66837
|
+
client_session_with_customer?: never;
|
|
66838
|
+
} | {
|
|
66839
|
+
client_session_with_customer: never[];
|
|
66840
|
+
pat_with_workspace?: never;
|
|
66841
|
+
console_session_with_workspace?: never;
|
|
66842
|
+
api_key?: never;
|
|
66741
66843
|
})[];
|
|
66742
66844
|
summary: string;
|
|
66743
66845
|
tags: never[];
|
|
@@ -66756,6 +66858,22 @@ declare const _default: {
|
|
|
66756
66858
|
'application/json': {
|
|
66757
66859
|
schema: {
|
|
66758
66860
|
properties: {
|
|
66861
|
+
acs_entrance_ids: {
|
|
66862
|
+
description: string;
|
|
66863
|
+
items: {
|
|
66864
|
+
format: string;
|
|
66865
|
+
type: string;
|
|
66866
|
+
};
|
|
66867
|
+
type: string;
|
|
66868
|
+
};
|
|
66869
|
+
device_ids: {
|
|
66870
|
+
description: string;
|
|
66871
|
+
items: {
|
|
66872
|
+
format: string;
|
|
66873
|
+
type: string;
|
|
66874
|
+
};
|
|
66875
|
+
type: string;
|
|
66876
|
+
};
|
|
66759
66877
|
name: {
|
|
66760
66878
|
description: string;
|
|
66761
66879
|
type: string;
|
|
@@ -66765,8 +66883,11 @@ declare const _default: {
|
|
|
66765
66883
|
format: string;
|
|
66766
66884
|
type: string;
|
|
66767
66885
|
};
|
|
66886
|
+
space_key: {
|
|
66887
|
+
description: string;
|
|
66888
|
+
type: string;
|
|
66889
|
+
};
|
|
66768
66890
|
};
|
|
66769
|
-
required: string[];
|
|
66770
66891
|
type: string;
|
|
66771
66892
|
};
|
|
66772
66893
|
};
|
|
@@ -66803,14 +66924,22 @@ declare const _default: {
|
|
|
66803
66924
|
pat_with_workspace: never[];
|
|
66804
66925
|
console_session_with_workspace?: never;
|
|
66805
66926
|
api_key?: never;
|
|
66927
|
+
client_session_with_customer?: never;
|
|
66806
66928
|
} | {
|
|
66807
66929
|
console_session_with_workspace: never[];
|
|
66808
66930
|
pat_with_workspace?: never;
|
|
66809
66931
|
api_key?: never;
|
|
66932
|
+
client_session_with_customer?: never;
|
|
66810
66933
|
} | {
|
|
66811
66934
|
api_key: never[];
|
|
66812
66935
|
pat_with_workspace?: never;
|
|
66813
66936
|
console_session_with_workspace?: never;
|
|
66937
|
+
client_session_with_customer?: never;
|
|
66938
|
+
} | {
|
|
66939
|
+
client_session_with_customer: never[];
|
|
66940
|
+
pat_with_workspace?: never;
|
|
66941
|
+
console_session_with_workspace?: never;
|
|
66942
|
+
api_key?: never;
|
|
66814
66943
|
})[];
|
|
66815
66944
|
summary: string;
|
|
66816
66945
|
tags: never[];
|
|
@@ -86833,6 +86962,8 @@ interface Routes {
|
|
|
86833
86962
|
full_name?: (string | null) | undefined;
|
|
86834
86963
|
};
|
|
86835
86964
|
}) & {
|
|
86965
|
+
/** Name for the access grant. */
|
|
86966
|
+
name?: (string | undefined) | null;
|
|
86836
86967
|
/** Unique key for the access grant within the workspace. */
|
|
86837
86968
|
access_grant_key?: string | undefined;
|
|
86838
86969
|
/**
|
|
@@ -86896,6 +87027,8 @@ interface Routes {
|
|
|
86896
87027
|
access_method_ids: string[];
|
|
86897
87028
|
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
86898
87029
|
client_session_token?: string | undefined;
|
|
87030
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
87031
|
+
name: string | null;
|
|
86899
87032
|
/** Display name of the Access Grant. */
|
|
86900
87033
|
display_name: string;
|
|
86901
87034
|
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
|
@@ -86965,6 +87098,8 @@ interface Routes {
|
|
|
86965
87098
|
access_method_ids: string[];
|
|
86966
87099
|
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
86967
87100
|
client_session_token?: string | undefined;
|
|
87101
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
87102
|
+
name: string | null;
|
|
86968
87103
|
/** Display name of the Access Grant. */
|
|
86969
87104
|
display_name: string;
|
|
86970
87105
|
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
|
@@ -87029,6 +87164,8 @@ interface Routes {
|
|
|
87029
87164
|
access_method_ids: string[];
|
|
87030
87165
|
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
87031
87166
|
client_session_token?: string | undefined;
|
|
87167
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
87168
|
+
name: string | null;
|
|
87032
87169
|
/** Display name of the Access Grant. */
|
|
87033
87170
|
display_name: string;
|
|
87034
87171
|
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
|
@@ -87048,6 +87185,8 @@ interface Routes {
|
|
|
87048
87185
|
queryParams: {};
|
|
87049
87186
|
jsonBody: {};
|
|
87050
87187
|
commonParams: {
|
|
87188
|
+
/** Display name for the access grant. */
|
|
87189
|
+
name?: (string | null) | undefined;
|
|
87051
87190
|
/** ID of the Access Grant to update. */
|
|
87052
87191
|
access_grant_id: string;
|
|
87053
87192
|
/** Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -124940,10 +125079,16 @@ interface Routes {
|
|
|
124940
125079
|
method: 'POST' | 'PATCH';
|
|
124941
125080
|
queryParams: {};
|
|
124942
125081
|
jsonBody: {
|
|
124943
|
-
/** ID of the space that you want to update. */
|
|
124944
|
-
space_id: string;
|
|
124945
125082
|
/** Name of the space. */
|
|
124946
125083
|
name?: string | undefined;
|
|
125084
|
+
/** ID of the space that you want to update. */
|
|
125085
|
+
space_id?: string | undefined;
|
|
125086
|
+
/** Unique key of the space that you want to update. */
|
|
125087
|
+
space_key?: string | undefined;
|
|
125088
|
+
/** IDs of the devices that you want to set for the space. If specified, this will replace all existing devices. */
|
|
125089
|
+
device_ids?: string[] | undefined;
|
|
125090
|
+
/** IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances. */
|
|
125091
|
+
acs_entrance_ids?: string[] | undefined;
|
|
124947
125092
|
};
|
|
124948
125093
|
commonParams: {};
|
|
124949
125094
|
formData: {};
|
|
@@ -140433,6 +140578,8 @@ interface Routes {
|
|
|
140433
140578
|
access_method_ids: string[];
|
|
140434
140579
|
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
140435
140580
|
client_session_token?: string | undefined;
|
|
140581
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
140582
|
+
name: string | null;
|
|
140436
140583
|
/** Display name of the Access Grant. */
|
|
140437
140584
|
display_name: string;
|
|
140438
140585
|
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
|
@@ -140499,6 +140646,8 @@ interface Routes {
|
|
|
140499
140646
|
access_method_ids: string[];
|
|
140500
140647
|
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
140501
140648
|
client_session_token?: string | undefined;
|
|
140649
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
140650
|
+
name: string | null;
|
|
140502
140651
|
/** Display name of the Access Grant. */
|
|
140503
140652
|
display_name: string;
|
|
140504
140653
|
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
|
@@ -140561,6 +140710,8 @@ interface Routes {
|
|
|
140561
140710
|
access_method_ids: string[];
|
|
140562
140711
|
/** Client Session Token. Only returned if the Access Grant has a mobile_key access method. */
|
|
140563
140712
|
client_session_token?: string | undefined;
|
|
140713
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
140714
|
+
name: string | null;
|
|
140564
140715
|
/** Display name of the Access Grant. */
|
|
140565
140716
|
display_name: string;
|
|
140566
140717
|
/** Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. */
|
package/dist/index.cjs
CHANGED
|
@@ -7146,6 +7146,11 @@ var openapi_default = {
|
|
|
7146
7146
|
type: "array",
|
|
7147
7147
|
"x-deprecated": "Use `space_ids`."
|
|
7148
7148
|
},
|
|
7149
|
+
name: {
|
|
7150
|
+
description: "Name of the Access Grant. If not provided, the display name will be computed.",
|
|
7151
|
+
nullable: true,
|
|
7152
|
+
type: "string"
|
|
7153
|
+
},
|
|
7149
7154
|
requested_access_methods: {
|
|
7150
7155
|
description: "Access methods that the user requested for the Access Grant.",
|
|
7151
7156
|
items: {
|
|
@@ -7209,6 +7214,7 @@ var openapi_default = {
|
|
|
7209
7214
|
"space_ids",
|
|
7210
7215
|
"requested_access_methods",
|
|
7211
7216
|
"access_method_ids",
|
|
7217
|
+
"name",
|
|
7212
7218
|
"display_name",
|
|
7213
7219
|
"created_at"
|
|
7214
7220
|
],
|
|
@@ -30344,6 +30350,11 @@ var openapi_default = {
|
|
|
30344
30350
|
type: "array",
|
|
30345
30351
|
"x-deprecated": "Use `space_ids`."
|
|
30346
30352
|
},
|
|
30353
|
+
name: {
|
|
30354
|
+
description: "Name for the access grant.",
|
|
30355
|
+
nullable: true,
|
|
30356
|
+
type: "string"
|
|
30357
|
+
},
|
|
30347
30358
|
requested_access_methods: {
|
|
30348
30359
|
items: {
|
|
30349
30360
|
properties: {
|
|
@@ -30814,6 +30825,11 @@ var openapi_default = {
|
|
|
30814
30825
|
nullable: true,
|
|
30815
30826
|
type: "string"
|
|
30816
30827
|
},
|
|
30828
|
+
name: {
|
|
30829
|
+
description: "Display name for the access grant.",
|
|
30830
|
+
nullable: true,
|
|
30831
|
+
type: "string"
|
|
30832
|
+
},
|
|
30817
30833
|
starts_at: {
|
|
30818
30834
|
description: "Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30819
30835
|
format: "date-time",
|
|
@@ -30876,6 +30892,11 @@ var openapi_default = {
|
|
|
30876
30892
|
nullable: true,
|
|
30877
30893
|
type: "string"
|
|
30878
30894
|
},
|
|
30895
|
+
name: {
|
|
30896
|
+
description: "Display name for the access grant.",
|
|
30897
|
+
nullable: true,
|
|
30898
|
+
type: "string"
|
|
30899
|
+
},
|
|
30879
30900
|
starts_at: {
|
|
30880
30901
|
description: "Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30881
30902
|
format: "date-time",
|
|
@@ -34769,7 +34790,8 @@ var openapi_default = {
|
|
|
34769
34790
|
{ api_key: [] },
|
|
34770
34791
|
{ client_session: [] },
|
|
34771
34792
|
{ pat_with_workspace: [] },
|
|
34772
|
-
{ console_session_with_workspace: [] }
|
|
34793
|
+
{ console_session_with_workspace: [] },
|
|
34794
|
+
{ client_session_with_customer: [] }
|
|
34773
34795
|
],
|
|
34774
34796
|
summary: "/acs/entrances/list",
|
|
34775
34797
|
tags: ["/acs"],
|
|
@@ -34866,7 +34888,8 @@ var openapi_default = {
|
|
|
34866
34888
|
{ api_key: [] },
|
|
34867
34889
|
{ client_session: [] },
|
|
34868
34890
|
{ pat_with_workspace: [] },
|
|
34869
|
-
{ console_session_with_workspace: [] }
|
|
34891
|
+
{ console_session_with_workspace: [] },
|
|
34892
|
+
{ client_session_with_customer: [] }
|
|
34870
34893
|
],
|
|
34871
34894
|
summary: "/acs/entrances/list",
|
|
34872
34895
|
tags: ["/acs"],
|
|
@@ -49402,7 +49425,8 @@ var openapi_default = {
|
|
|
49402
49425
|
security: [
|
|
49403
49426
|
{ pat_with_workspace: [] },
|
|
49404
49427
|
{ console_session_with_workspace: [] },
|
|
49405
|
-
{ api_key: [] }
|
|
49428
|
+
{ api_key: [] },
|
|
49429
|
+
{ client_session_with_customer: [] }
|
|
49406
49430
|
],
|
|
49407
49431
|
summary: "/spaces/remove_acs_entrances",
|
|
49408
49432
|
tags: [],
|
|
@@ -49456,7 +49480,8 @@ var openapi_default = {
|
|
|
49456
49480
|
security: [
|
|
49457
49481
|
{ pat_with_workspace: [] },
|
|
49458
49482
|
{ console_session_with_workspace: [] },
|
|
49459
|
-
{ api_key: [] }
|
|
49483
|
+
{ api_key: [] },
|
|
49484
|
+
{ client_session_with_customer: [] }
|
|
49460
49485
|
],
|
|
49461
49486
|
summary: "/spaces/remove_acs_entrances",
|
|
49462
49487
|
tags: [],
|
|
@@ -49512,7 +49537,8 @@ var openapi_default = {
|
|
|
49512
49537
|
security: [
|
|
49513
49538
|
{ pat_with_workspace: [] },
|
|
49514
49539
|
{ console_session_with_workspace: [] },
|
|
49515
|
-
{ api_key: [] }
|
|
49540
|
+
{ api_key: [] },
|
|
49541
|
+
{ client_session_with_customer: [] }
|
|
49516
49542
|
],
|
|
49517
49543
|
summary: "/spaces/remove_devices",
|
|
49518
49544
|
tags: [],
|
|
@@ -49566,7 +49592,8 @@ var openapi_default = {
|
|
|
49566
49592
|
security: [
|
|
49567
49593
|
{ pat_with_workspace: [] },
|
|
49568
49594
|
{ console_session_with_workspace: [] },
|
|
49569
|
-
{ api_key: [] }
|
|
49595
|
+
{ api_key: [] },
|
|
49596
|
+
{ client_session_with_customer: [] }
|
|
49570
49597
|
],
|
|
49571
49598
|
summary: "/spaces/remove_devices",
|
|
49572
49599
|
tags: [],
|
|
@@ -49586,14 +49613,27 @@ var openapi_default = {
|
|
|
49586
49613
|
"application/json": {
|
|
49587
49614
|
schema: {
|
|
49588
49615
|
properties: {
|
|
49616
|
+
acs_entrance_ids: {
|
|
49617
|
+
description: "IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances.",
|
|
49618
|
+
items: { format: "uuid", type: "string" },
|
|
49619
|
+
type: "array"
|
|
49620
|
+
},
|
|
49621
|
+
device_ids: {
|
|
49622
|
+
description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
|
|
49623
|
+
items: { format: "uuid", type: "string" },
|
|
49624
|
+
type: "array"
|
|
49625
|
+
},
|
|
49589
49626
|
name: { description: "Name of the space.", type: "string" },
|
|
49590
49627
|
space_id: {
|
|
49591
49628
|
description: "ID of the space that you want to update.",
|
|
49592
49629
|
format: "uuid",
|
|
49593
49630
|
type: "string"
|
|
49631
|
+
},
|
|
49632
|
+
space_key: {
|
|
49633
|
+
description: "Unique key of the space that you want to update.",
|
|
49634
|
+
type: "string"
|
|
49594
49635
|
}
|
|
49595
49636
|
},
|
|
49596
|
-
required: ["space_id"],
|
|
49597
49637
|
type: "object"
|
|
49598
49638
|
}
|
|
49599
49639
|
}
|
|
@@ -49621,7 +49661,8 @@ var openapi_default = {
|
|
|
49621
49661
|
security: [
|
|
49622
49662
|
{ pat_with_workspace: [] },
|
|
49623
49663
|
{ console_session_with_workspace: [] },
|
|
49624
|
-
{ api_key: [] }
|
|
49664
|
+
{ api_key: [] },
|
|
49665
|
+
{ client_session_with_customer: [] }
|
|
49625
49666
|
],
|
|
49626
49667
|
summary: "/spaces/update",
|
|
49627
49668
|
tags: [],
|
|
@@ -49640,14 +49681,27 @@ var openapi_default = {
|
|
|
49640
49681
|
"application/json": {
|
|
49641
49682
|
schema: {
|
|
49642
49683
|
properties: {
|
|
49684
|
+
acs_entrance_ids: {
|
|
49685
|
+
description: "IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances.",
|
|
49686
|
+
items: { format: "uuid", type: "string" },
|
|
49687
|
+
type: "array"
|
|
49688
|
+
},
|
|
49689
|
+
device_ids: {
|
|
49690
|
+
description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
|
|
49691
|
+
items: { format: "uuid", type: "string" },
|
|
49692
|
+
type: "array"
|
|
49693
|
+
},
|
|
49643
49694
|
name: { description: "Name of the space.", type: "string" },
|
|
49644
49695
|
space_id: {
|
|
49645
49696
|
description: "ID of the space that you want to update.",
|
|
49646
49697
|
format: "uuid",
|
|
49647
49698
|
type: "string"
|
|
49699
|
+
},
|
|
49700
|
+
space_key: {
|
|
49701
|
+
description: "Unique key of the space that you want to update.",
|
|
49702
|
+
type: "string"
|
|
49648
49703
|
}
|
|
49649
49704
|
},
|
|
49650
|
-
required: ["space_id"],
|
|
49651
49705
|
type: "object"
|
|
49652
49706
|
}
|
|
49653
49707
|
}
|
|
@@ -49675,7 +49729,8 @@ var openapi_default = {
|
|
|
49675
49729
|
security: [
|
|
49676
49730
|
{ pat_with_workspace: [] },
|
|
49677
49731
|
{ console_session_with_workspace: [] },
|
|
49678
|
-
{ api_key: [] }
|
|
49732
|
+
{ api_key: [] },
|
|
49733
|
+
{ client_session_with_customer: [] }
|
|
49679
49734
|
],
|
|
49680
49735
|
summary: "/spaces/update",
|
|
49681
49736
|
tags: [],
|