@maxim_mazurok/gapi.client.testing-v1 0.0.20230523 → 0.0.20230530
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 +7 -1
- package/package.json +1 -1
- package/tests.ts +5 -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://testing.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230530
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -635,6 +635,9 @@ declare namespace gapi.client {
|
|
|
635
635
|
configurations?:
|
|
636
636
|
NetworkConfiguration[];
|
|
637
637
|
}
|
|
638
|
+
// tslint:disable-next-line:no-empty-interface
|
|
639
|
+
interface NoActivityIntent {
|
|
640
|
+
}
|
|
638
641
|
interface ObbFile {
|
|
639
642
|
/** Required. Opaque Binary Blob (OBB) file(s) to install on the device. */
|
|
640
643
|
obb?:
|
|
@@ -733,6 +736,9 @@ declare namespace gapi.client {
|
|
|
733
736
|
/** An intent that starts the main launcher activity. */
|
|
734
737
|
launcherActivity?:
|
|
735
738
|
any;
|
|
739
|
+
/** Skips the starting activity */
|
|
740
|
+
noActivity?:
|
|
741
|
+
any;
|
|
736
742
|
/** An intent that starts an activity with specific details. */
|
|
737
743
|
startActivity?:
|
|
738
744
|
StartActivityIntent;
|
package/package.json
CHANGED
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:
|
|
6
|
+
// Revision: 20230530
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -223,6 +223,8 @@ gapi.load('client', async () => {
|
|
|
223
223
|
{
|
|
224
224
|
launcherActivity: {
|
|
225
225
|
},
|
|
226
|
+
noActivity: {
|
|
227
|
+
},
|
|
226
228
|
startActivity: {
|
|
227
229
|
action: "Test string",
|
|
228
230
|
categories: [
|
|
@@ -421,6 +423,8 @@ gapi.load('client', async () => {
|
|
|
421
423
|
{
|
|
422
424
|
launcherActivity: {
|
|
423
425
|
},
|
|
426
|
+
noActivity: {
|
|
427
|
+
},
|
|
424
428
|
startActivity: {
|
|
425
429
|
action: "Test string",
|
|
426
430
|
categories: [
|