@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1 0.0.20240104 → 0.0.20240110
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/index.d.ts +10 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://prod-tt-sasportal.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240110
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -83,7 +83,7 @@ declare namespace gapi.client {
|
|
|
83
83
|
deviceMetadata?: SasPortalDeviceMetadata;
|
|
84
84
|
/** Device display name. */
|
|
85
85
|
displayName?: string;
|
|
86
|
-
/** The FCC identifier of the device. */
|
|
86
|
+
/** The FCC identifier of the device. Refer to https://www.fcc.gov/oet/ea/fccid for FccID format. */
|
|
87
87
|
fccId?: string;
|
|
88
88
|
/** Only ranges that are within the allowlists are available for new grants. */
|
|
89
89
|
grantRangeAllowlists?: SasPortalFrequencyRange[];
|
|
@@ -241,8 +241,8 @@ declare namespace gapi.client {
|
|
|
241
241
|
nextPageToken?: string;
|
|
242
242
|
}
|
|
243
243
|
interface SasPortalListLegacyOrganizationsResponse {
|
|
244
|
-
/** Optional.
|
|
245
|
-
|
|
244
|
+
/** Optional. Legacy SAS organizations. */
|
|
245
|
+
organizations?: SasPortalOrganization[];
|
|
246
246
|
}
|
|
247
247
|
interface SasPortalListNodesResponse {
|
|
248
248
|
/** A pagination token returned from a previous call to ListNodes that indicates from where listing should continue. If the field is missing or empty, it means there is no more nodes. */
|
|
@@ -306,6 +306,12 @@ declare namespace gapi.client {
|
|
|
306
306
|
/** The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. */
|
|
307
307
|
response?: {[P in string]: any};
|
|
308
308
|
}
|
|
309
|
+
interface SasPortalOrganization {
|
|
310
|
+
/** Name of organization */
|
|
311
|
+
displayName?: string;
|
|
312
|
+
/** Id of organization */
|
|
313
|
+
id?: string;
|
|
314
|
+
}
|
|
309
315
|
interface SasPortalPolicy {
|
|
310
316
|
/** List of assignments */
|
|
311
317
|
assignments?: SasPortalAssignment[];
|