@maxim_mazurok/gapi.client.prod_tt_sasportal-v1alpha1 0.0.20240118 → 0.0.20240123
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 +1 -30
- package/package.json +1 -1
- package/readme.md +0 -5
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: 20240123
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -40,10 +40,6 @@ declare namespace gapi.client {
|
|
|
40
40
|
/** The channel score, normalized to be in the range [0,100]. */
|
|
41
41
|
score?: number;
|
|
42
42
|
}
|
|
43
|
-
interface SasPortalCheckHasProvisionedDeploymentResponse {
|
|
44
|
-
/** Whether a SAS deployment for the authentication context exists. */
|
|
45
|
-
hasProvisionedDeployment?: boolean;
|
|
46
|
-
}
|
|
47
43
|
interface SasPortalCreateSignedDeviceRequest {
|
|
48
44
|
/** Required. JSON Web Token signed using a CPI private key. Payload must be the JSON encoding of the device. The user_id field must be set. */
|
|
49
45
|
encodedDevice?: string;
|
|
@@ -1859,31 +1855,6 @@ declare namespace gapi.client {
|
|
|
1859
1855
|
nodes: NodesResource;
|
|
1860
1856
|
}
|
|
1861
1857
|
interface CustomersResource {
|
|
1862
|
-
/** Checks whether a SAS deployment for the authentication context exists. */
|
|
1863
|
-
checkHasProvisionedDeployment(request?: {
|
|
1864
|
-
/** V1 error format. */
|
|
1865
|
-
'$.xgafv'?: string;
|
|
1866
|
-
/** OAuth access token. */
|
|
1867
|
-
access_token?: string;
|
|
1868
|
-
/** Data format for response. */
|
|
1869
|
-
alt?: string;
|
|
1870
|
-
/** JSONP */
|
|
1871
|
-
callback?: string;
|
|
1872
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
1873
|
-
fields?: string;
|
|
1874
|
-
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1875
|
-
key?: string;
|
|
1876
|
-
/** OAuth 2.0 token for the current user. */
|
|
1877
|
-
oauth_token?: string;
|
|
1878
|
-
/** Returns response with indentations and line breaks. */
|
|
1879
|
-
prettyPrint?: boolean;
|
|
1880
|
-
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1881
|
-
quotaUser?: string;
|
|
1882
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1883
|
-
upload_protocol?: string;
|
|
1884
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1885
|
-
uploadType?: string;
|
|
1886
|
-
}): Request<SasPortalCheckHasProvisionedDeploymentResponse>;
|
|
1887
1858
|
/** Returns a requested customer. */
|
|
1888
1859
|
get(request?: {
|
|
1889
1860
|
/** V1 error format. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -71,11 +71,6 @@ gapi.auth.authorize(
|
|
|
71
71
|
After that you can use SAS Portal API (Testing) resources: <!-- TODO: make this work for multiple namespaces -->
|
|
72
72
|
|
|
73
73
|
```typescript
|
|
74
|
-
/*
|
|
75
|
-
Checks whether a SAS deployment for the authentication context exists.
|
|
76
|
-
*/
|
|
77
|
-
await gapi.client.prod_tt_sasportal.customers.checkHasProvisionedDeployment({});
|
|
78
|
-
|
|
79
74
|
/*
|
|
80
75
|
Returns a requested customer.
|
|
81
76
|
*/
|