@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1 0.0.20221014 → 0.0.20221221

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.
Files changed (3) hide show
  1. package/index.d.ts +22 -12
  2. package/package.json +1 -1
  3. package/tests.ts +49 -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: 20221014
12
+ // Revision: 20221221
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -34,7 +34,7 @@ declare namespace gapi.client {
34
34
  interface SasPortalChannelWithScore {
35
35
  /** The frequency range of the channel. */
36
36
  frequencyRange?: SasPortalFrequencyRange;
37
- /** The channel score, normalized to be in [0,100]. */
37
+ /** The channel score, normalized to be in the range [0,100]. */
38
38
  score?: number;
39
39
  }
40
40
  interface SasPortalCreateSignedDeviceRequest {
@@ -54,7 +54,7 @@ declare namespace gapi.client {
54
54
  interface SasPortalDeployment {
55
55
  /** The deployment's display name. */
56
56
  displayName?: string;
57
- /** Output only. The FRNs copied from its direct parent. */
57
+ /** Output only. The FCC Registration Numbers (FRNs) copied from its direct parent. */
58
58
  frns?: string[];
59
59
  /** Output only. Resource name. */
60
60
  name?: string;
@@ -72,7 +72,7 @@ declare namespace gapi.client {
72
72
  displayName?: string;
73
73
  /** The FCC identifier of the device. */
74
74
  fccId?: string;
75
- /** Only ranges within the allowlists are available for new grants. */
75
+ /** Only ranges that are within the allowlists are available for new grants. */
76
76
  grantRangeAllowlists?: SasPortalFrequencyRange[];
77
77
  /** Output only. Grants held by the device. */
78
78
  grants?: SasPortalDeviceGrant[];
@@ -137,13 +137,19 @@ declare namespace gapi.client {
137
137
  suspensionReason?: string[];
138
138
  }
139
139
  interface SasPortalDeviceMetadata {
140
- /** If populated, the Antenna Model Pattern to use. Format is: RecordCreatorId:PatternId */
140
+ /** If populated, the Antenna Model Pattern to use. Format is: `RecordCreatorId:PatternId` */
141
141
  antennaModel?: string;
142
- /** CCG. A group of CBSDs in the same ICG requesting a common primary channel assignment. See CBRSA-TS-2001 V3.0.0 for more details. */
142
+ /**
143
+ * Common Channel Group (CCG). A group of CBSDs in the same ICG requesting a common primary channel assignment. For more details, see [CBRSA-TS-2001
144
+ * V3.0.0](https://ongoalliance.org/wp-content/uploads/2020/02/CBRSA-TS-2001-V3.0.0_Approved-for-publication.pdf).
145
+ */
143
146
  commonChannelGroup?: string;
144
- /** ICG. A group of CBSDs that manage their own interference with the group. See CBRSA-TS-2001 V3.0.0 for more details. */
147
+ /**
148
+ * Interference Coordination Group (ICG). A group of CBSDs that manage their own interference with the group. For more details, see [CBRSA-TS-2001
149
+ * V3.0.0](https://ongoalliance.org/wp-content/uploads/2020/02/CBRSA-TS-2001-V3.0.0_Approved-for-publication.pdf).
150
+ */
145
151
  interferenceCoordinationGroup?: string;
146
- /** Output only. Whether a CPI has validated to have coordinated with the National Quiet Zone office. */
152
+ /** Output only. Set to `true` if a CPI has validated that they have coordinated with the National Quiet Zone office. */
147
153
  nrqzValidated?: boolean;
148
154
  /** Output only. National Radio Quiet Zone validation info. */
149
155
  nrqzValidation?: SasPortalNrqzValidation;
@@ -204,6 +210,8 @@ declare namespace gapi.client {
204
210
  antennaDowntilt?: number;
205
211
  /** Peak antenna gain in dBi. This parameter is an integer with a value between -127 and +128 (dBi) inclusive. */
206
212
  antennaGain?: number;
213
+ /** As above, but as a DoubleValue. */
214
+ antennaGainNewField?: number;
207
215
  /** If an external antenna is used, the antenna model is optionally provided in this field. The string has a maximum length of 128 octets. */
208
216
  antennaModel?: string;
209
217
  /** If present, this parameter specifies whether the CBSD is a CPE-CBSD or not. */
@@ -213,6 +221,8 @@ declare namespace gapi.client {
213
221
  * maximum allowable EIRP in units of dBm/10MHz for device category.
214
222
  */
215
223
  eirpCapability?: number;
224
+ /** As above, but as a DoubleValue. */
225
+ eirpCapabilityNewField?: number;
216
226
  /**
217
227
  * Device antenna height in meters. When the `heightType` parameter value is "AGL", the antenna height should be given relative to ground level. When the `heightType` parameter value
218
228
  * is "AMSL", it is given with respect to WGS84 datum.
@@ -297,13 +307,13 @@ declare namespace gapi.client {
297
307
  sasUserIds?: string[];
298
308
  }
299
309
  interface SasPortalNrqzValidation {
300
- /** Validation case id. */
310
+ /** Validation case ID. */
301
311
  caseId?: string;
302
312
  /** CPI who signed the validation. */
303
313
  cpiId?: string;
304
- /** Device latitude associated with the validation. */
314
+ /** Device latitude that's associated with the validation. */
305
315
  latitude?: number;
306
- /** Device longitude associated with the validation. */
316
+ /** Device longitude that's associated with the validation. */
307
317
  longitude?: number;
308
318
  /** State of the NRQZ validation info. */
309
319
  state?: string;
@@ -342,7 +352,7 @@ declare namespace gapi.client {
342
352
  etag?: string;
343
353
  }
344
354
  interface SasPortalSetPolicyRequest {
345
- /** Optional. Set the field as true when we would like to disable the onboarding notification. */
355
+ /** Optional. Set the field as `true` to disable the onboarding notification. */
346
356
  disableNotification?: boolean;
347
357
  /** Required. The policy to be applied to the `resource`. */
348
358
  policy?: SasPortalPolicy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1",
3
- "version": "0.0.20221014",
3
+ "version": "0.0.20221221",
4
4
  "description": "TypeScript typings for SAS Portal API (Testing) v1alpha1",
5
5
  "license": "MIT",
6
6
  "author": {
package/tests.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
4
4
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
5
5
 
6
- // Revision: 20221014
6
+ // Revision: 20221221
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -113,9 +113,11 @@ gapi.load('client', async () => {
113
113
  antennaBeamwidth: 42,
114
114
  antennaDowntilt: 42,
115
115
  antennaGain: 42,
116
+ antennaGainNewField: 42,
116
117
  antennaModel: "Test string",
117
118
  cpeCbsdIndication: true,
118
119
  eirpCapability: 42,
120
+ eirpCapabilityNewField: 42,
119
121
  height: 42,
120
122
  heightType: "Test string",
121
123
  horizontalAccuracy: 42,
@@ -208,9 +210,11 @@ gapi.load('client', async () => {
208
210
  antennaBeamwidth: 42,
209
211
  antennaDowntilt: 42,
210
212
  antennaGain: 42,
213
+ antennaGainNewField: 42,
211
214
  antennaModel: "Test string",
212
215
  cpeCbsdIndication: true,
213
216
  eirpCapability: 42,
217
+ eirpCapabilityNewField: 42,
214
218
  height: 42,
215
219
  heightType: "Test string",
216
220
  horizontalAccuracy: 42,
@@ -267,9 +271,11 @@ gapi.load('client', async () => {
267
271
  antennaBeamwidth: 42,
268
272
  antennaDowntilt: 42,
269
273
  antennaGain: 42,
274
+ antennaGainNewField: 42,
270
275
  antennaModel: "Test string",
271
276
  cpeCbsdIndication: true,
272
277
  eirpCapability: 42,
278
+ eirpCapabilityNewField: 42,
273
279
  height: 42,
274
280
  heightType: "Test string",
275
281
  horizontalAccuracy: 42,
@@ -362,9 +368,11 @@ gapi.load('client', async () => {
362
368
  antennaBeamwidth: 42,
363
369
  antennaDowntilt: 42,
364
370
  antennaGain: 42,
371
+ antennaGainNewField: 42,
365
372
  antennaModel: "Test string",
366
373
  cpeCbsdIndication: true,
367
374
  eirpCapability: 42,
375
+ eirpCapabilityNewField: 42,
368
376
  height: 42,
369
377
  heightType: "Test string",
370
378
  horizontalAccuracy: 42,
@@ -436,9 +444,11 @@ gapi.load('client', async () => {
436
444
  antennaBeamwidth: 42,
437
445
  antennaDowntilt: 42,
438
446
  antennaGain: 42,
447
+ antennaGainNewField: 42,
439
448
  antennaModel: "Test string",
440
449
  cpeCbsdIndication: true,
441
450
  eirpCapability: 42,
451
+ eirpCapabilityNewField: 42,
442
452
  height: 42,
443
453
  heightType: "Test string",
444
454
  horizontalAccuracy: 42,
@@ -531,9 +541,11 @@ gapi.load('client', async () => {
531
541
  antennaBeamwidth: 42,
532
542
  antennaDowntilt: 42,
533
543
  antennaGain: 42,
544
+ antennaGainNewField: 42,
534
545
  antennaModel: "Test string",
535
546
  cpeCbsdIndication: true,
536
547
  eirpCapability: 42,
548
+ eirpCapabilityNewField: 42,
537
549
  height: 42,
538
550
  heightType: "Test string",
539
551
  horizontalAccuracy: 42,
@@ -577,9 +589,11 @@ gapi.load('client', async () => {
577
589
  antennaBeamwidth: 42,
578
590
  antennaDowntilt: 42,
579
591
  antennaGain: 42,
592
+ antennaGainNewField: 42,
580
593
  antennaModel: "Test string",
581
594
  cpeCbsdIndication: true,
582
595
  eirpCapability: 42,
596
+ eirpCapabilityNewField: 42,
583
597
  height: 42,
584
598
  heightType: "Test string",
585
599
  horizontalAccuracy: 42,
@@ -672,9 +686,11 @@ gapi.load('client', async () => {
672
686
  antennaBeamwidth: 42,
673
687
  antennaDowntilt: 42,
674
688
  antennaGain: 42,
689
+ antennaGainNewField: 42,
675
690
  antennaModel: "Test string",
676
691
  cpeCbsdIndication: true,
677
692
  eirpCapability: 42,
693
+ eirpCapabilityNewField: 42,
678
694
  height: 42,
679
695
  heightType: "Test string",
680
696
  horizontalAccuracy: 42,
@@ -787,9 +803,11 @@ gapi.load('client', async () => {
787
803
  antennaBeamwidth: 42,
788
804
  antennaDowntilt: 42,
789
805
  antennaGain: 42,
806
+ antennaGainNewField: 42,
790
807
  antennaModel: "Test string",
791
808
  cpeCbsdIndication: true,
792
809
  eirpCapability: 42,
810
+ eirpCapabilityNewField: 42,
793
811
  height: 42,
794
812
  heightType: "Test string",
795
813
  horizontalAccuracy: 42,
@@ -882,9 +900,11 @@ gapi.load('client', async () => {
882
900
  antennaBeamwidth: 42,
883
901
  antennaDowntilt: 42,
884
902
  antennaGain: 42,
903
+ antennaGainNewField: 42,
885
904
  antennaModel: "Test string",
886
905
  cpeCbsdIndication: true,
887
906
  eirpCapability: 42,
907
+ eirpCapabilityNewField: 42,
888
908
  height: 42,
889
909
  heightType: "Test string",
890
910
  horizontalAccuracy: 42,
@@ -977,9 +997,11 @@ gapi.load('client', async () => {
977
997
  antennaBeamwidth: 42,
978
998
  antennaDowntilt: 42,
979
999
  antennaGain: 42,
1000
+ antennaGainNewField: 42,
980
1001
  antennaModel: "Test string",
981
1002
  cpeCbsdIndication: true,
982
1003
  eirpCapability: 42,
1004
+ eirpCapabilityNewField: 42,
983
1005
  height: 42,
984
1006
  heightType: "Test string",
985
1007
  horizontalAccuracy: 42,
@@ -1072,9 +1094,11 @@ gapi.load('client', async () => {
1072
1094
  antennaBeamwidth: 42,
1073
1095
  antennaDowntilt: 42,
1074
1096
  antennaGain: 42,
1097
+ antennaGainNewField: 42,
1075
1098
  antennaModel: "Test string",
1076
1099
  cpeCbsdIndication: true,
1077
1100
  eirpCapability: 42,
1101
+ eirpCapabilityNewField: 42,
1078
1102
  height: 42,
1079
1103
  heightType: "Test string",
1080
1104
  horizontalAccuracy: 42,
@@ -1118,9 +1142,11 @@ gapi.load('client', async () => {
1118
1142
  antennaBeamwidth: 42,
1119
1143
  antennaDowntilt: 42,
1120
1144
  antennaGain: 42,
1145
+ antennaGainNewField: 42,
1121
1146
  antennaModel: "Test string",
1122
1147
  cpeCbsdIndication: true,
1123
1148
  eirpCapability: 42,
1149
+ eirpCapabilityNewField: 42,
1124
1150
  height: 42,
1125
1151
  heightType: "Test string",
1126
1152
  horizontalAccuracy: 42,
@@ -1213,9 +1239,11 @@ gapi.load('client', async () => {
1213
1239
  antennaBeamwidth: 42,
1214
1240
  antennaDowntilt: 42,
1215
1241
  antennaGain: 42,
1242
+ antennaGainNewField: 42,
1216
1243
  antennaModel: "Test string",
1217
1244
  cpeCbsdIndication: true,
1218
1245
  eirpCapability: 42,
1246
+ eirpCapabilityNewField: 42,
1219
1247
  height: 42,
1220
1248
  heightType: "Test string",
1221
1249
  horizontalAccuracy: 42,
@@ -1316,9 +1344,11 @@ gapi.load('client', async () => {
1316
1344
  antennaBeamwidth: 42,
1317
1345
  antennaDowntilt: 42,
1318
1346
  antennaGain: 42,
1347
+ antennaGainNewField: 42,
1319
1348
  antennaModel: "Test string",
1320
1349
  cpeCbsdIndication: true,
1321
1350
  eirpCapability: 42,
1351
+ eirpCapabilityNewField: 42,
1322
1352
  height: 42,
1323
1353
  heightType: "Test string",
1324
1354
  horizontalAccuracy: 42,
@@ -1411,9 +1441,11 @@ gapi.load('client', async () => {
1411
1441
  antennaBeamwidth: 42,
1412
1442
  antennaDowntilt: 42,
1413
1443
  antennaGain: 42,
1444
+ antennaGainNewField: 42,
1414
1445
  antennaModel: "Test string",
1415
1446
  cpeCbsdIndication: true,
1416
1447
  eirpCapability: 42,
1448
+ eirpCapabilityNewField: 42,
1417
1449
  height: 42,
1418
1450
  heightType: "Test string",
1419
1451
  horizontalAccuracy: 42,
@@ -1470,9 +1502,11 @@ gapi.load('client', async () => {
1470
1502
  antennaBeamwidth: 42,
1471
1503
  antennaDowntilt: 42,
1472
1504
  antennaGain: 42,
1505
+ antennaGainNewField: 42,
1473
1506
  antennaModel: "Test string",
1474
1507
  cpeCbsdIndication: true,
1475
1508
  eirpCapability: 42,
1509
+ eirpCapabilityNewField: 42,
1476
1510
  height: 42,
1477
1511
  heightType: "Test string",
1478
1512
  horizontalAccuracy: 42,
@@ -1565,9 +1599,11 @@ gapi.load('client', async () => {
1565
1599
  antennaBeamwidth: 42,
1566
1600
  antennaDowntilt: 42,
1567
1601
  antennaGain: 42,
1602
+ antennaGainNewField: 42,
1568
1603
  antennaModel: "Test string",
1569
1604
  cpeCbsdIndication: true,
1570
1605
  eirpCapability: 42,
1606
+ eirpCapabilityNewField: 42,
1571
1607
  height: 42,
1572
1608
  heightType: "Test string",
1573
1609
  horizontalAccuracy: 42,
@@ -1639,9 +1675,11 @@ gapi.load('client', async () => {
1639
1675
  antennaBeamwidth: 42,
1640
1676
  antennaDowntilt: 42,
1641
1677
  antennaGain: 42,
1678
+ antennaGainNewField: 42,
1642
1679
  antennaModel: "Test string",
1643
1680
  cpeCbsdIndication: true,
1644
1681
  eirpCapability: 42,
1682
+ eirpCapabilityNewField: 42,
1645
1683
  height: 42,
1646
1684
  heightType: "Test string",
1647
1685
  horizontalAccuracy: 42,
@@ -1734,9 +1772,11 @@ gapi.load('client', async () => {
1734
1772
  antennaBeamwidth: 42,
1735
1773
  antennaDowntilt: 42,
1736
1774
  antennaGain: 42,
1775
+ antennaGainNewField: 42,
1737
1776
  antennaModel: "Test string",
1738
1777
  cpeCbsdIndication: true,
1739
1778
  eirpCapability: 42,
1779
+ eirpCapabilityNewField: 42,
1740
1780
  height: 42,
1741
1781
  heightType: "Test string",
1742
1782
  horizontalAccuracy: 42,
@@ -1780,9 +1820,11 @@ gapi.load('client', async () => {
1780
1820
  antennaBeamwidth: 42,
1781
1821
  antennaDowntilt: 42,
1782
1822
  antennaGain: 42,
1823
+ antennaGainNewField: 42,
1783
1824
  antennaModel: "Test string",
1784
1825
  cpeCbsdIndication: true,
1785
1826
  eirpCapability: 42,
1827
+ eirpCapabilityNewField: 42,
1786
1828
  height: 42,
1787
1829
  heightType: "Test string",
1788
1830
  horizontalAccuracy: 42,
@@ -1875,9 +1917,11 @@ gapi.load('client', async () => {
1875
1917
  antennaBeamwidth: 42,
1876
1918
  antennaDowntilt: 42,
1877
1919
  antennaGain: 42,
1920
+ antennaGainNewField: 42,
1878
1921
  antennaModel: "Test string",
1879
1922
  cpeCbsdIndication: true,
1880
1923
  eirpCapability: 42,
1924
+ eirpCapabilityNewField: 42,
1881
1925
  height: 42,
1882
1926
  heightType: "Test string",
1883
1927
  horizontalAccuracy: 42,
@@ -1990,9 +2034,11 @@ gapi.load('client', async () => {
1990
2034
  antennaBeamwidth: 42,
1991
2035
  antennaDowntilt: 42,
1992
2036
  antennaGain: 42,
2037
+ antennaGainNewField: 42,
1993
2038
  antennaModel: "Test string",
1994
2039
  cpeCbsdIndication: true,
1995
2040
  eirpCapability: 42,
2041
+ eirpCapabilityNewField: 42,
1996
2042
  height: 42,
1997
2043
  heightType: "Test string",
1998
2044
  horizontalAccuracy: 42,
@@ -2085,9 +2131,11 @@ gapi.load('client', async () => {
2085
2131
  antennaBeamwidth: 42,
2086
2132
  antennaDowntilt: 42,
2087
2133
  antennaGain: 42,
2134
+ antennaGainNewField: 42,
2088
2135
  antennaModel: "Test string",
2089
2136
  cpeCbsdIndication: true,
2090
2137
  eirpCapability: 42,
2138
+ eirpCapabilityNewField: 42,
2091
2139
  height: 42,
2092
2140
  heightType: "Test string",
2093
2141
  horizontalAccuracy: 42,